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 >
2013-05-09 19:23:32 +03:00
videojs.options.flash.swf = "video-js.swf";
2012-03-20 21:02:47 +03:00
< / 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-06-28 23:06:50 +03:00
< track kind = "captions" src = "demo.captions.vtt" srclang = "en" label = "English" > < / track > <!-- Tracks need an ending tag thanks to IE9 -->
2013-11-05 02:35:44 +03:00
< track kind = "subtitles" src = "demo.captions.vtt" srclang = "en" label = "English" > < / track > <!-- Tracks need an ending tag thanks to IE9 -->
2014-05-06 00:52:42 +03:00
< 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 >
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 >