-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmediaplaybacktest.html
54 lines (49 loc) · 1.57 KB
/
mediaplaybacktest.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
49
50
51
52
53
<!DOCTYPE html>
<html>
<head>
<title>Media Focus Test Page</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<section>
<h2>HTML5 Audio</h2>
<h3>Tetris<h3>
<audio id=tetris controls>
<source src="tetris.mp3" type='audio/mp3'>
<source src="tetris.ogg" type='audio/ogg; codecs=vorbis'>
</audio>
<h3>Pacmac</h3>
<audio id=pacman controls>
<source src="pacman_beginning.mp3" type='audio/mp3'>
<source src="pacman_beginning.ogg" type='audio/ogg; codecs=vorbis'>
</audio>
<h3>Tetris (looped)<h3>
<audio id=tetris controls loop>
<source src="tetris_20s.mp3" type='audio/mp3'>
<source src="tetris_20s.ogg" type='audio/ogg; codecs=vorbis'>
</audio>
</section>
<section>
<h2>HTML5 Video</h2>
<video id="html5-video" controls autobuffer width='300' height='200'
poster="BigBuck_360x240.jpg">
<source src="BigBuck.m4v">
<source src="BigBuck.webm" type="video/webm">
<source src="BigBuck.theora.ogv" type="video/ogg">
</video>
</section>
<section>
<h2>Silent video</h2>
<video id="html5-video-silent" controls autobuffer width='300' height='200'>
<source src="https://zippy.gfycat.com/EsteemedDescriptiveAttwatersprairiechicken.webm">
</video>
</section>
<section>
<h2>Youtube (iframes)</h2>
<iframe id="ytplayer" type="text/html" width="640" height="390"
src="http://www.youtube.com/embed/M7lc1UVf-VE?origin=http://github.com"
frameborder="0">
</iframe>
</section>
</body>
</html>