-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvideojs.html
24 lines (21 loc) · 929 Bytes
/
videojs.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
<!DOCTYPE html>
<html>
<head>
<link href="http://vjs.zencdn.net/5.11.9/video-js.css" rel="stylesheet">
<!-- If you'd like to support IE8 -->
<script src="http://vjs.zencdn.net/ie8/1.1.2/videojs-ie8.min.js"></script>
</head>
<body>
<video id="my-video" class="video-js" controls preload="auto" width="640" height="264"
poster="MY_VIDEO_POSTER.jpg" data-setup="{}">
<source src="http://jell.yfish.us/media/jellyfish-3-mbps-hd-h264.mkv" type='video/x-matroska; codecs="theora, vorbis"'>
<!--<source src="MY_VIDEO.webm" type='video/webm'>
<source src="MY_VIDEO.mp4" type='video/mp4'>-->
<p class="vjs-no-js">
To view this video please enable JavaScript, and consider upgrading to a web browser that
<a href="http://videojs.com/html5-video-support/" target="_blank">supports HTML5 video</a>
</p>
</video>
<script src="http://vjs.zencdn.net/5.11.9/video.js"></script>
</body>
</html>