修改注释

This commit is contained in:
wenbindu
2025-05-28 10:59:59 +08:00
parent 6a4ed78812
commit 4af0c1e2ce
@@ -18,7 +18,7 @@ class VADProvider(VADProviderBase):
model="silero_vad",
force_reload=False,
)
(get_speech_timestamps, _, _, _, _) = self.utils
get_speech_timestamps, *_ = self.utils
self.decoder = opuslib_next.Decoder(16000, 1)
@@ -53,7 +53,7 @@ class VADProvider(VADProviderBase):
speech_prob = self.model(audio_tensor, 16000).item()
client_have_voice = speech_prob >= self.vad_threshold
# 如果之前有声音,但本次没有声音,且与上次有声音的时间已经超过了静默阈值,则认为已经说完一句话
# 如果之前有声音,但本次没有声音,且与上次有声音的时间已经超过了静默阈值,则认为已经说完一句话
if conn.client_have_voice and not client_have_voice:
stop_duration = (
time.time() * 1000 - conn.client_have_voice_last_time