Closes #3472
This commit is contained in:
pukkandan 2022-04-19 02:57:20 +05:30
parent 43cc91ad75
commit 1e9969f4f5
No known key found for this signature in database
GPG key ID: 7EEE9E1E817D0A39
4 changed files with 7 additions and 9 deletions

View file

@ -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 []