hls.html 519 B

123456789101112131415161718192021222324252627
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>M3U8 Player</title>
  5. <script src="hls.min.js"></script>
  6. <style>
  7. body{
  8. background-color:black;
  9. }
  10. #video{
  11. position: absolute;
  12. top: 0px;
  13. right: 0px;
  14. bottom: 0px;
  15. left: 0px;
  16. margin: auto;
  17. max-height: 100%;
  18. max-width: 100%;
  19. }
  20. </style>
  21. </head>
  22. <body>
  23. <video id="video" style="width: 100%; height: 100%;" controls autoplay></video>
  24. <script src="player.js"></script>
  25. </body>
  26. </html>