我很难看到如何显示视频的当前视频位置并更新计时器。
我希望当前的视频时间能够连续显示在div #time_count中 我的代码是
<link href="//vjs.zencdn.net/4.11/video-js.css" rel="stylesheet">
<script src="//vjs.zencdn.net/4.11/video.js"></script>
<video id="example_video_1" class="video-js vjs-default-skin" controls preload="auto" width="640" height="264"
poster="http://video-js.zencoder.com/oceans-clip.png"
data-setup='{"example_option":true}'>
<source src="http://video-js.zencoder.com/oceans-clip.mp4" type='video/mp4' />
</video>
<div id="time_count"></div>
<script>
(function() {
var myPlayer;
var myTextArea = document.getElementById('time_count');
videojs("example_video_1").ready(function(){
myPlayer = this;
myPlayer.play();
myPlayer.on("progress", onProgress);
});
function onProgress() {
console.log(myPlayer.duration());
myTextArea.innerHTML = myPlayer.currentTime();
return false;
}
})();
</script>
有什么想法吗?
答案 0 :(得分:0)
在我添加评论后,我发现解决方案我应该使用timeupdate,所以它将是myPlayer.on(&#34; timeupdate&#34;,onProgress)