Protected content
You've entered a valid password.
'; // replace with your M3U8 URL
if (Hls.isSupported()) {
const hls = new Hls();
hls.loadSource(videoSrc);
hls.attachMedia(video);
hls.on(Hls.Events.MANIFEST_PARSED, function () {
video.play();
});
} else if (video.canPlayType('application/vnd.apple.mpegurl')) {
video.src = videoSrc;
video.addEventListener('loadedmetadata', function () {
video.play();
});
} else {
alert('Your browser does not support HLS playback.');
}
Protected content
You've entered a valid password.
Comments
Post a Comment