2019-01-15, 05:57 PM
Hello
I need MyCode to play m3u8 url in my forum . the following code works fine in the html file
I need MyCode to play m3u8 url in my forum . the following code works fine in the html file
<video id="video" width="800" height="600" controls autoplay
class="videoCentered"></video>
<script src="https://cdn.jsdelivr.net/hls.js/latest/hls.js"></script>
<script>
if(Hls.isSupported()) {
var video = document.getElementById('video');
var hls = new Hls({ autoStartLoad:false });
hls.loadSource('https://nn.geo.joj.sk/live/hls/jojplus-360.m3u8');
hls.attachMedia(video);
hls.startLoad(1);
hls.on(Hls.Events.MANIFEST_PARSED,function() {
hls.startLoad(20);
video.play();
});
}
</script>