logo

youtube-dl

[mirror] Download/Watch videos from video hosters
commit: 8ec2b2c41c7f3952ad9097085993d1f24f6b6776
parent 197a5da1d01179f6a2d60e3c2017b0070e5abc8b
Author: Sergey M․ <dstftw@gmail.com>
Date:   Mon, 30 May 2016 21:48:35 +0700

[options] Add --limit-rate alias for rate limiting option

Closes #9644
In order to follow regular --verb-noun pattern and better conformity with wget and curl

Diffstat:

Myoutube_dl/options.py4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/youtube_dl/options.py b/youtube_dl/options.py @@ -395,8 +395,8 @@ def parseOpts(overrideArguments=None): downloader = optparse.OptionGroup(parser, 'Download Options') downloader.add_option( - '-r', '--rate-limit', - dest='ratelimit', metavar='LIMIT', + '-r', '--limit-rate', '--rate-limit', + dest='ratelimit', metavar='RATE', help='Maximum download rate in bytes per second (e.g. 50K or 4.2M)') downloader.add_option( '-R', '--retries',