From ca9ccab697dc7fba9d45473b699e4f794c92fa99 Mon Sep 17 00:00:00 2001 From: Kibi Kelburton Date: Sat, 23 May 2026 11:54:42 +0200 Subject: [PATCH] double speed also when paused --- public/s/js/v0ck.js | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/public/s/js/v0ck.js b/public/s/js/v0ck.js index 74058fa..7b1080e 100644 --- a/public/s/js/v0ck.js +++ b/public/s/js/v0ck.js @@ -171,6 +171,7 @@ class v0ck { let isSpeedingUp = false; let restorePlaybackRate = 1; let ignoreNextClick = false; + let wasPausedWhenStarted = false; const speedIndicator = player.querySelector('.v0ck_speed_indicator'); function handleVolumeButton(vol) { @@ -601,9 +602,6 @@ class v0ck { // Speedup 2x on Hold logic function startSpeedUp(e) { - // Only speed up if the video is currently playing - if (video.paused) return; - // Only left mouse click or touch triggers speedup if (e.type === 'mousedown' && e.button !== 0) return; @@ -616,9 +614,14 @@ class v0ck { speedUpTimeout = setTimeout(() => { isSpeedingUp = true; ignoreNextClick = true; + wasPausedWhenStarted = video.paused; restorePlaybackRate = video.playbackRate; video.playbackRate = 2.0; + if (wasPausedWhenStarted) { + video.play(); + } + if (speedIndicator) { speedIndicator.classList.remove('v0ck_hidden'); } @@ -630,6 +633,10 @@ class v0ck { if (isSpeedingUp) { isSpeedingUp = false; video.playbackRate = restorePlaybackRate; + if (wasPausedWhenStarted) { + video.pause(); + wasPausedWhenStarted = false; + } if (speedIndicator) { speedIndicator.classList.add('v0ck_hidden'); }