Fall back to "en" if we don't find matching translations
[mediagoblin.git] / extlib / video-js / demo.html
CommitLineData
560e22e7
SDA
1<!DOCTYPE html>
2<html>
3<head>
4 <title>Video.js | HTML5 Video Player</title>
5
6 <link href="http://vjs.zencdn.net/c/video-js.css" rel="stylesheet" type="text/css">
7
8 <!-- video.js must be in the <head> for older IEs to work. -->
9 <script src="http://vjs.zencdn.net/c/video.js"></script>
10
11</head>
12<body>
13
14 <video id="example_video_1" class="video-js vjs-default-skin" controls preload="none" width="640" height="264"
15 poster="http://video-js.zencoder.com/oceans-clip.png"
16 data-setup="{}">
17 <source src="http://video-js.zencoder.com/oceans-clip.mp4" type='video/mp4' />
18 <source src="http://video-js.zencoder.com/oceans-clip.webm" type='video/webm' />
19 <source src="http://video-js.zencoder.com/oceans-clip.ogv" type='video/ogg' />
20 </video>
21
22</body>
23</html>