From 22cbabba9fa617ecdc470b74822612712da155c9 Mon Sep 17 00:00:00 2001 From: Ayo Date: Thu, 4 Sep 2025 11:21:05 +0200 Subject: [PATCH] feat: indicate "Now playing..." --- tts.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tts.py b/tts.py index 94ecd9e..05f815c 100644 --- a/tts.py +++ b/tts.py @@ -84,6 +84,7 @@ def generate_audio(generator, name, voice, device): return output_files def play_audio(output_files): + print("Now playing generated audio...") length = len(output_files) for i, output in enumerate(output_files): full_path = os.path.abspath(output)