about summary refs log tree commit diff
path: root/youtube_dl/downloader
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2019-02-23 00:58:56 +0700
committerSergey M․ <dstftw@gmail.com>2019-02-23 01:00:03 +0700
commit8c80603f1adea843d96c0598b902106c7a3efb7f (patch)
tree10606912241e82c78aaab2f13b170e2d001e37c9 /youtube_dl/downloader
parent37b239b3b66ea9e2a71bae41e9da6dba8ee5554c (diff)
downloadyoutube-dl-8c80603f1adea843d96c0598b902106c7a3efb7f.tar.gz
youtube-dl-8c80603f1adea843d96c0598b902106c7a3efb7f.tar.xz
youtube-dl-8c80603f1adea843d96c0598b902106c7a3efb7f.zip
[downloader/external] Add support for rate limit and retries for wget
Diffstat (limited to 'youtube_dl/downloader')
-rw-r--r--youtube_dl/downloader/external.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/youtube_dl/downloader/external.py b/youtube_dl/downloader/external.py
index 0b88bfd94..22e6093b3 100644
--- a/youtube_dl/downloader/external.py
+++ b/youtube_dl/downloader/external.py
@@ -164,6 +164,12 @@ 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._option('--limit-rate', 'ratelimit')
+        retry = self._option('--tries', 'retries')
+        if len(retry) == 2:
+            if retry[1] in ('inf', 'infinite'):
+                retry[1] = '0'
+            cmd += retry
         cmd += self._option('--bind-address', 'source_address')
         cmd += self._option('--proxy', 'proxy')
         cmd += self._valueless_option('--no-check-certificate', 'nocheckcertificate')