Suppose la langue depuis le nom de fichier

This commit is contained in:
Antoine Van Elstraete 2021-12-27 15:30:19 +01:00
parent 9257c16287
commit dd43acb829
Signed by: AntoineVe
GPG Key ID: E36069A977E2A9ED

View File

@ -227,27 +227,12 @@ def create_mkv(filename):
json_data.append(")") json_data.append(")")
for file in listdir(): for file in listdir():
if f"{filename}_audio" in file: if f"{filename}_audio" in file:
lang = file[-7:][:-4]
json_data.append("--no-track-tags") json_data.append("--no-track-tags")
json_data.append("--no-global-tags") json_data.append("--no-global-tags")
json_data.append("--no-chapters") json_data.append("--no-chapters")
if "fra" in file: json_data.append("--language")
json_data.append("--language") json_data.append(f"0:{lang}")
json_data.append("0:fr")
elif "eng" in file:
json_data.append("--language")
json_data.append("0:en")
elif "deu" in file:
json_data.append("--language")
json_data.append("0:de")
elif "nld" in file:
json_data.append("--language")
json_data.append("0:nl")
elif "spa" in file:
json_data.append("--language")
json_data.append("0:es")
elif "ita" in file:
json_data.append("--language")
json_data.append("0:it")
json_data.append("(") json_data.append("(")
json_data.append(file) json_data.append(file)
json_data.append(")") json_data.append(")")
@ -256,24 +241,9 @@ def create_mkv(filename):
json_data.append("--no-track-tags") json_data.append("--no-track-tags")
json_data.append("--no-global-tags") json_data.append("--no-global-tags")
json_data.append("--no-chapters") json_data.append("--no-chapters")
if "fra" in file: lang = file[-7:][:-4]
json_data.append("--language") json_data.append("--language")
json_data.append("0:fr") json_data.append(f"0:{lang}")
elif "eng" in file:
json_data.append("--language")
json_data.append("0:en")
elif "deu" in file:
json_data.append("--language")
json_data.append("0:de")
elif "nld" in file:
json_data.append("--language")
json_data.append("0:nl")
elif "spa" in file:
json_data.append("--language")
json_data.append("0:es")
elif "ita" in file:
json_data.append("--language")
json_data.append("0:it")
json_data.append("(") json_data.append("(")
json_data.append(file) json_data.append(file)
json_data.append(")") json_data.append(")")