aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorhistoria <historiavg@proton.me>2026-08-20 18:06:22 -0400
committerhistoria <historiavg@proton.me>2026-08-20 18:06:22 -0400
commit5ca77f86b70718b4ef1a07299efbd6431268d546 (patch)
treee50a439ea7a92bd628f78240fdbc2d4093df6928 /README.md
parentb873844f7eb681119542661ef588c5b452f88763 (diff)
downloadtts-audiobook-generator-5ca77f86b70718b4ef1a07299efbd6431268d546.tar.gz
fix: do not chunk with audio.cpp backend (double chunking)
Diffstat (limited to 'README.md')
-rw-r--r--README.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/README.md b/README.md
index dd3aece..b9d3057 100644
--- a/README.md
+++ b/README.md
@@ -54,6 +54,7 @@ You will also need to install one of the following backends (see below for insta
| `--language <lang>` | Output language for the synthesized speech. Can add an accent even if the text is English. |
| `--backend {gradio,faster,audiocpp}` | TTS server to use (default `gradio`). `faster` and `audiocpp` require their server running first — see the backend sections above. |
| `--voice <name>` | Voice to request from a server-side voice configuration (`--backend faster` or `audiocpp` only). |
+| `--chunk` | Force client-side chunking into `CHUNK_SIZE`-word requests. Only matters for `--backend audiocpp`, which otherwise sends each chapter as one request and lets the server chunk long text itself (may double-chunk); the `gradio` and `faster` backends always chunk. |
| `--debug` | Troubleshooting: dump each chunk's raw audio and sent text to `debug/` and log every request. |
Other options including backend server URLs/ports are configured in `converter/config.py`