我有最新的videojs(版本:7.6.6)。
是否可以使进度条可拖动?
当前状态: 当我在进度条上移动鼠标时,第一件事是播放器等待下载几帧,然后移动。
想要: 我可以将鼠标(单击状态 = mouseDown)移动到进度条上我想要更新时间,而不是等待下载帧然后更新时间。
我当前的代码:(videojs 7.6.6 和插件包括) - 我正在使用 HLS
超文本标记语言
<video id="video" class="video-js" width="640" height="360" controls preload="auto">
<source src="list.m3u8" type="application/x-mpegURL">
</video>
Run Code Online (Sandbox Code Playgroud)
JS
var player = videojs('video', {
fluid: false,
inactivityTimeout: 2000,
controlBar: {
'pictureInPictureToggle': true,
volumePanel: {
inline: true
}
},
html5: {
hls: {
overrideNative: true
},
nativeAudioTracks: false,
nativeTextTracks: false,
},
plugins: {
httpSourceSelector:
{
default: 'auto'
}
}
});
player.httpSourceSelector();
player.mobileUi({
fullscreen: {
enterOnRotate: true,
lockOnRotate: true
},
touchControls: …Run Code Online (Sandbox Code Playgroud)