# FL ClearVoice Dependencies # =========================== # Core dependencies clearvoice torch>=2.0.0 torchaudio>=2.0.0 numpy>=1.24.0 soundfile>=0.12.0 librosa>=0.10.0 scipy>=1.10.0 # Pin transformers to avoid PyTorch 2.1.x compatibility issues # (newer versions require PyTorch 2.4+) transformers<4.46.0 # Optional: Resemble-Enhance (for Resemble_Enhance and Resemble_Denoise models) # Install with: pip install resemble-enhance # resemble-enhance # Optional: VoiceFixer (for VoiceFixer model) # Install with: pip install voicefixer # voicefixer

Audio enhancement nodes for ComfyUI featuring speech enhancement, super-resolution, denoising, and restoration using multiple AI backends.
[](https://github.com/modelscope/ClearerVoice-Studio)
[](https://www.patreon.com/Machinedelusions)
ComfyUI/models/clear_voice/| Node | Description |
|——|————-|
| Model Loader | Downloads and caches enhancement models |
| Process | Processes audio using the loaded model |
Search for “FL ClearVoice” and install.
cd ComfyUI/custom_nodes
git clone https://github.com/filliptm/ComfyUI_FL-ClearVoice.git
cd ComfyUI_FL-ClearVoice
pip install -r requirements.txt
| Model | Type | Output SR | Notes |
|——-|——|———–|——-|
| MossFormer2_SE_48K | Enhancement | 48kHz | High quality speech enhancement |
| FRCRN_SE_16K | Enhancement | 16kHz | Fast speech enhancement |
| MossFormerGAN_SE_16K | Enhancement | 16kHz | GAN-based enhancement |
| MossFormer2_SR_48K | Super-Resolution | 48kHz | Audio upscaling |
| Model | Type | Output SR | Notes |
|——-|——|———–|——-|
| Resemble_Enhance | Full Enhancement | 44.1kHz | Denoise + enhance + vocoder |
| Resemble_Denoise | Denoise Only | 44.1kHz | Fast denoising |
| Model | Type | Output SR | Notes |
|——-|——|———–|——-|
| VoiceFixer | Restoration | 44.1kHz | All-in-one audio restoration |
Models download automatically on first use to ComfyUI/models/clear_voice/:
ComfyUI/models/clear_voice/
├── clearvoice/ # ClearVoice models
│ ├── MossFormer2_SE_48K/
│ ├── FRCRN_SE_16K/
│ └── ...
├── resemble_enhance/ # Resemble-Enhance models
└── voicefixer/ # VoiceFixer models
MIT