-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·24 lines (23 loc) · 1010 Bytes
/
index.html
File metadata and controls
executable file
·24 lines (23 loc) · 1010 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!doctype>
<html>
<head>
<link href="css/video-js.css" rel="stylesheet" type="text/css">
<link href="css/overlay.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="src/deps/jquery-1.10.2.js"></script>
<script type="text/javascript" src="src/deps/video.js"></script>
<script type="text/javascript" src="src/HTML5VideoOverlay.js"></script>
<script type="text/javascript" src="src/bootstrap.js"></script>
<script>
videojs.options.flash.swf = "swf/video-js.swf";
</script>
</head>
<body>
<video id="container_video" controls class="video-js vjs-default-skin"
width="640" height="264"
data-setup="{}">
<source src="http://video-js.zencoder.com/oceans-clip.mp4" type='video/mp4' />
<source src="http://video-js.zencoder.com/oceans-clip.webm" type='video/webm' />
<source src="http://video-js.zencoder.com/oceans-clip.ogv" type='video/ogg' />
</video>
</body>
</html>