0

我在将 VideoJS 库与旧版本的 Firefox 一起使用来显示视频时遇到了问题。VideoJS在这种情况下提供了使用 Flash 的后备,所以这就是我在下面的代码中所做的(首先techOrder使用,这flash适用于 FF )

var golf_vid;

videojs("golf_video", { techOrder: ['flash','html5'] }).ready(function() {
   golf_vid = this;
   golf_vid.on("ended", replay_video);
   golf_vid.play();
});

function replay_video() {
   golf_vid.play();
}

<video>当我不使用 Flash 时,循环播放视频的功能适用于标签。但是停止并且不使用 Flash 重新启动 - 有没有办法循环播放它?

4

1 回答 1

0

找到了这个问题的答案,就在这里(希望它在未来对其他人有所帮助)。

// play the video in a loop and use the correct tech order based on the browser
videojs("golf_video", { loop: true, techOrder: ['flash','html5'] }).ready(function() {
   golf_vid = this;
   golf_vid.on("ended", replay_video);
   golf_vid.play();
});
于 2013-09-25T12:45:28.970 回答