hls实时播放监控视频

监控视频格式是m3u8。

//引入hls.js
<script src="https://cdn.jsdelivr.net/hls.js/latest/hls.min.js"></script>

<video id="video" controls style="width:100%;height:600px;"></video>

 if(Hls.isSupported()) {
      var video = document.getElementById('video');
      var hls = new Hls();
      hls.loadSource('https://tx1.yunchuanglive.com/live/SSAA-066187-ADCBA.m3u8 ');
      hls.attachMedia(video);
	  hls.on(Hls.Events.MANIFEST_PARSED,function() {
            video.play();
      });
 }
发布了258 篇原创文章 · 获赞 21 · 访问量 5万+

猜你喜欢

转载自blog.csdn.net/wsln_123456/article/details/105365576