Update subgen.py

This commit is contained in:
McCloudS
2023-10-25 23:33:59 -06:00
committed by GitHub
parent 1a9526978c
commit a6bd06249e

View File

@@ -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(",")