diff options
| author | historia <historiavg@proton.me> | 2026-08-20 17:13:42 -0400 |
|---|---|---|
| committer | historia <historiavg@proton.me> | 2026-08-20 17:13:42 -0400 |
| commit | b873844f7eb681119542661ef588c5b452f88763 (patch) | |
| tree | 65f31a708da479fc5fdad99db14785d1e45645d4 /converter/converter.py | |
| parent | 1f2142e7f610871a6bbe6498d0709d310fcbebb1 (diff) | |
| download | tts-audiobook-generator-b873844f7eb681119542661ef588c5b452f88763.tar.gz | |
fix: crash when audio.cpp is only serving clone model
Diffstat (limited to 'converter/converter.py')
| -rw-r--r-- | converter/converter.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/converter/converter.py b/converter/converter.py index eb3e80e..6994a31 100644 --- a/converter/converter.py +++ b/converter/converter.py @@ -519,7 +519,7 @@ class AudiobookConverter: print(f"Voice: {self.voice or config.FASTER_VOICE}") elif self.backend == BACKEND_AUDIOCPP: print(f"audio.cpp endpoint: {config.AUDIOCPP_API_URL}") - print(f"Model id: {config.AUDIOCPP_MODEL_ID}") + print(f"Model id: {self.tts.model_id}") if self.voice: print("Backend: audio.cpp (voice cloning, reference configured on server)") print(f"Voice: {self.voice}") |
