2013-09-24 00:59:27 +09:00
|
|
|
# Legacy file for backwards compatibility, use youtube_dl.downloader instead!
|
|
|
|
from .downloader import FileDownloader as RealFileDownloader
|
|
|
|
from .downloader import get_suitable_downloader
|
2013-08-01 05:32:46 +09:00
|
|
|
|
2013-05-24 04:42:03 +09:00
|
|
|
|
2013-09-24 00:59:27 +09:00
|
|
|
# This class reproduces the old behaviour of FileDownloader
|
|
|
|
class FileDownloader(RealFileDownloader):
|
2012-11-28 10:04:46 +09:00
|
|
|
def _do_download(self, filename, info_dict):
|
2013-09-24 00:59:27 +09:00
|
|
|
real_fd = get_suitable_downloader(info_dict)(self.ydl, self.params)
|
2013-01-13 04:34:50 +09:00
|
|
|
for ph in self._progress_hooks:
|
2013-09-24 00:59:27 +09:00
|
|
|
real_fd.add_progress_hook(ph)
|
|
|
|
return real_fd.download(filename, info_dict)
|