Add OmniVoice Voice Preset node with two female voice samples

Two built-in presets, auto-downloaded and cached to ComfyUI/models/omnivoice/presets/:
- "Nature – female, warm" (F5-TTS basic_ref_en.wav, transcript included)
- "Shadowheart – female, expressive" (Chatterbox demo, connect Whisper for transcript)

Outputs ref_audio (AUDIO) and ref_text (STRING) — wire directly into
OmniVoice Generate. Updated default workflow to use this node.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-05 18:19:29 +02:00
parent d779526225
commit 8de201a4c9
4 changed files with 96 additions and 57 deletions
+2 -1
View File
@@ -1,5 +1,6 @@
from .loader import OmniVoiceModelLoader
from .generator import OmniVoiceGenerate
from .epub_loader import OmniVoiceEpubLoader
from .voice_presets import OmniVoiceVoicePreset
__all__ = ["OmniVoiceModelLoader", "OmniVoiceGenerate", "OmniVoiceEpubLoader"]
__all__ = ["OmniVoiceModelLoader", "OmniVoiceGenerate", "OmniVoiceEpubLoader", "OmniVoiceVoicePreset"]