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:
@@ -467,9 +467,9 @@ class VideoEditor:
|
|||||||
MAX_PLAYBACK_SPEED = 10.0
|
MAX_PLAYBACK_SPEED = 10.0
|
||||||
|
|
||||||
# Seek multiplier configuration
|
# Seek multiplier configuration
|
||||||
SEEK_MULTIPLIER_INCREMENT = 2.0
|
SEEK_MULTIPLIER_INCREMENT = 4.0
|
||||||
MIN_SEEK_MULTIPLIER = 1.0
|
MIN_SEEK_MULTIPLIER = 1.0
|
||||||
MAX_SEEK_MULTIPLIER = 100.0
|
MAX_SEEK_MULTIPLIER = 1000.0
|
||||||
|
|
||||||
# Auto-repeat seeking configuration
|
# Auto-repeat seeking configuration
|
||||||
AUTO_REPEAT_DISPLAY_RATE = 1.0
|
AUTO_REPEAT_DISPLAY_RATE = 1.0
|
||||||
|
Reference in New Issue
Block a user