js获取video的播放时长

Posted Python研究者

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js获取video的播放时长相关的知识,希望对你有一定的参考价值。

 
 1 setTimeout(function () {
 2               var vid = document.getElementById("videoIntro");
 3               var currentTime=vid.currentTime.toFixed(1);
 4               if(currentTime==1.2){
 5                   //触发
 6                   return false;
 7               }
 8               console.log(currentTime);
 9               getvideoprogress();
10           }, 1000);
11   function getvideoprogress() {
12     setTimeout(function () {
13               var vid = document.getElementById("videoIntro");
14               var currentTime=vid.currentTime.toFixed(1);
15               if(currentTime==1.2){
16                   //触发
17                   return false;
18               }
19               console.log(currentTime);
20               getvideoprogress();
21           }, 1000);
22   }

 

以上是关于js获取video的播放时长的主要内容,如果未能解决你的问题,请参考以下文章

JS的video获取时长,出现问题汇总

video常用功能

js实现视频本地预览,一级获取播放时长

js调用video的播放时长

vue / js使用video获取视频时长

html video记录视频播放的进度