Created
February 2, 2020 14:19
-
-
Save shanlanCoding/374e16d22b4d1eabfaede8a7cd9aff29 to your computer and use it in GitHub Desktop.
PC HLS video // source https://jsbin.com/mulivuz
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>PC HLS video</title> | |
<link href="https://cdn.bootcss.com/video.js/6.0.0-RC.5/alt/video-js-cdn.min.css" rel="stylesheet"> | |
</head> | |
<body> | |
<h1>PC 端播放 HLS(<code>.m3u8</code>) 视频</h1> | |
<p>借助 video.js 和 videojs-contrib-hls</p> | |
<p>由于 videojs-contrib-hls 需要通过 XHR 来获取解析 m3u8 文件, 因此会遭遇跨域问题, 请设置浏览器运行跨域</p> | |
<video id="hls-video" class="video-js vjs-default-skin" | |
playsinline webkit-playsinline | |
autoplay controls preload="auto" | |
x-webkit-airplay="true" x5-video-player-fullscreen="true" x5-video-player-typ="h5"> | |
<!-- 直播的视频源 --> | |
<source src="https://d2zihajmogu5jn.cloudfront.net/bipbop-advanced/bipbop_16x9_variant.m3u8" type="application/x-mpegURL"> | |
<!-- 点播的视频源 --> | |
<!--<source src="http://devstreaming.apple.com/videos/wwdc/2015/413eflf3lrh1tyo/413/hls_vod_mvp.m3u8" type="application/x-mpegURL">--> | |
</video> | |
<script src="https://cdn.bootcss.com/video.js/6.0.0-RC.5/video.js"></script> | |
<!-- PC 端浏览器不支持播放 hls 文件(m3u8), 需要 videojs-contrib-hls 来给我们解码 --> | |
<script src="https://cdn.bootcss.com/videojs-contrib-hls/5.3.3/videojs-contrib-hls.js"></script> | |
<script> | |
// XMLHttpRequest cannot load http://xxx/video.m3u8. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://192.168.198.98:8000' is therefore not allowed access. | |
// 由于 videojs-contrib-hls 需要通过 XHR 来获取解析 m3u8 文件, 因此会遭遇跨域问题, 请设置浏览器运行跨域 | |
var player = videojs('hls-video'); | |
player.play(); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment