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.
This commit is contained in:
2025-09-17 11:18:35 +02:00
parent 47ec7fed04
commit 9c14249f88

View File

@@ -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