Power TV Site Under Maintenance

We will Back Soon…..

<div style="display: flex; justify-content: center; padding: 20px;">
  <video id="video" style="max-width: 800px; width: 100%;" controls autoplay muted></video>
</div>

<script src="https://cdn.jsdelivr.net/npm/hls.js@latest"></script>
<script>
  if (Hls.isSupported()) {
    var video = document.getElementById('video');
    var hls = new Hls();
    hls.loadSource('https://powertvkannada.com/hls/stream.m3u8');
    hls.attachMedia(video);
    hls.on(Hls.Events.MANIFEST_PARSED, function () {
      video.play();
    });
  } else if (video.canPlayType('application/vnd.apple.mpegurl')) {
    video.src = 'https://powertvkannada.com/hls/stream.m3u8';
    video.addEventListener('loadedmetadata', function () {
      video.play();
    });
  }
</script>