Clarify when an ASR task is running

This commit is contained in:
McCloudS
2024-05-01 16:20:02 -06:00
committed by GitHub
parent a27f1f1727
commit 3906168d62

View File

@@ -122,7 +122,7 @@ def transcription_worker():
while True:
task = task_queue.get()
if 'Bazarr-' in task['path']:
logging.info(f"Skipping processing for {task['path']} as it is handled by ASR.")
logging.info(f"{task['path']} is being handled handled by ASR.")
else:
gen_subtitles(task['path'], task['transcribe_or_translate'], task['force_language'])
task_queue.task_done()