-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (49 loc) · 1.74 KB
/
index.html
File metadata and controls
57 lines (49 loc) · 1.74 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="zh_CN">
<head>
<meta name="renderer" content="webkit|ie-comp|ie-stand" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta charset="utf-8" />
<meta name="keywords" content="" />
<meta name="description" content="" />
<title>JavaScript HTTP Live Streaming</title>
<!-- <link rel="stylesheet" type="text/css"
href="/assets/css/bootstrap-4.0.0-alpha.5.min.css" />
<link rel="stylesheet" type="text/css"
href="/assets/css/main.css" /> -->
<style type="text/css">
section {
float: left;
margin-left: 12px;
}
</style>
</head>
<body>
<h1>Media Source Extensions API Test</h1>
<section>
<h2>WebM </h2>
<video id="video/webm" controls autoplay width="320" height="240"></video>
<pre id="log"></pre>
</section>
<section>
<h2>MPEG-4 </h2>
<video id="video/mp4" controls autoplay width="320" height="240"></video>
<pre id="log"></pre>
</section>
<section>
<h2>M3U8 </h2>
<video id="video/m3u8" controls autoplay width="320" height="240" >
</video>
<pre id="log"></pre>
</section>
<!-- <section>
<h2>M3U8 </h2>
<video id="video/rtsp" controls autoplay width="320" height="240"
src="rtsp://wowzaec2demo.streamlock.net/vod/mp4:BigBuckBunny_115k.mov" >
</video>
<pre id="log"></pre>
</section> -->
</body>
<script type="text/javascript"
src="./dist/hls.min.js"></script>
</html>