1
0
mirror of https://github.com/l1ving/youtube-dl synced 2025-02-04 02:36:04 +08:00

Fix bytes options option definition

This commit is contained in:
FooBarQuaxx 2016-11-18 23:09:23 +03:00
parent e42b8ebbd4
commit cd51a4b508

View File

@ -273,12 +273,12 @@ def parseOpts(overrideArguments=None):
selection.add_option( selection.add_option(
'--min-filesize', '--min-filesize',
metavar='SIZE', dest='min_filesize', default=None, metavar='SIZE', dest='min_filesize', default=None,
action='callback', callback=_bytes_option_callback, type=str, action='callback', callback=_bytes_option_callback,
help='Do not download any videos smaller than SIZE (e.g. 50k or 44.6m)') help='Do not download any videos smaller than SIZE (e.g. 50k or 44.6m)')
selection.add_option( selection.add_option(
'--max-filesize', '--max-filesize',
metavar='SIZE', dest='max_filesize', default=None, metavar='SIZE', dest='max_filesize', default=None,
action='callback', callback=_bytes_option_callback, type=str, action='callback', callback=_bytes_option_callback,
help='Do not download any videos larger than SIZE (e.g. 50k or 44.6m)') help='Do not download any videos larger than SIZE (e.g. 50k or 44.6m)')
selection.add_option( selection.add_option(
'--date', '--date',
@ -444,7 +444,7 @@ def parseOpts(overrideArguments=None):
downloader.add_option( downloader.add_option(
'-r', '--limit-rate', '--rate-limit', '-r', '--limit-rate', '--rate-limit',
dest='ratelimit', metavar='RATE', dest='ratelimit', metavar='RATE',
action='callback', callback=_bytes_option_callback, type=str, action='callback', callback=_bytes_option_callback,
help='Maximum download rate in bytes per second (e.g. 50K or 4.2M)') help='Maximum download rate in bytes per second (e.g. 50K or 4.2M)')
downloader.add_option( downloader.add_option(
'-R', '--retries', '-R', '--retries',
@ -465,7 +465,7 @@ def parseOpts(overrideArguments=None):
downloader.add_option( downloader.add_option(
'--buffer-size', '--buffer-size',
dest='buffersize', metavar='SIZE', default='1024', dest='buffersize', metavar='SIZE', default='1024',
action='callback', callback=_bytes_option_callback, type=str, action='callback', callback=_bytes_option_callback,
help='Size of download buffer (e.g. 1024 or 16K) (default is %default)') help='Size of download buffer (e.g. 1024 or 16K) (default is %default)')
downloader.add_option( downloader.add_option(
'--no-resize-buffer', '--no-resize-buffer',