fix: only autoplay videos if visible

This commit is contained in:
Micknugget 2024-07-28 13:06:11 -06:00
parent 3677ca10e2
commit e377f47caf

View file

@ -94,10 +94,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 {