aboutsummaryrefslogtreecommitdiffstats
path: root/yt_dlp/downloader/common.py
diff options
context:
space:
mode:
authorpukkandan <pukkandan.ytdlp@gmail.com>2021-10-16 18:31:00 +0530
committerpukkandan <pukkandan.ytdlp@gmail.com>2021-10-16 20:02:40 +0530
commit03b4de722a6cf86dbcc6d17a63145ec59a573bf6 (patch)
tree76850c608171efbb8ab010bc39d404039231bc1c /yt_dlp/downloader/common.py
parent48ee10ee8adcf61e1136a252462670ec230e9439 (diff)
downloadhypervideo-pre-03b4de722a6cf86dbcc6d17a63145ec59a573bf6.tar.lz
hypervideo-pre-03b4de722a6cf86dbcc6d17a63145ec59a573bf6.tar.xz
hypervideo-pre-03b4de722a6cf86dbcc6d17a63145ec59a573bf6.zip
[downloader] Fix slow progress hooks
Closes #1301
Diffstat (limited to 'yt_dlp/downloader/common.py')
-rw-r--r--yt_dlp/downloader/common.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/yt_dlp/downloader/common.py b/yt_dlp/downloader/common.py
index 89cdffd24..96b78a968 100644
--- a/yt_dlp/downloader/common.py
+++ b/yt_dlp/downloader/common.py
@@ -405,13 +405,10 @@ class FileDownloader(object):
def _hook_progress(self, status, info_dict):
if not self._progress_hooks:
return
- info_dict = dict(info_dict)
- for key in ('__original_infodict', '__postprocessors'):
- info_dict.pop(key, None)
+ status['info_dict'] = info_dict
# youtube-dl passes the same status object to all the hooks.
# Some third party scripts seems to be relying on this.
# So keep this behavior if possible
- status['info_dict'] = copy.deepcopy(info_dict)
for ph in self._progress_hooks:
ph(status)