videoJS播放rtmp流

引入相关文件



html代码

同一个页面创建多个video时,id需要不同,否则报错。

let n = ""+Math.ceil(Math.random()*10)+Math.ceil(Math.random()*10)+Math.ceil(Math.random()*10);
  ``

js代码

设置自动播放

const _id = this.container.getElementsByTagName('video')[0].getAttribute("id");
let myPlayer = this.videojs(_id);
myPlayer.play();

 

以上代码不能直接复制运行,只做参考,需要自行修改。

转载于:https://www.cnblogs.com/lmxHome/p/10856817.html

你可能感兴趣的:(videoJS播放rtmp流)