From 6ccb6d443d2fb871b43d96ea61a95bc3e6a92355 Mon Sep 17 00:00:00 2001 From: historia Date: Wed, 26 Aug 2026 17:46:48 -0400 Subject: feat: combined install/configure tui screens into one menu, removed extraneous wizard screens --- app/converter/clients/faster.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'app/converter/clients') diff --git a/app/converter/clients/faster.py b/app/converter/clients/faster.py index df98546..f0874e0 100644 --- a/app/converter/clients/faster.py +++ b/app/converter/clients/faster.py @@ -102,9 +102,8 @@ class FasterTTSClient(BaseTTSClient): pcm_parts: List[bytes] = [] with self._chunk_heartbeat(chunk_num): - for sub_num, sub_text in enumerate(sub_chunks, 1): - pcm = self._request_pcm(sub_text) - pcm_parts.append(pcm) + for sub_text in sub_chunks: + pcm_parts.append(self._request_pcm(sub_text)) output_path = self._chunk_path(chunk_num, ".wav") with wave.open(str(output_path), "wb") as wav_file: -- cgit v1.2.3