mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 09:12:40 +01:00
parent
dac5df5a98
commit
013b50b794
@ -633,11 +633,14 @@ def check_deprecated(param, option, suggestion):
|
|||||||
pp = pp_class(self, **compat_kwargs(pp_def))
|
pp = pp_class(self, **compat_kwargs(pp_def))
|
||||||
self.add_post_processor(pp, when=when)
|
self.add_post_processor(pp, when=when)
|
||||||
|
|
||||||
for ph in self.params.get('post_hooks', []):
|
hooks = {
|
||||||
self.add_post_hook(ph)
|
'post_hooks': self.add_post_hook,
|
||||||
|
'progress_hooks': self.add_progress_hook,
|
||||||
for ph in self.params.get('progress_hooks', []):
|
'postprocessor_hooks': self.add_postprocessor_hook,
|
||||||
self.add_progress_hook(ph)
|
}
|
||||||
|
for opt, fn in hooks.items():
|
||||||
|
for ph in self.params.get(opt, []):
|
||||||
|
fn(ph)
|
||||||
|
|
||||||
register_socks_protocols()
|
register_socks_protocols()
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user