美文网首页
m3u8格式视频

m3u8格式视频

作者: 思念LY | 来源:发表于2020-03-11 15:07 被阅读0次

在线直接看

            <!DOCTYPE html>
            <html lang="zh-CN">
            <head>
                <meta charset="UTF-8">
                <title>前端播放m3u8格式视频</title>
                <!--https://www.bootcdn.cn/video.js/-->
                <link href="https://cdn.bootcss.com/video.js/7.6.5/alt/video-js-cdn.min.css" rel="stylesheet">
                <script src="https://cdn.bootcss.com/video.js/6.6.2/video.js"></script>
                <!--https://www.bootcdn.cn/videojs-contrib-hls/-->
                <script src="https://cdn.bootcss.com/videojs-contrib-hls/5.15.0/videojs-contrib-hls.min.js"></script>
            </head>
            <body>
                <video id="myVideo" class="video-js vjs-default-skin vjs-big-play-centered" controls preload="auto" width="1080" height="708" data-setup='{}'>    
                    <source id="source" src="http://58.222.72.108:7086/live/cameraid/1000005$25/substream/1.m3u8"  type="application/x-mpegURL">
                </video>
            </body>
            <script>    
                // videojs 简单使用  
                var myVideo = videojs('myVideo',{
                    bigPlayButton : true, 
                    textTrackDisplay : false, 
                    posterImage: false,
                    errorDisplay : false,
                })
                myVideo.play() // 视频播放
                myVideo.pause() // 视频暂停
            </script>
            </html>

相关文章

网友评论

      本文标题:m3u8格式视频

      本文链接:https://www.haomeiwen.com/subject/qyscjhtx.html