From c0b439066290974b70ccbe679fc58df2af2bec87 Mon Sep 17 00:00:00 2001 From: anosanstudio Date: Sun, 19 Mar 2023 01:11:02 +0800 Subject: [PATCH] =?UTF-8?q?=E6=92=AD=E6=94=BE=E9=A0=AD=E4=B9=9F=E6=9C=83?= =?UTF-8?q?=E8=87=AA=E5=8B=95=E8=B7=B3=E8=BD=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.js | 1 + 1 file changed, 1 insertion(+) diff --git a/main.js b/main.js index 7b5b61d..7379e16 100644 --- a/main.js +++ b/main.js @@ -442,6 +442,7 @@ function autoJump() { //當autoJump開啟時拖動或輸入結束時,自動 for (let i = currentStamping; i < lines.length; i++) { if ((lines[i][0] === null) || (lines[i][1] === null)) { currentStamping = i; + video.currentTime = lines[i - 1][1] + 0.33; //自動跳轉後撥放頭也會自動跳轉到後面,並且向後一微小的偏移,以方便誤觸後生成的字幕不會太小,方便拖動 break; } }