index.html 1.0 KB

1234567891011121314151617181920212223
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>Video.js | HTML5 Video Player</title>
  5. <link href="http://vjs.zencdn.net/7.0/video-js.min.css" rel="stylesheet">
  6. <script src="http://vjs.zencdn.net/7.0/video.min.js"></script>
  7. </head>
  8. <body>
  9. <video id="example_video_1" class="video-js" controls preload="none" width="640" height="264" poster="http://vjs.zencdn.net/v/oceans.png" data-setup="{}">
  10. <source src="http://vjs.zencdn.net/v/oceans.mp4" type="video/mp4">
  11. <source src="http://vjs.zencdn.net/v/oceans.webm" type="video/webm">
  12. <source src="http://vjs.zencdn.net/v/oceans.ogv" type="video/ogg">
  13. <track kind="captions" src="../shared/example-captions.vtt" srclang="en" label="English">
  14. <track kind="subtitles" src="../shared/example-captions.vtt" srclang="en" label="English">
  15. <p class="vjs-no-js">To view this video please enable JavaScript, and consider upgrading to a web browser that <a href="https://videojs.com/html5-video-support/" target="_blank">supports HTML5 video</a></p>
  16. </video>
  17. </body>
  18. </html>