-
Notifications
You must be signed in to change notification settings - Fork 0
/
m3u8player.html
33 lines (31 loc) · 980 Bytes
/
m3u8player.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html>
<head>
<link href="https://vjs.zencdn.net/8.3.0/video-js.css" rel="stylesheet" />
<meta http-equiv="ngrok-skip-browser-warning" content="true" />
<!-- If you'd like to support IE8 (for Video.js versions prior to v7) -->
<!-- <script src="https://vjs.zencdn.net/ie8/1.1.2/videojs-ie8.min.js"></script> -->
</head>
<body>
<video
id="my-video"
class="video-js"
controls
preload="auto"
width="640"
height="264"
poster=""
data-setup="{}"
>
<source src="http://127.0.0.1:3000/api/hsl/44e4b2a7-a08f-40b1-b774-033cc7b79aef/playlist.m3u8" type="application/x-mpegURL" />
<p class="vjs-no-js">
To view this video please enable JavaScript, and consider upgrading to a
web browser that
<a href="https://videojs.com/html5-video-support/" target="_blank"
>supports HTML5 video</a
>
</p>
</video>
<script src="https://vjs.zencdn.net/8.3.0/video.min.js"></script>
</body>
</html>