mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 09:07:58 +01:00
[downloader/external] Forward --proxy to wget and aria2c
This commit is contained in:
parent
b1ac38fadc
commit
bf812ef714
1 changed files with 10 additions and 0 deletions
|
@ -51,6 +51,14 @@ def _source_address(self, command_option):
|
||||||
return []
|
return []
|
||||||
return [command_option, source_address]
|
return [command_option, source_address]
|
||||||
|
|
||||||
|
def _option(self, command_option, param):
|
||||||
|
param = self.params.get(param)
|
||||||
|
if param is None:
|
||||||
|
return []
|
||||||
|
if isinstance(param, bool):
|
||||||
|
return [command_option]
|
||||||
|
return [command_option, param]
|
||||||
|
|
||||||
def _no_check_certificate(self, command_option):
|
def _no_check_certificate(self, command_option):
|
||||||
return [command_option] if self.params.get('nocheckcertificate', False) else []
|
return [command_option] if self.params.get('nocheckcertificate', False) else []
|
||||||
|
|
||||||
|
@ -102,6 +110,7 @@ def _make_cmd(self, tmpfilename, info_dict):
|
||||||
for key, val in info_dict['http_headers'].items():
|
for key, val in info_dict['http_headers'].items():
|
||||||
cmd += ['--header', '%s: %s' % (key, val)]
|
cmd += ['--header', '%s: %s' % (key, val)]
|
||||||
cmd += self._source_address('--bind-address')
|
cmd += self._source_address('--bind-address')
|
||||||
|
cmd += self._option('--proxy', 'proxy')
|
||||||
cmd += self._no_check_certificate('--no-check-certificate')
|
cmd += self._no_check_certificate('--no-check-certificate')
|
||||||
cmd += self._configuration_args()
|
cmd += self._configuration_args()
|
||||||
cmd += ['--', info_dict['url']]
|
cmd += ['--', info_dict['url']]
|
||||||
|
@ -120,6 +129,7 @@ def _make_cmd(self, tmpfilename, info_dict):
|
||||||
for key, val in info_dict['http_headers'].items():
|
for key, val in info_dict['http_headers'].items():
|
||||||
cmd += ['--header', '%s: %s' % (key, val)]
|
cmd += ['--header', '%s: %s' % (key, val)]
|
||||||
cmd += self._source_address('--interface')
|
cmd += self._source_address('--interface')
|
||||||
|
cmd += self._option('--all-proxy', 'proxy')
|
||||||
cmd += ['--', info_dict['url']]
|
cmd += ['--', info_dict['url']]
|
||||||
return cmd
|
return cmd
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue