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