-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (42 loc) · 1.46 KB
/
index.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html class="mdl-js">
<header>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>
Media Codec Playground
</title>
</header>
<body>
<h1>
Media Codec Playground
</h1>
<p>Video 1 with additional 'codecs' media type tag</p>
<div class="video-container"></div>
<video controls>
<source src="test-video1.mp4" type='video/mp4; codecs="avc1.4d0001, mp4a.40.2"' />
video not supported
</video>
</div>
<p>Video 1 <b>without</b> additional 'codecs' media type tag</p>
<div class="video-container"></div>
<video controls>
<source src="test-video1.mp4" type='video/mp4' />
video not supported
</video>
</div>
<p>Video 2 with additional 'codecs' media type tag</p>
<div class="video-container"></div>
<video controls>
<source src="test-video2.mp4" type='video/mp4; codecs="avc1.4d0001, mp4a.40.2"' />
video not supported
</video>
</div>
<p>Video 2 <b>without</b> additional 'codecs' media type tag</p>
<div class="video-container"></div>
<video controls>
<source src="test-video2.mp4" type='video/mp4' />
video not supported
</video>
</div>
</body>
</html>