Separate downloader options
This commit is contained in:
		
							parent
							
								
									f9bd64c098
								
							
						
					
					
						commit
						0beb3add18
					
				| @ -118,6 +118,7 @@ def parseOpts(overrideArguments=None): | |||||||
|     selection      = optparse.OptionGroup(parser, 'Video Selection') |     selection      = optparse.OptionGroup(parser, 'Video Selection') | ||||||
|     authentication = optparse.OptionGroup(parser, 'Authentication Options') |     authentication = optparse.OptionGroup(parser, 'Authentication Options') | ||||||
|     video_format   = optparse.OptionGroup(parser, 'Video Format Options') |     video_format   = optparse.OptionGroup(parser, 'Video Format Options') | ||||||
|  |     downloader     = optparse.OptionGroup(parser, 'Download Options') | ||||||
|     postproc       = optparse.OptionGroup(parser, 'Post-processing Options') |     postproc       = optparse.OptionGroup(parser, 'Post-processing Options') | ||||||
|     filesystem     = optparse.OptionGroup(parser, 'Filesystem Options') |     filesystem     = optparse.OptionGroup(parser, 'Filesystem Options') | ||||||
|     verbosity      = optparse.OptionGroup(parser, 'Verbosity / Simulation Options') |     verbosity      = optparse.OptionGroup(parser, 'Verbosity / Simulation Options') | ||||||
| @ -130,15 +131,6 @@ def parseOpts(overrideArguments=None): | |||||||
|             action='store_true', dest='update_self', help='update this program to latest version') |             action='store_true', dest='update_self', help='update this program to latest version') | ||||||
|     general.add_option('-i', '--ignore-errors', |     general.add_option('-i', '--ignore-errors', | ||||||
|             action='store_true', dest='ignoreerrors', help='continue on download errors', default=False) |             action='store_true', dest='ignoreerrors', help='continue on download errors', default=False) | ||||||
|     general.add_option('-r', '--rate-limit', |  | ||||||
|             dest='ratelimit', metavar='LIMIT', help='maximum download rate (e.g. 50k or 44.6m)') |  | ||||||
|     general.add_option('-R', '--retries', |  | ||||||
|             dest='retries', metavar='RETRIES', help='number of retries (default is %default)', default=10) |  | ||||||
|     general.add_option('--buffer-size', |  | ||||||
|             dest='buffersize', metavar='SIZE', help='size of download buffer (e.g. 1024 or 16k) (default is %default)', default="1024") |  | ||||||
|     general.add_option('--no-resize-buffer', |  | ||||||
|             action='store_true', dest='noresizebuffer', |  | ||||||
|             help='do not automatically adjust the buffer size. By default, the buffer size is automatically resized from an initial value of SIZE.', default=False) |  | ||||||
|     general.add_option('--dump-user-agent', |     general.add_option('--dump-user-agent', | ||||||
|             action='store_true', dest='dump_user_agent', |             action='store_true', dest='dump_user_agent', | ||||||
|             help='display the current browser identification', default=False) |             help='display the current browser identification', default=False) | ||||||
| @ -152,7 +144,7 @@ def parseOpts(overrideArguments=None): | |||||||
|             help='List all supported extractors and the URLs they would handle', default=False) |             help='List all supported extractors and the URLs they would handle', default=False) | ||||||
|     general.add_option('--proxy', dest='proxy', default=None, help='Use the specified HTTP/HTTPS proxy', metavar='URL') |     general.add_option('--proxy', dest='proxy', default=None, help='Use the specified HTTP/HTTPS proxy', metavar='URL') | ||||||
|     general.add_option('--no-check-certificate', action='store_true', dest='no_check_certificate', default=False, help='Suppress HTTPS certificate validation.') |     general.add_option('--no-check-certificate', action='store_true', dest='no_check_certificate', default=False, help='Suppress HTTPS certificate validation.') | ||||||
|     general.add_option('--test', action='store_true', dest='test', default=False, help=optparse.SUPPRESS_HELP) | 
 | ||||||
| 
 | 
 | ||||||
|     selection.add_option('--playlist-start', |     selection.add_option('--playlist-start', | ||||||
|             dest='playliststart', metavar='NUMBER', help='playlist video to start at (default is %default)', default=1) |             dest='playliststart', metavar='NUMBER', help='playlist video to start at (default is %default)', default=1) | ||||||
| @ -211,6 +203,17 @@ def parseOpts(overrideArguments=None): | |||||||
|             action='store', dest='subtitleslang', metavar='LANG', |             action='store', dest='subtitleslang', metavar='LANG', | ||||||
|             help='language of the subtitles to download (optional) use IETF language tags like \'en\'') |             help='language of the subtitles to download (optional) use IETF language tags like \'en\'') | ||||||
| 
 | 
 | ||||||
|  |     downloader.add_option('-r', '--rate-limit', | ||||||
|  |             dest='ratelimit', metavar='LIMIT', help='maximum download rate (e.g. 50k or 44.6m)') | ||||||
|  |     downloader.add_option('-R', '--retries', | ||||||
|  |             dest='retries', metavar='RETRIES', help='number of retries (default is %default)', default=10) | ||||||
|  |     downloader.add_option('--buffer-size', | ||||||
|  |             dest='buffersize', metavar='SIZE', help='size of download buffer (e.g. 1024 or 16k) (default is %default)', default="1024") | ||||||
|  |     downloader.add_option('--no-resize-buffer', | ||||||
|  |             action='store_true', dest='noresizebuffer', | ||||||
|  |             help='do not automatically adjust the buffer size. By default, the buffer size is automatically resized from an initial value of SIZE.', default=False) | ||||||
|  |     downloader.add_option('--test', action='store_true', dest='test', default=False, help=optparse.SUPPRESS_HELP) | ||||||
|  | 
 | ||||||
|     verbosity.add_option('-q', '--quiet', |     verbosity.add_option('-q', '--quiet', | ||||||
|             action='store_true', dest='quiet', help='activates quiet mode', default=False) |             action='store_true', dest='quiet', help='activates quiet mode', default=False) | ||||||
|     verbosity.add_option('-s', '--simulate', |     verbosity.add_option('-s', '--simulate', | ||||||
| @ -317,6 +320,7 @@ def parseOpts(overrideArguments=None): | |||||||
| 
 | 
 | ||||||
|     parser.add_option_group(general) |     parser.add_option_group(general) | ||||||
|     parser.add_option_group(selection) |     parser.add_option_group(selection) | ||||||
|  |     parser.add_option_group(downloader) | ||||||
|     parser.add_option_group(filesystem) |     parser.add_option_group(filesystem) | ||||||
|     parser.add_option_group(verbosity) |     parser.add_option_group(verbosity) | ||||||
|     parser.add_option_group(video_format) |     parser.add_option_group(video_format) | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user