This commit is contained in:
themicknugget 2025-03-26 09:25:46 +01:00 committed by GitHub
commit 5bd0722b47
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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 {