我通过jquery和html播放视频,我需要确定标准视频时间码格式的最后一个值(小时:分钟:秒,帧数)。
我只是在html中使用标准<video>
标记并在jquery中调用它
var video = $('#video');
我也有这个功能,可以在播放时获取视频的当前时间,但不是帧数。
video.on('timeupdate', function() {
var currentPos = video[0].currentTime;
$('.current').text(currentPos);
console.log(currentPos);
}
我如何使用它来获取framecount?