[pp/FFmpegMetadata] Embed stream metadata in single format downloads (#8647)

Closes #8568
Authored by: bashonly
pull/8677/head
bashonly 2023-11-25 20:40:09 -06:00 zatwierdzone przez GitHub
rodzic bb5a54e6db
commit deeb13eae8
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

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