diff options
| author | historia <historiavg@proton.me> | 2026-09-04 12:45:18 -0400 |
|---|---|---|
| committer | historia <historiavg@proton.me> | 2026-09-04 12:45:18 -0400 |
| commit | 9c9304fa05a2e78f96c410fb8ed0e20231d5b955 (patch) | |
| tree | eec42cd236b68911ca978e6e7d7e2aeef6f2703d | |
| parent | 1d59b3a412caaf0fdb982f2b6481c38b8a8a25d3 (diff) | |
| download | tts-audiobook-generator-9c9304fa05a2e78f96c410fb8ed0e20231d5b955.tar.gz | |
readme: uninstall section
| -rw-r--r-- | README.md | 20 |
1 files changed, 19 insertions, 1 deletions
@@ -2,7 +2,7 @@  -Generate audiobooks from books (epub, txt, pdf) using text-to-speech backends such as `audio.cpp`, `qwen-tts`, and `SGLang-Omni`. TAG installs and manages requirements and backend servers automatically. +Generate audiobooks from books (epub, txt, pdf) using text-to-speech backends such as `audio.cpp`, `qwen-tts`, and `SGLang-Omni`. TAG installs and manages requirements, backend servers, and TTS models automatically. ## Overview @@ -123,6 +123,24 @@ Transcription affects the output a lot. The automatic Whisper transcript is not Even tiny amounts of pause between phrases in the sample audio can have a big impact. Try increasing or decreasing them or find a sample with different cadence. +## Uninstall + +Everything the tool installs lives inside the project folder — venvs, the audio.cpp checkout, cloned repos, downloaded models, logs, and generated audiobooks — so removing it removes all of that: + +```bash +rm -rf tts-audiobook-generator +``` + +A few caches land in your home directory. Only delete these if you don't share them with other tools: + +- `~/.cache/huggingface/hub` — TTS model weights and Whisper transcription models (delete only the `models--*` directories to keep the rest) +- `~/.cache/whisper` — OpenAI Whisper models (only used when the fallback transcriber runs) +- `~/.cache/pip` — downloaded wheels (shared with pip itself) + +```bash +rm -rf ~/.cache/huggingface/hub ~/.cache/whisper ~/.cache/pip +``` + ## License MIT |
