Now Playing
📺 Caze TV
const video=document.getElementById("video");
function playStream(url,title,el){
document .querySelectorAll(".item") .forEach(x=>x.classList.remove("active"));
el.classList.add("active");
document .getElementById("title") .innerHTML=title;
if(Hls.isSupported()){
if(window.hls){ window.hls.destroy(); }
window.hls=new Hls();
window.hls.loadSource(url);
window.hls.attachMedia(video);
}else{
video.src=url;
}
video.play();
}
playStream( 'https://dfr80qz435crc.cloudfront.net/MNOP/Amagi/Caze/Caze_TV_BR/1080p-vtt/index.m3u8', 'Caze TV', document.querySelector('.item') );
