diff options
| author | historia <historiavg@proton.me> | 2026-08-18 02:17:03 -0400 |
|---|---|---|
| committer | historia <historiavg@proton.me> | 2026-08-18 02:17:03 -0400 |
| commit | 8760626f744d79a05904e692119ffa72fc0c4e54 (patch) | |
| tree | 1679faa3af8a1dd2ff1a94504168831ccf82f0ad /converter/config.py | |
| parent | d72d274bd9895bdf97d31d56690b7df07fa74ad4 (diff) | |
| download | tts-audiobook-generator-8760626f744d79a05904e692119ffa72fc0c4e54.tar.gz | |
fix(converter): escape ffmetadata titles, thread exact chunk paths
Diffstat (limited to 'converter/config.py')
| -rw-r--r-- | converter/config.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/converter/config.py b/converter/config.py index 5542bae..b4d7f22 100644 --- a/converter/config.py +++ b/converter/config.py @@ -11,6 +11,14 @@ from pathlib import Path BASE_DIR = Path(__file__).resolve().parent.parent # ============================================================================= +# VOICE MODES +# ============================================================================= + +VOICE_MODE_CUSTOM = "custom_voice" +VOICE_MODE_CLONE = "voice_clone" +VOICE_MODES = (VOICE_MODE_CUSTOM, VOICE_MODE_CLONE) + +# ============================================================================= # QWEN API CONFIGURATION # ============================================================================= |
