mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-20 01:42:50 +01:00
parent
7a7b1376fb
commit
f005a35aa7
@ -3489,10 +3489,12 @@ def run_pp(self, pp, infodict):
|
||||
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):
|
||||
|
Loading…
Reference in New Issue
Block a user