播放器加载时,VolumeSlider未正确初始化

时间:2015-10-02 20:46:46

标签: video.js

首次加载视频播放器时,音量滑块设置为0,但音量控件显示为3级(音量打开,因此音量按钮正确,滑块不正确)。触摸音量滑块或音量按钮后,问题就会自行解决 如何让滑块和音量按钮第一次同步?

提前致谢!

1 个答案:

答案 0 :(得分:0)

By default the volume is set to Max. Would you tell me which version of video.js do you use? although check if the following commands are useful for you or not

// get the current volume of the media
var howLoudIsIt = myPlayer.volume();

// set the volume to a new value
myPlayer.volume(0.5);

// 0 is off (muted), 1.0 is all the way up, 0.5 is half way.