diff options
| author | Philipp Hagemeister <phihag@phihag.de> | 2014-12-13 12:59:12 +0100 | 
|---|---|---|
| committer | Philipp Hagemeister <phihag@phihag.de> | 2014-12-13 12:59:12 +0100 | 
| commit | 2f15832f569834a37ac3ee6140a3b997407c04cd (patch) | |
| tree | 3dadb413cc283833846915f7469e8b6e1b31b781 | |
| parent | 1557ed153c42176335f2ef069661ef2c98f16ce4 (diff) | |
| parent | b1c3a49fffb7109125a2ad215f412f1198e3dffd (diff) | |
Merge pull request #3927 from qrtt1/master
apply ratelimit to f4m
| -rw-r--r-- | youtube_dl/downloader/f4m.py | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/youtube_dl/downloader/f4m.py b/youtube_dl/downloader/f4m.py index 00f3a026c..ef3e0d5f4 100644 --- a/youtube_dl/downloader/f4m.py +++ b/youtube_dl/downloader/f4m.py @@ -233,6 +233,7 @@ class F4mFD(FileDownloader):                  'continuedl': True,                  'quiet': True,                  'noprogress': True, +                'ratelimit': self.params.get('ratelimit', None),                  'test': self.params.get('test', False),              }          ) | 
