X-Git-Url: http://git.cielonegro.org/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=youtube_dl%2Fdownloader%2Fexternal.py;h=ff031d2e04253b775e517347866fe3ee75a666c6;hb=9e91449c8d1dae53eda6fb250384f0afa5122ce6;hp=af9fdba7500e2cd14d7c571688249cdd8dd5c1a8;hpb=e5660ee6aebacee4b149648bee1a7ce1ec72c1e4;p=youtube-dl.git diff --git a/youtube_dl/downloader/external.py b/youtube_dl/downloader/external.py index af9fdba75..ff031d2e0 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): + source_address = self.params.get('source_address') + if source_address is None: + return [] + return [command_option, source_address] + 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