mirror of
https://codeberg.org/ashley/poke
synced 2025-04-06 09:38:00 +00:00
gwa gwa
This commit is contained in:
parent
8dfaf532d8
commit
a617d8e887
@ -679,6 +679,8 @@ background-color: #0000;
|
||||
audio.pause();
|
||||
});
|
||||
|
||||
|
||||
|
||||
video.on('seeking', handleSeek);
|
||||
|
||||
video.on('seeked', () => {
|
||||
@ -697,21 +699,8 @@ background-color: #0000;
|
||||
audio.pause();
|
||||
}
|
||||
});
|
||||
|
||||
// Initial synchronization
|
||||
const syncAtStart = () => {
|
||||
if (video.readyState() >= 3 && audio.readyState >= 3) { // Check if both video and audio are ready
|
||||
audio.currentTime = video.currentTime();
|
||||
video.play();
|
||||
audio.play();
|
||||
}
|
||||
};
|
||||
|
||||
video.on('canplay', syncAtStart);
|
||||
audio.addEventListener('canplay', syncAtStart);
|
||||
}
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
</script>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user