From 9c14249f889734d7a006aa4c1e216751854e46ae Mon Sep 17 00:00:00 2001 From: PhatPhuckDave Date: Wed, 17 Sep 2025 11:18:35 +0200 Subject: [PATCH] Update VideoEditor configuration for seek multiplier settings This commit modifies the seek multiplier settings in the VideoEditor class, increasing the SEEK_MULTIPLIER_INCREMENT from 2.0 to 4.0 and expanding the MAX_SEEK_MULTIPLIER from 100.0 to 1000.0. These changes enhance the flexibility and responsiveness of the seeking functionality during video editing. --- croppa/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/croppa/main.py b/croppa/main.py index 7523421..780c266 100644 --- a/croppa/main.py +++ b/croppa/main.py @@ -467,9 +467,9 @@ class VideoEditor: MAX_PLAYBACK_SPEED = 10.0 # Seek multiplier configuration - SEEK_MULTIPLIER_INCREMENT = 2.0 + SEEK_MULTIPLIER_INCREMENT = 4.0 MIN_SEEK_MULTIPLIER = 1.0 - MAX_SEEK_MULTIPLIER = 100.0 + MAX_SEEK_MULTIPLIER = 1000.0 # Auto-repeat seeking configuration AUTO_REPEAT_DISPLAY_RATE = 1.0