2
0

live.html 635 B

12345678910111213141516171819202122232425
  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. <video id=example-video width=1280 height=720 class="video-js vjs-default-skin" controls>
  8. <source
  9. src="hls/ispoogedaily/index.m3u8"
  10. type="application/x-mpegURL">
  11. </video>
  12. <script src="video.js"></script>
  13. <script src="videojs-contrib-hls.js"></script>
  14. <script>
  15. var player = videojs('example-video');
  16. player.play();
  17. </script>
  18. </body>
  19. </html>