This commit is contained in:
unknown
2025-08-02 20:06:44 -07:00
parent 335f1fe2e9
commit 8b6465d46b

View File

@@ -11,6 +11,8 @@ TTS_ENGINES = {
"TACOTRON2": "tacotron",
"YOURTTS": "yourtts"
}
default_tts_engine = TTS_ENGINES['XTTSv2']
default_fine_tuned = 'internal'
TTS_SML = {
"break": "‡break‡",
@@ -24,11 +26,9 @@ TTS_VOICE_CONVERSION = {
"openvoice_v1": "voice_conversion_models/multilingual/multi-dataset/openvoice_v1",
"openvoice_v2": "voice_conversion_models/multilingual/multi-dataset/openvoice_v2"
}
default_vc_model = TTS_VOICE_CONVERSION['openvoice_v2']
default_tts_engine = TTS_ENGINES['XTTSv2']
default_vc_model = TTS_VOICE_CONVERSION['knnvc']
default_voice_detection_model = 'drewThomasson/segmentation'
default_fine_tuned = 'internal'
max_tts_in_memory = 2 # TTS engines to keep in memory (1 tts engine ~= 4GB to 8GB RAM).
max_custom_model = 100