From e25ad4fcd798b1db4dd84ea6de92e6f8c53481c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20Mach=C3=A1=C4=8Dek?= Date: Fri, 4 Oct 2024 17:39:20 +0200 Subject: [PATCH] fixed issue #116 --- whisper_online.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/whisper_online.py b/whisper_online.py index d3e4a5c..9773a40 100644 --- a/whisper_online.py +++ b/whisper_online.py @@ -535,7 +535,7 @@ class VACOnlineASRProcessor(OnlineASRProcessor): model='silero_vad' ) from silero_vad import VADIterator - self.vac = VADIterator(model) # we use all the default options: 500ms silence, etc. + self.vac = FixedVADIterator(model) # we use all the default options: 500ms silence, etc. self.logfile = self.online.logfile self.init()