我们怎么能用video.js做到这一点我最初的想法是,我们可以在视频结束时触发播放。
伪代码
for (int i = number_of_times_to_loop, i>=0, i--) {
see if the timer of the video reached the end {
trigger play from start
}
}
答案 0 :(得分:0)
您可以播放已结束事件的视频以进行循环播放。然后,这只是跟踪你已经玩了多少次的问题。
var max = 3,
i = 1;
videojs("home_video").on('ended', function(event) {
if (i < max) {
this.play();
i++;
}
});