1
0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2025-05-05 21:27:31 +00:00

Merge 3d04c50899b822bf8d00091796f9bdd1df81b9df into 94fd3201b237b2a1d04e06dd7fb5ea4130bddded

This commit is contained in:
GitHub Merge Button 2011-12-08 11:59:08 -08:00
commit f9b731ef12
2 changed files with 4 additions and 4 deletions

View File

@ -18,7 +18,7 @@ which means you can modify it, redistribute it or use it however you like.
-r, --rate-limit LIMIT download rate limit (e.g. 50k or 44.6m) -r, --rate-limit LIMIT download rate limit (e.g. 50k or 44.6m)
-R, --retries RETRIES number of retries (default is 10) -R, --retries RETRIES number of retries (default is 10)
--dump-user-agent display the current browser identification --dump-user-agent display the current browser identification
--list-extractors List all supported extractors and the URLs they --list-extractors list all supported extractors and the URLs they
would handle would handle
### Video Selection: ### Video Selection:
@ -28,7 +28,7 @@ which means you can modify it, redistribute it or use it however you like.
sub-string) sub-string)
--reject-title REGEX skip download for matching titles (regex or --reject-title REGEX skip download for matching titles (regex or
caseless sub-string) caseless sub-string)
--max-downloads NUMBER Abort after downloading NUMBER files --max-downloads NUMBER download a maximum of NUMBER files
### Filesystem Options: ### Filesystem Options:
-t, --title use title in file name -t, --title use title in file name

View File

@ -4017,7 +4017,7 @@ def parseOpts():
help='display the current browser identification', default=False) help='display the current browser identification', default=False)
general.add_option('--list-extractors', general.add_option('--list-extractors',
action='store_true', dest='list_extractors', action='store_true', dest='list_extractors',
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)
selection.add_option('--playlist-start', selection.add_option('--playlist-start',
dest='playliststart', metavar='NUMBER', help='playlist video to start at (default is 1)', default=1) dest='playliststart', metavar='NUMBER', help='playlist video to start at (default is 1)', default=1)
@ -4025,7 +4025,7 @@ def parseOpts():
dest='playlistend', metavar='NUMBER', help='playlist video to end at (default is last)', default=-1) dest='playlistend', metavar='NUMBER', help='playlist video to end at (default is last)', default=-1)
selection.add_option('--match-title', dest='matchtitle', metavar='REGEX',help='download only matching titles (regex or caseless sub-string)') selection.add_option('--match-title', dest='matchtitle', metavar='REGEX',help='download only matching titles (regex or caseless sub-string)')
selection.add_option('--reject-title', dest='rejecttitle', metavar='REGEX',help='skip download for matching titles (regex or caseless sub-string)') selection.add_option('--reject-title', dest='rejecttitle', metavar='REGEX',help='skip download for matching titles (regex or caseless sub-string)')
selection.add_option('--max-downloads', metavar='NUMBER', dest='max_downloads', help='Abort after downloading NUMBER files', default=None) selection.add_option('--max-downloads', metavar='NUMBER', dest='max_downloads', help='download a maximum of NUMBER files', default=None)
authentication.add_option('-u', '--username', authentication.add_option('-u', '--username',
dest='username', metavar='USERNAME', help='account username') dest='username', metavar='USERNAME', help='account username')