mirror of
https://github.com/LucBerge/yt-dlp.git
synced 2025-03-17 19:57:52 +03:00
parent
43cc91ad75
commit
1e9969f4f5
4 changed files with 7 additions and 9 deletions
|
@ -1151,7 +1151,7 @@ class FFmpegConcatPP(FFmpegPostProcessor):
|
|||
entries = info.get('entries') or []
|
||||
if not any(entries) or (self._only_multi_video and info['_type'] != 'multi_video'):
|
||||
return [], info
|
||||
elif traverse_obj(entries, (..., 'requested_downloads', lambda _, v: len(v) > 1)):
|
||||
elif traverse_obj(entries, (..., lambda k, v: k == 'requested_downloads' and len(v) > 1)):
|
||||
raise PostProcessingError('Concatenation is not supported when downloading multiple separate formats')
|
||||
|
||||
in_files = traverse_obj(entries, (..., 'requested_downloads', 0, 'filepath')) or []
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue