diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2015-01-24 01:38:48 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2015-01-24 01:38:48 +0100 |
commit | 222516d97d5ff9e62f3a9860fe2e65aa99c001b3 (patch) | |
tree | aefcc3ec30eb99616bde4d5c50a2f8ac2734704b /youtube_dl/__init__.py | |
parent | a055469fafe088b6aa0e569d989cbf7f70535951 (diff) |
[downloader] Lay groundwork for external downloaders.
This comes with a very simply implementation for wget; the real work is in setting up the infrastructure.
Diffstat (limited to 'youtube_dl/__init__.py')
-rw-r--r-- | youtube_dl/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/youtube_dl/__init__.py b/youtube_dl/__init__.py index 7bd7295e2..3fc7dc5c2 100644 --- a/youtube_dl/__init__.py +++ b/youtube_dl/__init__.py @@ -330,6 +330,7 @@ def _real_main(argv=None): 'source_address': opts.source_address, 'call_home': opts.call_home, 'sleep_interval': opts.sleep_interval, + 'external_downloader': opts.external_downloader, } with YoutubeDL(ydl_opts) as ydl: |