Videojs多个url作为源

时间:2017-08-23 09:25:32

标签: javascript flash video.js

我需要在javascript中实现videjs,我有下面提到的代码。

     var rtmpURL ="rtmp://xyz.xyz";
     var httpURL ="http://xyz.xyz";
     var video = videojs('player', { techOrder: ['flash', 'html5'] });
     video.src({src:srcURL, type: 'rtmp/mp4'});
     video.play();

如何将RTMP和HTTP网址作为来源? 谢谢。

1 个答案:

答案 0 :(得分:1)

您可以传递源对象数组:

video.src([
  {src: rtmpURL, type: 'rtmp/mp4'},
  {src: httpURL, type: 'video/mp4'}
]);