mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-17 01:34:43 -05:00
bwa
This commit is contained in:
parent
e4c3aab9ee
commit
5a1555f93e
1 changed files with 36 additions and 12 deletions
|
@ -612,18 +612,25 @@ background-color: #0000;
|
|||
</style>
|
||||
|
||||
<script>
|
||||
document.addEventListener("DOMContentLoaded", () => {
|
||||
document.addEventListener("DOMContentLoaded", () => {
|
||||
const video = videojs('video', {
|
||||
controls: true,
|
||||
autoplay: false,
|
||||
preload: 'auto'
|
||||
});
|
||||
const qua = new URLSearchParams(window.location.search).get("qua") || "";
|
||||
|
||||
if (qua !== "medium") {
|
||||
const audio = document.getElementById('aud');
|
||||
|
||||
localStorage.setItem(`progress-${new URLSearchParams(window.location.search).get('v')}`, 0);
|
||||
|
||||
// Sync audio with video
|
||||
const syncAudioWithVideo = () => {
|
||||
if (Math.abs(video.currentTime() - audio.currentTime) > 0.3) {
|
||||
audio.currentTime = video.currentTime();
|
||||
}
|
||||
};
|
||||
|
||||
// Sync volume between audio and video
|
||||
const syncVolume = () => {
|
||||
audio.volume = video.volume();
|
||||
};
|
||||
|
@ -632,6 +639,24 @@ background-color: #0000;
|
|||
video.volume(audio.volume);
|
||||
};
|
||||
|
||||
const checkAudioBuffer = () => {
|
||||
// Check if audio buffered enough
|
||||
const buffered = audio.buffered;
|
||||
const bufferedEnd = buffered.length > 0 ? buffered.end(buffered.length - 1) : 0;
|
||||
return audio.currentTime <= bufferedEnd;
|
||||
};
|
||||
|
||||
const handleSeek = () => {
|
||||
if (!checkAudioBuffer()) {
|
||||
video.pause();
|
||||
}
|
||||
audio.addEventListener('canplay', () => {
|
||||
if (video.paused) {
|
||||
video.play();
|
||||
}
|
||||
}, { once: true });
|
||||
};
|
||||
|
||||
video.on('play', () => {
|
||||
audio.play();
|
||||
});
|
||||
|
@ -640,28 +665,27 @@ background-color: #0000;
|
|||
audio.pause();
|
||||
});
|
||||
|
||||
video.on('timeupdate', () => {
|
||||
syncAudioWithVideo();
|
||||
});
|
||||
|
||||
|
||||
video.on('seeking', () => {
|
||||
audio.currentTime = video.currentTime();
|
||||
});
|
||||
video.on('seeking', handleSeek);
|
||||
|
||||
video.on('seeked', () => {
|
||||
audio.currentTime = video.currentTime();
|
||||
if (video.paused && checkAudioBuffer()) {
|
||||
video.play();
|
||||
}
|
||||
});
|
||||
|
||||
video.on('volumechange', syncVolume);
|
||||
audio.addEventListener('volumechange', syncVolumeWithVideo);
|
||||
|
||||
document.addEventListener('fullscreenchange', () => {
|
||||
document.addEventListener('fullscreenchange', () => {
|
||||
if (!document.fullscreenElement) {
|
||||
video.pause();
|
||||
}
|
||||
});
|
||||
});
|
||||
</script>
|
||||
}
|
||||
</script>
|
||||
|
||||
<% if(dm) { %>
|
||||
|
||||
|
|
Loading…
Reference in a new issue