Closes #2215
This commit is contained in:
pukkandan 2022-01-03 20:39:46 +05:30
parent a13e684813
commit 61e9d9268c
No known key found for this signature in database
GPG Key ID: 0F00D95A001F4698
1 changed files with 1 additions and 1 deletions

View File

@ -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)