diff options
| author | historia <historiavg@proton.me> | 2026-09-02 19:56:51 -0400 |
|---|---|---|
| committer | historia <historiavg@proton.me> | 2026-09-02 19:56:51 -0400 |
| commit | 08e702700303f9bb5767f02a337b8b34be410df9 (patch) | |
| tree | ce87c27929c81a423e9a5fa27927576544856779 /app/converter/config.py | |
| parent | 0c6ab319b7fb9ec9c8afe9a43ad249cbfc1a126d (diff) | |
| download | tts-audiobook-generator-08e702700303f9bb5767f02a337b8b34be410df9.tar.gz | |
feat: move clone .wav directory to settings
Diffstat (limited to 'app/converter/config.py')
| -rw-r--r-- | app/converter/config.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/app/converter/config.py b/app/converter/config.py index ad6c2d0..d771e46 100644 --- a/app/converter/config.py +++ b/app/converter/config.py @@ -15,6 +15,12 @@ CHUNK_SIZE = 250 INPUT_DIR = "./input" OUTPUT_DIR = "./output" +# Where voice-cloning reference .wavs live; the TUI Settings menu exposes +# this as "Clone .wav directory" and the qwen-tts Base / SGLang-Omni voice +# pickers list the .wav files found here. Relative paths resolve against +# the project root. +CLONE_WAV_DIR = "./voices" + # Output audiobook file at a different tempo. SPEED = 1.0 |
