Live CCTV HLS
Live Streaming CCTV
var video = document.getElementById(‘cctv’);
var videoSrc = “https://rstp2hls.metrokota.go.id/hls/7706111029938412651/index.m3u8”; // ganti dengan link streaming CCTV
if (Hls.isSupported()) {
var hls = new Hls();
hls.loadSource(videoSrc);
hls.attachMedia(video);
} else if (video.canPlayType(‘application/vnd.apple.mpegurl’)) {
video.src = videoSrc; // untuk Safari
}