aboutsummaryrefslogtreecommitdiff
path: root/app/converter/clients/__init__.py
diff options
context:
space:
mode:
authorhistoria <historiavg@proton.me>2026-08-28 00:59:47 -0400
committerhistoria <historiavg@proton.me>2026-08-28 00:59:47 -0400
commit975053f1789771ba5cb9dbe50ba7fe0aa396f0ab (patch)
tree9e249f025860a8a0bb89751159b412b3d41b25ba /app/converter/clients/__init__.py
parent967b60342af11ada1cd6a27c935dd336523fb1cd (diff)
downloadtts-audiobook-generator-975053f1789771ba5cb9dbe50ba7fe0aa396f0ab.tar.gz
fix: silently failing whisper transcription
Diffstat (limited to 'app/converter/clients/__init__.py')
-rw-r--r--app/converter/clients/__init__.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/app/converter/clients/__init__.py b/app/converter/clients/__init__.py
index 1fcfd1a..d02fd9f 100644
--- a/app/converter/clients/__init__.py
+++ b/app/converter/clients/__init__.py
@@ -20,7 +20,9 @@ from .languages import LANGUAGE_CHOICES, LANGUAGE_ISO_CODES, TTS_LANGUAGES, \
TTS_LANGUAGE_ALIASES, normalize_language
from .speakers import QWEN3_TTS_SPEAKERS, SPEAKER_DISPLAY_NAMES, \
is_builtin_speaker, speaker_display_name, speaker_display_name_for
-from .transcribe import transcribe_reference_audio, whisper_backend_available
+from .transcribe import (transcribe_reference_audio,
+ transcribe_reference_audio_detailed,
+ whisper_backend_available, whisper_backend_problem)
from .qwen import CUSTOM_VOICE_MODEL_ID, MODEL_SIZE, QwenTTSClient
from .faster import SAMPLE_RATE, FasterTTSClient
from .audiocpp import (
@@ -57,7 +59,8 @@ __all__ = [
"QWEN3_TTS_SPEAKERS", "SPEAKER_DISPLAY_NAMES",
"speaker_display_name", "speaker_display_name_for", "is_builtin_speaker",
# transcription
- "transcribe_reference_audio", "whisper_backend_available",
+ "transcribe_reference_audio", "transcribe_reference_audio_detailed",
+ "whisper_backend_available", "whisper_backend_problem",
# audio.cpp family profiles
"AUDIOCPP_LANG_DISPLAY", "AUDIOCPP_LANG_ISO", "AUDIOCPP_LANG_OMIT",
"AUDIOCPP_FAMILY_QWEN3_TTS", "AUDIOCPP_TASK_TTS", "AUDIOCPP_TASK_VDES",