Closes #2215
pull/2222/head
pukkandan 2022-01-03 20:39:46 +05:30
rodzic a13e684813
commit 61e9d9268c
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 0F00D95A001F4698
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -775,7 +775,7 @@ class FFmpegMetadataPP(FFmpegPostProcessor):
stream_idx = 0
for fmt in info.get('requested_formats') or []:
stream_count = 2 if 'none' not in (fmt.get('vcodec'), fmt.get('acodec')) else 1
lang = ISO639Utils.short2long(fmt['language']) or fmt.get('language')
lang = ISO639Utils.short2long(fmt.get('language') or '') or fmt.get('language')
for i in range(stream_idx, stream_idx + stream_count):
if lang:
metadata[str(i)].setdefault('language', lang)