mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-15 04:28:43 +01:00
bwa
This commit is contained in:
parent
4a55d5c92c
commit
98f80c3ced
1 changed files with 93 additions and 93 deletions
|
@ -7,112 +7,112 @@ 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") {
|
|
||||||
const audio = document.getElementById('aud');
|
|
||||||
|
|
||||||
const syncVolume = () => {
|
if (qua !== "medium") {
|
||||||
audio.volume = video.volume();
|
const audio = document.getElementById('aud');
|
||||||
};
|
|
||||||
|
|
||||||
const syncVolumeWithVideo = () => {
|
const syncVolume = () => {
|
||||||
video.volume(audio.volume);
|
audio.volume = video.volume();
|
||||||
};
|
};
|
||||||
|
|
||||||
const checkAudioBuffer = () => {
|
const syncVolumeWithVideo = () => {
|
||||||
const buffered = audio.buffered;
|
video.volume(audio.volume);
|
||||||
const bufferedEnd = buffered.length > 0 ? buffered.end(buffered.length - 1) : 0;
|
};
|
||||||
return audio.currentTime <= bufferedEnd;
|
|
||||||
};
|
|
||||||
|
|
||||||
const isVideoBuffered = () => {
|
const checkAudioBuffer = () => {
|
||||||
// Check if video has enough buffered data
|
const buffered = audio.buffered;
|
||||||
const buffered = video.buffered();
|
const bufferedEnd = buffered.length > 0 ? buffered.end(buffered.length - 1) : 0;
|
||||||
return buffered.length > 0 && buffered.end(buffered.length - 1) >= video.currentTime();
|
return audio.currentTime <= bufferedEnd;
|
||||||
};
|
};
|
||||||
|
|
||||||
const handleSeek = () => {
|
const isVideoBuffered = () => {
|
||||||
// Pause video and audio when seeking
|
// Check if video has enough buffered data
|
||||||
video.pause();
|
const buffered = video.buffered();
|
||||||
audio.pause();
|
return buffered.length > 0 && buffered.end(buffered.length - 1) >= video.currentTime();
|
||||||
|
};
|
||||||
|
|
||||||
// Sync audio with video during seeking
|
const handleSeek = () => {
|
||||||
if (Math.abs(video.currentTime() - audio.currentTime) > 0.3) {
|
// Pause video and audio when seeking
|
||||||
audio.currentTime = video.currentTime();
|
video.pause();
|
||||||
}
|
audio.pause();
|
||||||
|
|
||||||
// Wait for audio to be buffered sufficiently
|
// Sync audio with video during seeking
|
||||||
if (!checkAudioBuffer()) {
|
if (Math.abs(video.currentTime() - audio.currentTime) > 0.3) {
|
||||||
audio.addEventListener('canplay', () => {
|
audio.currentTime = video.currentTime();
|
||||||
if (video.paused && isVideoBuffered()) {
|
}
|
||||||
video.play();
|
|
||||||
audio.play();
|
|
||||||
}
|
|
||||||
}, { once: true });
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
const playBothIfBuffered = () => {
|
// Wait for audio to be buffered sufficiently
|
||||||
if (isVideoBuffered() && checkAudioBuffer()) {
|
if (!checkAudioBuffer()) {
|
||||||
|
audio.addEventListener('canplay', () => {
|
||||||
|
if (video.paused && isVideoBuffered()) {
|
||||||
|
video.play();
|
||||||
|
audio.play();
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
once: true
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
video.on('play', () => {
|
||||||
|
if (Math.abs(video.currentTime() - audio.currentTime) > 0.3) {
|
||||||
|
audio.currentTime = video.currentTime();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isVideoBuffered()) {
|
||||||
|
audio.play();
|
||||||
|
} else {
|
||||||
|
video.pause();
|
||||||
|
audio.pause();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
video.on('pause', () => {
|
||||||
|
audio.pause();
|
||||||
|
});
|
||||||
|
|
||||||
|
video.on('waiting', () => {
|
||||||
|
video.pause();
|
||||||
|
audio.pause();
|
||||||
|
});
|
||||||
|
|
||||||
|
video.on('canplaythrough', () => {
|
||||||
|
if (!video.paused()) {
|
||||||
|
video.play();
|
||||||
|
audio.play();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
video.on('seeking', handleSeek);
|
||||||
|
|
||||||
|
video.on('seeked', () => {
|
||||||
|
if (isVideoBuffered()) {
|
||||||
|
video.play();
|
||||||
|
}
|
||||||
|
audio.play(); // Ensure audio is playing after seek
|
||||||
|
});
|
||||||
|
|
||||||
|
video.on('volumechange', syncVolume);
|
||||||
|
audio.addEventListener('volumechange', syncVolumeWithVideo);
|
||||||
|
|
||||||
|
// Listen for media control events
|
||||||
|
document.addEventListener('play', () => {
|
||||||
video.play();
|
video.play();
|
||||||
audio.play();
|
audio.play();
|
||||||
}
|
});
|
||||||
};
|
|
||||||
|
|
||||||
video.on('play', () => {
|
document.addEventListener('pause', () => {
|
||||||
if (Math.abs(video.currentTime() - audio.currentTime) > 0.3) {
|
|
||||||
audio.currentTime = video.currentTime();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isVideoBuffered()) {
|
|
||||||
audio.play();
|
|
||||||
} else {
|
|
||||||
video.pause();
|
video.pause();
|
||||||
audio.pause();
|
audio.pause();
|
||||||
}
|
});
|
||||||
});
|
document.addEventListener('fullscreenchange', () => {
|
||||||
|
if (!document.fullscreenElement) {
|
||||||
video.on('pause', () => {
|
video.pause();
|
||||||
audio.pause();
|
audio.pause();
|
||||||
});
|
}
|
||||||
|
});
|
||||||
video.on('waiting', () => {
|
}
|
||||||
video.pause();
|
});
|
||||||
audio.pause();
|
|
||||||
|
|
||||||
// Add event listener to resume when buffering is done
|
|
||||||
video.on('canplaythrough', playBothIfBuffered);
|
|
||||||
});
|
|
||||||
|
|
||||||
video.on('canplaythrough', playBothIfBuffered);
|
|
||||||
|
|
||||||
video.on('seeking', handleSeek);
|
|
||||||
|
|
||||||
video.on('seeked', () => {
|
|
||||||
playBothIfBuffered();
|
|
||||||
});
|
|
||||||
|
|
||||||
video.on('volumechange', syncVolume);
|
|
||||||
audio.addEventListener('volumechange', syncVolumeWithVideo);
|
|
||||||
|
|
||||||
// Listen for media control events
|
|
||||||
document.addEventListener('play', () => {
|
|
||||||
video.play();
|
|
||||||
audio.play();
|
|
||||||
});
|
|
||||||
|
|
||||||
document.addEventListener('pause', () => {
|
|
||||||
video.pause();
|
|
||||||
audio.pause();
|
|
||||||
});
|
|
||||||
|
|
||||||
document.addEventListener('fullscreenchange', () => {
|
|
||||||
if (!document.fullscreenElement) {
|
|
||||||
video.pause();
|
|
||||||
audio.pause();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
window.pokePlayer = {
|
window.pokePlayer = {
|
||||||
ver:`16-vjs-${videojs.VERSION}`,
|
ver:`16-vjs-${videojs.VERSION}`,
|
||||||
|
|
Loading…
Reference in a new issue