Author: East Mane
LIVE
Sharq Media Group | Live TV â›¶ 🔇 â›¶ 🔇 â›¶ 🔇 â›¶ 🔇 document.querySelectorAll(“.tile”).forEach((tile,i)=>{ const video=tile.querySelector(“video”); const vol=tile.querySelector(“.volume”); const fs=tile.querySelector(“.full”); video.muted=true; video.autoplay=true; video.playsInline=true; video.controls=false; if(Hls.isSupported()){ const hls=new Hls(); hls.loadSource(streams[i]); hls.attachMedia(video); hls.on(Hls.Events.MANIFEST_PARSED,()=>video.play()); }else{ video.src=streams[i]; video.play(); }…