
FRCRN speech denoiser (ClearerVoice-Studio): mixes each in_0 AudioFrame to mono, resamples to 16 kHz, and emits a denoised 16 kHz mono AudioFrame on out_0. Use ahead of narrowband ASR or VAD.
Pre-ASR cleanup of a recorded file: the denoiser strips noise so the 16 kHz transcriber sees clean speech.
Live microphone gating: webcam audio is denoised so voice-activity detection responds to speech instead of background noise.
out_0 is always 16 kHz mono regardless of the input rate or channel layout; multi-channel in_0 is averaged to mono without weighting. Pair with a downstream resample if the original rate matters.AudioFrame is returned unchanged without invoking the model, so every input still yields exactly one output frame.device starting with `cuda` falls back to CPU when no GPU is present.Automated release