feat: improve video seeking and range request handling

This commit is contained in:
2026-05-15 01:39:29 +02:00
parent 604a9ab382
commit 74e2aa50fd
4 changed files with 78 additions and 27 deletions

View File

@@ -17,14 +17,16 @@ import { formatTime } from './controls';
let initialized = false; // prevent double init on htmx swaps
const hidePreviewPopover = (): void => {
state.previewPopover?.classList.remove('block');
state.previewPopover?.classList.add('hidden');
state.previewPopover!.style.left = '0px';
if (!state.previewPopover) return;
state.previewPopover.classList.add('opacity-0');
state.previewPopover.classList.remove('opacity-100');
state.previewPopover.style.left = '0px';
};
const showPreviewPopover = (): void => {
state.previewPopover?.classList.remove('hidden');
state.previewPopover?.classList.add('block');
if (!state.previewPopover) return;
state.previewPopover.classList.remove('opacity-0');
state.previewPopover.classList.add('opacity-100');
};
// updates time preview on progress bar hover
@@ -141,9 +143,14 @@ const initPlayer = (): void => {
goToNextEpisode();
});
// click to seek
progressWrap?.addEventListener('mousedown', e => {
// click/drag to seek (pointer events are more consistent across fullscreen/mobile)
progressWrap?.addEventListener('pointerdown', e => {
// ignore right/middle click
if ('button' in e && e.button !== 0) return;
state.isScrubbing = true;
try {
(e.currentTarget as HTMLElement).setPointerCapture((e as PointerEvent).pointerId);
} catch {}
const rect = progressWrap.getBoundingClientRect();
state.video.currentTime = absoluteTimeFromRatio(
Math.max(0, Math.min(1, (e.clientX - rect.left) / rect.width))
@@ -154,15 +161,20 @@ const initPlayer = (): void => {
});
// hover to preview time
progressWrap?.addEventListener('mousemove', e => {
progressWrap?.addEventListener('pointermove', e => {
const rect = progressWrap.getBoundingClientRect();
updatePreviewUI(Math.max(0, Math.min(1, (e.clientX - rect.left) / rect.width)));
});
progressWrap?.addEventListener('mouseleave', hidePreviewPopover);
progressWrap?.addEventListener('pointerleave', hidePreviewPopover);
progressWrap?.addEventListener('pointerup', () => {
// ensure we finish the seek even if no window mousemove fired
if (!progressWrap) return;
state.isScrubbing = false;
});
// dragging outside progress bar while scrubbing
window.addEventListener('mousemove', e => {
window.addEventListener('pointermove', e => {
if (!state.isScrubbing || !progressWrap) return;
const rect = progressWrap.getBoundingClientRect();
state.video.currentTime = absoluteTimeFromRatio(

View File

@@ -11,38 +11,71 @@ const formatTime = (seconds: number): string => {
// cached to avoid recalc on every timeupdate
let cachedBounds: TimelineBounds = { start: 0, end: 0, duration: 0 };
let cachedDuration = 0;
let cachedSeekableEnd = 0;
const getDuration = (): number =>
Number.isFinite(state.video.duration) && state.video.duration > 0 ? state.video.duration : 0;
const getSeekableEnd = (): number => {
const ranges = state.video.seekable;
if (!ranges || ranges.length <= 0) return 0;
const end = ranges.end(ranges.length - 1);
return Number.isFinite(end) && end > 0 ? end : 0;
};
/**
* Computes timeline bounds from video.
* Handles seekable ranges (live streams) and regular duration.
* Uses the full duration for VOD, and seekable ranges only when duration is unavailable.
*/
export const timelineBounds = (): TimelineBounds => {
const duration =
Number.isFinite(state.video.duration) && state.video.duration > 0 ? state.video.duration : 0;
let start = 0;
// check seekable range for live streams
const duration = getDuration();
if (duration > 0) {
return { start: 0, end: duration, duration };
}
if (state.video.seekable.length > 0) {
const seekableStart = state.video.seekable.start(0);
if (Number.isFinite(seekableStart) && seekableStart > 0) start = seekableStart;
}
if (duration > start) {
return { start, end: duration, duration: duration - start };
}
// fallback to full seekable range
if (state.video.seekable.length > 0) {
const seekableEnd = state.video.seekable.end(state.video.seekable.length - 1);
if (Number.isFinite(seekableEnd) && seekableEnd > start) {
return { start, end: seekableEnd, duration: seekableEnd - start };
if (
Number.isFinite(seekableStart) &&
Number.isFinite(seekableEnd) &&
seekableEnd > seekableStart
) {
return {
start: seekableStart,
end: seekableEnd,
duration: seekableEnd - seekableStart,
};
}
}
return { start: 0, end: duration, duration };
};
export const invalidateBounds = (): void => {
cachedBounds = timelineBounds();
cachedDuration = getDuration();
cachedSeekableEnd = getSeekableEnd();
};
export const getBounds = (): TimelineBounds => cachedBounds;
export const getBounds = (): TimelineBounds => {
// lazy init + refresh: some streams expand seekable range over time (often tracks buffered end).
// If we keep stale bounds, seeking past "watched/buffered" can map to only a fraction of the real timeline.
const duration = getDuration();
const seekableEnd = getSeekableEnd();
if (
!cachedBounds ||
cachedBounds.duration <= 0 ||
duration !== cachedDuration ||
seekableEnd !== cachedSeekableEnd
) {
cachedBounds = timelineBounds();
cachedDuration = duration;
cachedSeekableEnd = seekableEnd;
}
return cachedBounds;
};
// converts video.currentTime to timeline-relative time (0-based for UI display)
export const displayTimeFromAbsolute = (absoluteTime: number): number => {