From 8760626f744d79a05904e692119ffa72fc0c4e54 Mon Sep 17 00:00:00 2001 From: historia Date: Tue, 18 Aug 2026 02:17:03 -0400 Subject: fix(converter): escape ffmetadata titles, thread exact chunk paths --- converter/config.py | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'converter/config.py') diff --git a/converter/config.py b/converter/config.py index 5542bae..b4d7f22 100644 --- a/converter/config.py +++ b/converter/config.py @@ -10,6 +10,14 @@ from pathlib import Path # Project root (directory containing audiobook_converter.py) 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 # ============================================================================= -- cgit v1.2.3