[本地语音降噪]:完成本地语音链路和噪音过滤,包含降噪模型、本地ASR和实时字幕稳定策略

This commit is contained in:
mkbk
2026-06-17 22:55:33 +08:00
parent a77a172412
commit 8c75fc5baf
22 changed files with 803 additions and 64 deletions
+14
View File
@@ -49,6 +49,20 @@ class WakeWordProvider(Protocol):
...
class AudioPreprocessor(Protocol):
def load(self) -> None:
...
def reset(self) -> None:
...
def process_frame(self, frame: AudioFrame) -> AudioFrame:
...
def flush(self) -> list[AudioFrame]:
...
class VadProvider(Protocol):
def load(self) -> None:
...