Fix logic with generating already existing subtitles

This commit is contained in:
McCloudS
2024-10-27 15:28:13 -06:00
committed by GitHub
parent 9118e1e7d7
commit 2904febbde

View File

@@ -518,27 +518,17 @@ def gen_subtitles_queue(file_path: str, transcription_type: str, force_language=
message = None message = None
# Check if force_language is set if has_subtitle_language(file_path, skipifinternalsublang):
if force_language: message = f"{file_path} already has an internal subtitle we want, skipping generation"
# Check if an internal subtitle with the force_language already exists elif os.path.exists(get_file_name_without_extension(file_path) + subextension):
if has_subtitle_language(file_path, force_language): message = f"{file_path} already has a Subgen subtitle created for this, skipping it"
message = f"{file_path} already has an internal subtitle for {force_language}, skipping generation" elif skipifexternalsub and (os.path.exists(get_file_name_without_extension(file_path) + f".{namesublang}.srt") or os.path.exists(get_file_name_without_extension(file_path) + f".{namesublang}.ass")):
# Check if an external subtitle with the force_language already exists message = f"{file_path} already has an external {namesublang} (non-Subgen) subtitle created for this, skipping it"
elif skipifexternalsub and (os.path.exists(get_file_name_without_extension(file_path) + f".{force_language}.srt") or os.path.exists(get_file_name_without_extension(file_path) + f".{force_language}.ass")): elif os.path.exists(get_file_name_without_extension(file_path) + subextensionSDH):
message = f"{file_path} already has an external {force_language} subtitle created for this, skipping it" message = f"{file_path} already has a Subgen SDH subtitle created for this, skipping it"
else: elif os.path.exists(get_file_name_without_extension(file_path) + '.lrc'):
if has_subtitle_language(file_path, skipifinternalsublang): message = f"{file_path} already has a LRC created for this, skipping it"
message = f"{file_path} already has an internal subtitle we want, skipping generation"
elif os.path.exists(get_file_name_without_extension(file_path) + subextension):
message = f"{file_path} already has a subtitle created for this, skipping it"
elif skipifexternalsub and (os.path.exists(get_file_name_without_extension(file_path) + f".{namesublang}.srt") or os.path.exists(get_file_name_without_extension(file_path) + f".{namesublang}.ass")):
message = f"{file_path} already has an external {namesublang} subtitle created for this, skipping it"
elif os.path.exists(get_file_name_without_extension(file_path) + subextensionSDH):
message = f"{file_path} already has a SDH subtitle created for this, skipping it"
elif os.path.exists(get_file_name_without_extension(file_path) + '.lrc'):
message = f"{file_path} already has a LRC created for this, skipping it"
if message: if message:
logging.debug(message) logging.debug(message)
return return