我需要在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网址作为来源? 谢谢。
答案 0 :(得分:1)
您可以传递源对象数组:
video.src([
{src: rtmpURL, type: 'rtmp/mp4'},
{src: httpURL, type: 'video/mp4'}
]);