forked from lopezs/ableplayer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest0.html
More file actions
39 lines (32 loc) · 1.5 KB
/
test0.html
File metadata and controls
39 lines (32 loc) · 1.5 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
<!DOCTYPE html>
<html lang=en>
<head>
<meta charset="UTF-8">
<title>Native HTML5 Media Player</title>
<link rel="stylesheet" href="tests.css" type="text/css">
<style>
:focus {
border: 2px solid #CC0000;
}
</style>
</head>
<body>
<h1>Native HTML5 Media Player (not <em>Able Player</em>)</h1>
<p>This page features HTML5 <audio> and <video> elements, each with multiple source files to ensure cross-browser support. This page was included among the examples for comparison with <em>Able Player</em>; <em>Able Player</em> is not used on this page.</p>
<p>For additional tests see the <a href="index.html#examples">Index of <em>Able Player</em> Examples</a>.</p>
<h2>Audio</h2>
<audio preload="auto" controls>
<source type="audio/ogg" src="../media/smallf.ogg"/>
<source type="audio/mpeg" src="../media/smallf.mp3"/>
</audio>
<h2>Video (with English captions, Spanish subtitles, description, and chapters tracks)</h2>
<video preload="auto" width="480" height="360" poster="../media/wwa.jpg" controls>
<source type="video/webm" src="../media/wwa.webm">
<source type="video/mp4" src="../media/wwa.mp4">
<track kind="captions" src="../media/wwa_captions_en.vtt" srclang="en" label="English" default>
<track kind="subtitles" src="../media/wwa_captions_es.vtt" srclang="es" label="Español">
<track kind="chapters" src="../media/wwa_chapters_en.vtt" label="Chapters">
<track kind="descriptions" src="../media/wwa_description_en.vtt" srclang="en" label="Description - English">
</video>
</body>
</html>