diff options
author | Ching Yi, Chan <chingyichan.tw@gmail.com> | 2014-10-12 08:32:26 +0800 |
---|---|---|
committer | Ching Yi, Chan <chingyichan.tw@gmail.com> | 2014-10-12 08:32:26 +0800 |
commit | b1c3a49fffb7109125a2ad215f412f1198e3dffd (patch) | |
tree | cfd508892e1b3780f37a9a6c6d459a04c53bf214 | |
parent | 3357110a4c26b9a8410ec47055f0d86ce30d4f3d (diff) |
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 b3be16ff1..54dd6ac3f 100644 --- a/youtube_dl/downloader/f4m.py +++ b/youtube_dl/downloader/f4m.py @@ -230,6 +230,7 @@ class F4mFD(FileDownloader): 'continuedl': True, 'quiet': True, 'noprogress': True, + 'ratelimit': self.params.get('ratelimit', None), 'test': self.params.get('test', False), }) |