2010-05-18 05:51:17 +03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2012-01-09 23:38:43 +03:00
|
|
|
<title>Video.js | HTML5 Video Player</title>
|
2010-06-03 08:03:03 +03:00
|
|
|
|
2012-03-20 20:28:10 +03:00
|
|
|
<!-- Chang URLs to wherever Video.js files will be hosted -->
|
|
|
|
<link href="video-js.css" rel="stylesheet" type="text/css">
|
2011-10-01 03:28:43 +03:00
|
|
|
<!-- video.js must be in the <head> for older IEs to work. -->
|
2012-03-20 20:28:10 +03:00
|
|
|
<script src="video.js"></script>
|
2012-03-20 21:07:14 +03:00
|
|
|
|
2012-03-20 21:02:47 +03:00
|
|
|
<!-- Unless using the CDN hosted version, update the URL to the Flash SWF -->
|
|
|
|
<script>
|
|
|
|
_V_.options.flash.swf = "video-js.swf";
|
|
|
|
</script>
|
2012-03-20 21:07:14 +03:00
|
|
|
|
2010-05-18 07:25:32 +03:00
|
|
|
|
2010-05-18 05:51:17 +03:00
|
|
|
</head>
|
2010-06-03 08:03:03 +03:00
|
|
|
<body>
|
2010-06-09 11:24:12 +03:00
|
|
|
|
2011-10-01 03:28:43 +03:00
|
|
|
<video id="example_video_1" class="video-js vjs-default-skin" controls preload="none" width="640" height="264"
|
|
|
|
poster="http://video-js.zencoder.com/oceans-clip.png"
|
2012-01-09 23:18:08 +03:00
|
|
|
data-setup="{}">
|
2012-01-02 21:14:51 +03:00
|
|
|
<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' />
|
2012-01-09 23:18:08 +03:00
|
|
|
<source src="http://video-js.zencoder.com/oceans-clip.ogv" type='video/ogg' />
|
2013-01-26 02:22:14 +03:00
|
|
|
<track kind="captions" src="demo.captions.vtt" srclang="en" label="English" />
|
2011-10-01 03:28:43 +03:00
|
|
|
</video>
|
2010-06-09 11:24:12 +03:00
|
|
|
|
2010-05-18 05:51:17 +03:00
|
|
|
</body>
|
2011-02-18 11:06:01 +02:00
|
|
|
</html>
|