segmented-video.html 761 B

12345678910111213141516171819202122232425262728
  1. <html>
  2. <head><title>iSpooge</title></head>
  3. <link rel="stylesheet" href="video-js.min.css">
  4. <body>
  5. <p>iSpooge Daily... do you?</p>
  6. <p><strong>HEY welcome - this is a high bandwidth stream.</strong> I've yet to implement a lower rate mobie stream. Please tune in at home :).</p>
  7. <p>Sample of a segmented video file. 2sec max segment. Need to confirm keyframe alignment. ~450KB, should cache OK.</p>
  8. <video id=example-video width=1280 height=720 class="video-js vjs-default-skin" controls>
  9. <source
  10. src="media/tinydc/webserver/out.m3u8"
  11. type="application/x-mpegURL">
  12. </video>
  13. <script src="video.js"></script>
  14. <script src="videojs-contrib-hls.js"></script>
  15. <script>
  16. var player = videojs('example-video');
  17. player.play();
  18. </script>
  19. </body>
  20. </html>