- <script src="https://cdn.jsdelivr.net/hls.js/latest/hls.min.js"></script>
- <video id="video"></video>
- <script>
- if(Hls.isSupported()) {
- var video = document.getElementById('video');
- var hls = new Hls();
- hls.loadSource('http://www.streambox.fr/playlists/test_001/stream.m3u8');
- hls.attachMedia(video);
- hls.on(Hls.Events.MANIFEST_PARSED,function() {
- video.play();
- });
- }
- </script>
版权声明:文章图片资源来源于网络,如有侵权,请留言删除!!!
评论