Advertisement
Guest User

kodi m3u8

a guest
Oct 9th, 2018
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  5. <title>Redirect URL</title>
  6. <!-- -->
  7. <meta http-equiv="Content-Type" content="text/html; charset=utf8"/>
  8. <meta name="apple-mobile-web-app-capable" content="yes"/>
  9. <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
  10. </head>
  11. <body>
  12.  
  13. <script src="https://cdn.jsdelivr.net/npm/hls.js@latest"></script>
  14. <video id="video" width="100%" height="100%" controls></video>
  15. <script>
  16. if(Hls.isSupported())
  17. {
  18. var video = document.getElementById('video');
  19. var hls = new Hls();
  20. hls.loadSource('http://rtm-live.glueapi.io/smil:rtmch001.smil/chunklist_b1064000_sleng.m3u8');
  21. hls.attachMedia(video);
  22. hls.on(Hls.Events.MANIFEST_PARSED,function()
  23. {
  24. video.play();
  25. });
  26. }
  27. else if (video.canPlayType('application/vnd.apple.mpegurl'))
  28. {
  29. video.src = 'http://rtm-live.glueapi.io/smil:rtmch001.smil/chunklist_b1064000_sleng.m3u8';
  30. video.addEventListener('canplay',function()
  31. {
  32. video.play();
  33. });
  34. }
  35. </script>
  36.  
  37. </body>
  38. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement