From ae1e6d9883fdae52359e64be3c2121b5c7ab0cc1 Mon Sep 17 00:00:00 2001 From: Guillaume Klein Date: Wed, 24 May 2023 15:56:03 +0200 Subject: [PATCH] Remove reference to the VAD function from the README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c7c927b..ed40e09 100644 --- a/README.md +++ b/README.md @@ -106,7 +106,7 @@ The library integrates the [Silero VAD](https://github.com/snakers4/silero-vad) segments, _ = model.transcribe("audio.mp3", vad_filter=True) ``` -The default behavior is conservative and only removes silence longer than 2 seconds. See the available VAD parameters and default values in the function [`get_speech_timestamps`](https://github.com/guillaumekln/faster-whisper/blob/master/faster_whisper/vad.py). They can be customized with the dictionary argument `vad_parameters`: +The default behavior is conservative and only removes silence longer than 2 seconds. See the available VAD parameters and default values in the [source code](https://github.com/guillaumekln/faster-whisper/blob/master/faster_whisper/vad.py). They can be customized with the dictionary argument `vad_parameters`: ```python segments, _ = model.transcribe("audio.mp3", vad_filter=True, vad_parameters=dict(min_silence_duration_ms=500))