var player = videojs('my-player', { plugins: { hotkeys: { volumeStep: 0.1, seekStep: 5, enableModifiersForNumbers: false, enableVolumeScroll: false, }, }, controlBar: { volumePanel: {inline: false}, pictureInPictureToggle: false } }); player.mobileUi({ fullscreen: { enterOnRotate: true, exitOnRotate: true, lockOnRotate: true, lockToLandscapeOnEnter: true, disabled: false }, touchControls: { seekSeconds: 15, tapTimeout: 300, disableOnEnd: false, disabled: false, } }); player.volume(0.3); window.onload = () => { };