aboutsummaryrefslogtreecommitdiff
path: root/converter/config.py
diff options
context:
space:
mode:
authorhistoria <historiavg@proton.me>2026-08-21 14:28:42 -0400
committerhistoria <historiavg@proton.me>2026-08-21 14:28:42 -0400
commit9d2c24edb983e458b0fbb9f065fbbda79c19ca26 (patch)
tree8286decf2080bbd61c812dfab5d7dbe1ad1f94d5 /converter/config.py
parente5c722e9fc67f20c1545f79bb4bbc0188dea7d1f (diff)
downloadtts-audiobook-generator-9d2c24edb983e458b0fbb9f065fbbda79c19ca26.tar.gz
rename project tts-audiobook generator, doc cleanup
Diffstat (limited to 'converter/config.py')
-rw-r--r--converter/config.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/converter/config.py b/converter/config.py
index 8e60250..d15efa5 100644
--- a/converter/config.py
+++ b/converter/config.py
@@ -8,20 +8,20 @@ MAX_RETRIES = 3 # Attempts per chunk request
HEARTBEAT_INTERVAL_SECONDS = 30 # Print "still working" in console logs every N seconds
# Words per TTS generation request (client-side chunking).
-# The gradio and faster backends always chunk with this size
+# The qwen and faster backends always chunk with this size
# The audio.cpp backend chunks long text itself, so this is ignored
# by default with that backend. Force chunking with --chunk
CHUNK_SIZE = 250
# Default TTS backend.
-# gradio: qwen-tts-demo
-# faster: faster-qwen-tts
# audiocpp: audiocpp_server
+# qwen: qwen-tts-demo
+# faster: faster-qwen-tts
# The --backend CLI flag overrides this
-BACKEND = "gradio"
+BACKEND = "audiocpp"
###############################################################################
-# BACKEND 1: qwen-tts-demo (gradio) options #
+# BACKEND 1: qwen-tts-demo (qwen) options #
###############################################################################
# There are different API URLs for CustomVoice and Base models so you can run both at once