Now a new FileDownloader is created when downloading a video

The progress hooks can be added using the method "add_downloader_progress_hook"
This commit is contained in:
Jaime Marquínez Ferrándiz 2013-09-23 18:09:28 +02:00
parent f2c36ee43e
commit 8ab470f1b2
2 changed files with 10 additions and 5 deletions

View file

@ -90,7 +90,7 @@ def generator(test_case):
def _hook(status):
if status['status'] == 'finished':
finished_hook_called.add(status['filename'])
ydl.fd.add_progress_hook(_hook)
ydl.add_downloader_progress_hook(_hook)
def get_tc_filename(tc):
return tc.get('file') or ydl.prepare_filename(tc.get('info_dict', {}))