From f795bc479bdd6d04d04e19d830c2c064e22d552f Mon Sep 17 00:00:00 2001 From: kh Date: Fri, 16 Jun 2023 11:47:59 +0900 Subject: [PATCH] Fix typo https://github.com/snakers4/silero-vad/discussions/319#discussion-5081706 --- utils_vad.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils_vad.py b/utils_vad.py index 90c00ef..faf56bd 100644 --- a/utils_vad.py +++ b/utils_vad.py @@ -196,7 +196,7 @@ def get_speech_timestamps(audio: torch.Tensor, max_speech_duration_s: int (default - inf) 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 agressive cutting. + Chunks longer than max_speech_duration_s will be split at the timestamp of the last silence that lasts more than 100ms (if any), to prevent agressive cutting. Otherwise, they will be split aggressively just before max_speech_duration_s. min_silence_duration_ms: int (default - 100 milliseconds)