1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-10-31 14:45:14 +00:00
This commit is contained in:
pukkandan
2023-01-01 17:01:48 +05:30
parent 26fdfc3704
commit 193fb150b7
2 changed files with 3 additions and 2 deletions

View File

@@ -3460,7 +3460,8 @@ class YoutubeDL:
return infodict
def run_all_pps(self, key, info, *, additional_pps=None):
self._forceprint(key, info)
if key != 'video':
self._forceprint(key, info)
for pp in (additional_pps or []) + self._pps[key]:
info = self.run_pp(pp, info)
return info