diff --git a/static/playHLSVideo.js b/static/playHLSVideo.js index 01f6809..8142c5c 100644 --- a/static/playHLSVideo.js +++ b/static/playHLSVideo.js @@ -109,10 +109,21 @@ videoElement.parentNode.appendChild(qualitySelector); } + // IntersectionObserver to autoplay/pause video based on visibility + var autoplayObserver = new IntersectionObserver(function(entries) { + entries.forEach(function(entry) { + if (entry.isIntersecting) { + newVideo.play(); + } else { + newVideo.pause(); + } + }); + }, { threshold: 0.5 }); // Adjust the threshold as needed + newVideo.addEventListener('play', initializeHls); if (autoplay) { - newVideo.play(); + autoplayObserver.observe(newVideo); } }); } else {