4
0
Fork 0

Player: Fix iOS screen timeout in loop mode (#4076)

This commit is contained in:
Samantaz Fox 2023-12-06 18:19:31 +01:00
commit 813dc6de1c
No known key found for this signature in database
GPG Key ID: F42821059186176E
1 changed files with 11 additions and 0 deletions

View File

@ -747,6 +747,17 @@ if (navigator.vendor === 'Apple Computer, Inc.' && video_data.params.listen) {
});
}
// Safari screen timeout on looped video playback fix
if (navigator.vendor === 'Apple Computer, Inc.' && !video_data.params.listen && video_data.params.video_loop) {
player.loop(false);
player.ready(function () {
player.on('ended', function () {
player.currentTime(0);
player.play();
});
});
}
// Watch on Invidious link
if (location.pathname.startsWith('/embed/')) {
const Button = videojs.getComponent('Button');