LIVE TV – Filma me titra shqip
body{
margin:0;
background:#0b0b0b;
font-family:Arial;
color:white;
}
#container{
max-width:1000px;
margin:auto;
padding:10px;
}
#header{
background:red;
padding:12px;
text-align:center;
font-weight:bold;
font-size:18px;
border-radius:8px;
}
#player{
margin-top:10px;
}
iframe{
width:100%;
height:520px;
border:none;
border-radius:10px;
}
#nowPlaying{
margin-top:10px;
padding:10px;
background:#111;
border-radius:8px;
}
#schedule{
margin-top:15px;
background:#111;
padding:10px;
border-radius:8px;
}
.liveDot{
color:red;
font-weight:bold;
}
// 🎬 PLAYLIST (vendos filmat)
let playlist = [
{
title: “Film Aksion”,
url: “VIDMOLY_LINK_1”,
duration: 7200
},
{
title: “Film Dramë”,
url: “VINOVO_LINK_2”,
duration: 6800
},
{
title: “Film Thriller”,
url: “DOOD_LINK_3”,
duration: 7000
}
];
// ⏱️ GJEN KU DUHET TË JETË STREAMI (SIMULIM LIVE)
let startTime = new Date().getTime() / 1000;
function getCurrentIndex(){
let total = playlist.reduce((sum,p)=>sum+p.duration,0);
let elapsed = startTime % total;
let acc = 0;
for(let i=0;i<playlist.length;i++){
acc += playlist[i].duration;
if(elapsed {
current = (current + 1) % playlist.length;
playLive();
}, item.duration * 1000);
}
// 📺 PROGRAM LIST
function renderSchedule(){
let list = document.getElementById(“programList”);
list.innerHTML = “”;
playlist.forEach(p=>{
let li = document.createElement(“li”);
li.innerText = p.title;
list.appendChild(li);
});
}
renderSchedule();
playLive();