Ensure pre-processor errors do not block `--print`

Closes #6937
This commit is contained in:
pukkandan 2023-04-29 00:58:48 +05:30
parent 7a7b1376fb
commit f005a35aa7
No known key found for this signature in database
GPG Key ID: 7EEE9E1E817D0A39
1 changed files with 6 additions and 4 deletions

View File

@ -3489,10 +3489,12 @@ class YoutubeDL:
return infodict
def run_all_pps(self, key, info, *, additional_pps=None):
for pp in (additional_pps or []) + self._pps[key]:
info = self.run_pp(pp, info)
if key != 'video':
self._forceprint(key, info)
try:
for pp in (additional_pps or []) + self._pps[key]:
info = self.run_pp(pp, info)
finally:
if key != 'video':
self._forceprint(key, info)
return info
def pre_process(self, ie_info, key='pre_process', files_to_move=None):