summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M. <dstftw@gmail.com>2015-02-02 21:38:22 +0600
committerSergey M. <dstftw@gmail.com>2015-02-02 21:38:22 +0600
commitaae3fdcfae5deca9343fcfd6b3b76aac8420ac23 (patch)
tree82ddb3e6ae06416135a93563c99628b4a3df5837
parent78271e33197e56452dc60f075bd326cb908e8e7f (diff)
parent6a66904f8ed469a547d8781fd61b26a97a6ae7aa (diff)
downloadyoutube-dl-aae3fdcfae5deca9343fcfd6b3b76aac8420ac23.tar.gz
youtube-dl-aae3fdcfae5deca9343fcfd6b3b76aac8420ac23.tar.xz
youtube-dl-aae3fdcfae5deca9343fcfd6b3b76aac8420ac23.zip
Merge pull request #4845 from vijayanandnandam/master
Passing source address option to external downloaders
-rw-r--r--youtube_dl/downloader/external.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/youtube_dl/downloader/external.py b/youtube_dl/downloader/external.py
index af9fdba75..3d6554fe4 100644
--- a/youtube_dl/downloader/external.py
+++ b/youtube_dl/downloader/external.py
@@ -45,6 +45,12 @@ class ExternalFD(FileDownloader):
     def supports(cls, info_dict):
         return info_dict['protocol'] in ('http', 'https', 'ftp', 'ftps')
 
+    def _source_address(self, command_option):
+        command_part = []
+        if self.ydl.params['source_address'] is not None:
+            command_part = [command_option, self.ydl.params['source_address']]
+        return command_part
+
     def _call_downloader(self, tmpfilename, info_dict):
         """ Either overwrite this or implement _make_cmd """
         cmd = self._make_cmd(tmpfilename, info_dict)
@@ -72,6 +78,7 @@ class CurlFD(ExternalFD):
         cmd = [self.exe, '-o', tmpfilename]
         for key, val in info_dict['http_headers'].items():
             cmd += ['--header', '%s: %s' % (key, val)]
+        cmd += self._source_address('--interface')
         cmd += ['--', info_dict['url']]
         return cmd
 
@@ -81,6 +88,7 @@ class WgetFD(ExternalFD):
         cmd = [self.exe, '-O', tmpfilename, '-nv', '--no-cookies']
         for key, val in info_dict['http_headers'].items():
             cmd += ['--header', '%s: %s' % (key, val)]
+        cmd += self._source_address('--bind-address')
         cmd += ['--', info_dict['url']]
         return cmd
 
@@ -96,6 +104,7 @@ class Aria2cFD(ExternalFD):
         cmd += ['--out', os.path.basename(tmpfilename)]
         for key, val in info_dict['http_headers'].items():
             cmd += ['--header', '%s: %s' % (key, val)]
+        cmd += self._source_address('--interface')
         cmd += ['--', info_dict['url']]
         return cmd