This commit is contained in:
ashley 2024-09-24 19:46:25 +00:00
parent 4a55d5c92c
commit 98f80c3ced

View file

@ -7,6 +7,7 @@ document.addEventListener("DOMContentLoaded", () => {
const qua = new URLSearchParams(window.location.search).get("quality") || ""; const qua = new URLSearchParams(window.location.search).get("quality") || "";
localStorage.setItem(`progress-${new URLSearchParams(window.location.search).get('v')}`, 0); localStorage.setItem(`progress-${new URLSearchParams(window.location.search).get('v')}`, 0);
if (qua !== "medium") { if (qua !== "medium") {
const audio = document.getElementById('aud'); const audio = document.getElementById('aud');
@ -47,14 +48,9 @@ if (qua !== "medium") {
video.play(); video.play();
audio.play(); audio.play();
} }
}, { once: true }); }, {
} once: true
}; });
const playBothIfBuffered = () => {
if (isVideoBuffered() && checkAudioBuffer()) {
video.play();
audio.play();
} }
}; };
@ -78,17 +74,22 @@ if (qua !== "medium") {
video.on('waiting', () => { video.on('waiting', () => {
video.pause(); video.pause();
audio.pause(); audio.pause();
// Add event listener to resume when buffering is done
video.on('canplaythrough', playBothIfBuffered);
}); });
video.on('canplaythrough', playBothIfBuffered); video.on('canplaythrough', () => {
if (!video.paused()) {
video.play();
audio.play();
}
});
video.on('seeking', handleSeek); video.on('seeking', handleSeek);
video.on('seeked', () => { video.on('seeked', () => {
playBothIfBuffered(); if (isVideoBuffered()) {
video.play();
}
audio.play(); // Ensure audio is playing after seek
}); });
video.on('volumechange', syncVolume); video.on('volumechange', syncVolume);
@ -104,7 +105,6 @@ if (qua !== "medium") {
video.pause(); video.pause();
audio.pause(); audio.pause();
}); });
document.addEventListener('fullscreenchange', () => { document.addEventListener('fullscreenchange', () => {
if (!document.fullscreenElement) { if (!document.fullscreenElement) {
video.pause(); video.pause();
@ -112,7 +112,7 @@ if (qua !== "medium") {
} }
}); });
} }
});
window.pokePlayer = { window.pokePlayer = {
ver:`16-vjs-${videojs.VERSION}`, ver:`16-vjs-${videojs.VERSION}`,