From a6bd06249e6ba60525d1ab22e7b3e9bfef8f2695 Mon Sep 17 00:00:00 2001 From: McCloudS <64094529+McCloudS@users.noreply.github.com> Date: Wed, 25 Oct 2023 23:33:59 -0600 Subject: [PATCH] Update subgen.py --- subgen/subgen.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/subgen/subgen.py b/subgen/subgen.py index 3273cf5..4031a13 100644 --- a/subgen/subgen.py +++ b/subgen/subgen.py @@ -310,6 +310,7 @@ def is_video_file(file_path): return False def transcribe_existing(): + print("Starting to search folders to see if we need to create subtitles.") for path in transcribe_folders: for root, dirs, files in os.walk(path): for file in files: @@ -317,7 +318,7 @@ def transcribe_existing(): if is_video_file(file_path): threading.Thread(target=add_file_for_transcription, args=(file_path, False)).start() - print("Finished queueing files for transcription") + print("Finished searching and queueing files for transcription") if transcribe_folders: transcribe_folders = transcribe_folders.split(",")