1
0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2025-04-16 11:59:46 +00:00
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, --retries RETRIES number of retries (default is 10)
--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
### Video Selection:
@ -28,7 +28,7 @@ which means you can modify it, redistribute it or use it however you like.
sub-string)
--reject-title REGEX skip download for matching titles (regex or
caseless sub-string)
--max-downloads NUMBER Abort after downloading NUMBER files
--max-downloads NUMBER download a maximum of NUMBER files
### Filesystem Options:
-t, --title use title in file name

View File

@ -4017,7 +4017,7 @@ def parseOpts():
help='display the current browser identification', default=False)
general.add_option('--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',
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)
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('--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',
dest='username', metavar='USERNAME', help='account username')