.video-container {
max-width: 800px;
margin: 0 auto;
}
video {
width: 100%;
height: auto;
border-radius: 8px;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
var video = document.getElementById(‘video’);
var videoSrc = ‘https://prod-fastly-eu-west-1.video.pscp.tv/Transcoding/v1/hls/puKBBtYm1DV0YjUSkweNQs7M-DtnfRr6oGlqKhuiDJbeOO4YWELWAYCqnSPsTBFTCP5I1yRu9-Q_5Pcr54IpwQ/non_transcode/eu-west-1/periscope-replay-direct-prod-eu-west-1-public/master_dynamic_delta.m3u8?type=live’;
if (Hls.isSupported()) {
var hls = new Hls();
hls.loadSource(videoSrc);
hls.attachMedia(video);
}
// للمتصفحات التي تدعم HLS أصلاً مثل Safari
else if (video.canPlayType(‘application/vnd.apple.mpegurl’)) {
video.src = videoSrc;
}




