mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-17 05:34:40 -05:00
gwa gwa
This commit is contained in:
parent
8dfaf532d8
commit
a617d8e887
1 changed files with 78 additions and 89 deletions
|
@ -612,107 +612,96 @@ background-color: #0000;
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener("DOMContentLoaded", () => {
|
document.addEventListener("DOMContentLoaded", () => {
|
||||||
const video = videojs('video', {
|
const video = videojs('video', {
|
||||||
controls: true,
|
controls: true,
|
||||||
autoplay: false,
|
autoplay: false,
|
||||||
preload: 'auto'
|
preload: 'auto'
|
||||||
});
|
});
|
||||||
|
|
||||||
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');
|
||||||
|
|
||||||
// Sync volume between audio and video
|
// Sync volume between audio and video
|
||||||
const syncVolume = () => {
|
const syncVolume = () => {
|
||||||
audio.volume = video.volume();
|
audio.volume = video.volume();
|
||||||
};
|
};
|
||||||
|
|
||||||
const syncVolumeWithVideo = () => {
|
const syncVolumeWithVideo = () => {
|
||||||
video.volume(audio.volume);
|
video.volume(audio.volume);
|
||||||
};
|
};
|
||||||
|
|
||||||
const checkAudioBuffer = () => {
|
const checkAudioBuffer = () => {
|
||||||
const buffered = audio.buffered;
|
const buffered = audio.buffered;
|
||||||
const bufferedEnd = buffered.length > 0 ? buffered.end(buffered.length - 1) : 0;
|
const bufferedEnd = buffered.length > 0 ? buffered.end(buffered.length - 1) : 0;
|
||||||
return audio.currentTime <= bufferedEnd;
|
return audio.currentTime <= bufferedEnd;
|
||||||
};
|
};
|
||||||
|
|
||||||
const isVideoBuffered = () => {
|
const isVideoBuffered = () => {
|
||||||
// Check if video has enough buffered data
|
// Check if video has enough buffered data
|
||||||
const buffered = video.buffered();
|
const buffered = video.buffered();
|
||||||
return buffered.length > 0 && buffered.end(buffered.length - 1) >= video.currentTime();
|
return buffered.length > 0 && buffered.end(buffered.length - 1) >= video.currentTime();
|
||||||
};
|
};
|
||||||
|
|
||||||
const handleSeek = () => {
|
const handleSeek = () => {
|
||||||
// Pause video and audio when seeking
|
// Pause video and audio when seeking
|
||||||
video.pause();
|
video.pause();
|
||||||
audio.pause();
|
audio.pause();
|
||||||
|
|
||||||
// Sync audio with video during seeking
|
// Sync audio with video during seeking
|
||||||
if (Math.abs(video.currentTime() - audio.currentTime) > 0.3) {
|
if (Math.abs(video.currentTime() - audio.currentTime) > 0.3) {
|
||||||
audio.currentTime = video.currentTime();
|
audio.currentTime = video.currentTime();
|
||||||
}
|
|
||||||
|
|
||||||
// Wait for audio to be buffered sufficiently
|
|
||||||
if (!checkAudioBuffer()) {
|
|
||||||
audio.addEventListener('canplay', () => {
|
|
||||||
if (video.paused && isVideoBuffered()) {
|
|
||||||
video.play();
|
|
||||||
audio.play();
|
|
||||||
}
|
}
|
||||||
}, { once: true });
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
video.on('play', () => {
|
// Wait for audio to be buffered sufficiently
|
||||||
if (isVideoBuffered()) {
|
if (!checkAudioBuffer()) {
|
||||||
audio.play();
|
audio.addEventListener('canplay', () => {
|
||||||
} else {
|
if (video.paused && isVideoBuffered()) {
|
||||||
video.pause();
|
video.play();
|
||||||
|
audio.play();
|
||||||
|
}
|
||||||
|
}, { once: true });
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
video.on('play', () => {
|
||||||
|
if (isVideoBuffered()) {
|
||||||
|
audio.play();
|
||||||
|
} else {
|
||||||
|
video.pause();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
video.on('pause', () => {
|
||||||
|
audio.pause();
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
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);
|
||||||
|
|
||||||
|
document.addEventListener('fullscreenchange', () => {
|
||||||
|
if (!document.fullscreenElement) {
|
||||||
|
video.pause();
|
||||||
|
audio.pause();
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
video.on('pause', () => {
|
|
||||||
audio.pause();
|
|
||||||
});
|
|
||||||
|
|
||||||
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);
|
|
||||||
|
|
||||||
document.addEventListener('fullscreenchange', () => {
|
|
||||||
if (!document.fullscreenElement) {
|
|
||||||
video.pause();
|
|
||||||
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>
|
</script>
|
||||||
|
|
||||||
<% if(dm) { %>
|
<% if(dm) { %>
|
||||||
|
|
Loading…
Reference in a new issue