new "save audio" node (wav / mp3 + options)

This commit is contained in:
snicolast
2025-10-06 11:49:32 +13:00
parent 3161a7033f
commit e6609502ca
3 changed files with 158 additions and 5 deletions

View File

@@ -1,18 +1,22 @@
from .nodes.indextts2_node import IndexTTS2Simple
from .nodes.indextts2_node import IndexTTS2Simple
from .nodes.indextts2_node_advanced import IndexTTS2Advanced
from .nodes.indextts2_node_emovec import IndexTTS2EmotionVector
from .nodes.indextts2_node_emotext import IndexTTS2EmotionFromText
from .nodes.indextts2_save_audio import IndexTTS2SaveAudio
NODE_CLASS_MAPPINGS = {
"IndexTTS2Simple": IndexTTS2Simple,
"IndexTTS2Advanced": IndexTTS2Advanced,
"IndexTTS2EmotionVector": IndexTTS2EmotionVector,
"IndexTTS2EmotionFromText": IndexTTS2EmotionFromText,
"IndexTTS2EmotionVector": IndexTTS2EmotionVector,
"IndexTTS2SaveAudio": IndexTTS2SaveAudio,
"IndexTTS2Simple": IndexTTS2Simple,
}
NODE_DISPLAY_NAME_MAPPINGS = {
"IndexTTS2Simple": "IndexTTS2 Simple",
"IndexTTS2Advanced": "IndexTTS2 Advanced",
"IndexTTS2EmotionVector": "IndexTTS2 Emotion Vector",
"IndexTTS2EmotionFromText": "IndexTTS2 Emotion From Text",
"IndexTTS2EmotionVector": "IndexTTS2 Emotion Vector",
"IndexTTS2SaveAudio": "IndexTTS2 Save Audio",
"IndexTTS2Simple": "IndexTTS2 Simple",
}