mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 07:04:38 +00:00
[pp/FFmpegMetadata] Embed stream metadata in single format downloads (#8647)
Closes #8568 Authored by: bashonly
This commit is contained in:
parent
bb5a54e6db
commit
deeb13eae8
1 changed files with 1 additions and 1 deletions
|
@ -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):
|
||||
|
|
Loading…
Reference in a new issue