diff --git a/faster_whisper/vad.py b/faster_whisper/vad.py index a937812..487dfa0 100644 --- a/faster_whisper/vad.py +++ b/faster_whisper/vad.py @@ -21,7 +21,7 @@ class VadOptions(NamedTuple): min_speech_duration_ms: Final speech chunks shorter min_speech_duration_ms are thrown out. max_speech_duration_s: Maximum duration of speech chunks in seconds. Chunks longer than max_speech_duration_s will be split at the timestamp of the last silence that - lasts more than 100s (if any), to prevent aggressive cutting. Otherwise, they will be + lasts more than 100ms (if any), to prevent aggressive cutting. Otherwise, they will be split aggressively just before max_speech_duration_s. min_silence_duration_ms: In the end of each speech chunk wait for min_silence_duration_ms before separating it