aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Verhagen <joel.verhagen@gmail.com>2012-07-16 10:59:21 -0400
committerJoel Verhagen <joel.verhagen@gmail.com>2012-07-16 10:59:21 -0400
commitaab4fca4225d1d7935154486b72c3edf73ecf77a (patch)
treedc1b51fcc38a35a87361a6e44c4f8142d54f4e69
parent891d7f232959f85810011fe32b107a0dfd5db85b (diff)
downloadyoutube-dl-aab4fca4225d1d7935154486b72c3edf73ecf77a.tar.xz
Updated --no-resize-buffer docs, removed -b option
-rw-r--r--README.md6
-rwxr-xr-xyoutube-dlbin40754 -> 40781 bytes
-rwxr-xr-xyoutube-dl.exebin3989797 -> 3989826 bytes
-rw-r--r--youtube_dl/__init__.py4
4 files changed, 6 insertions, 4 deletions
diff --git a/README.md b/README.md
index fc9c1a6b8..0d0552a47 100644
--- a/README.md
+++ b/README.md
@@ -17,9 +17,11 @@ which means you can modify it, redistribute it or use it however you like.
-i, --ignore-errors continue on download errors
-r, --rate-limit LIMIT download rate limit (e.g. 50k or 44.6m)
-R, --retries RETRIES number of retries (default is 10)
- -b, --buffer-size SIZE size of download buffer (e.g. 1024 or 16k) (default
+ --buffer-size SIZE size of download buffer (e.g. 1024 or 16k) (default
is 1024)
- --no-resize-buffer do not automatically adjust the buffer size
+ --no-resize-buffer do not automatically adjust the buffer size. By
+ default, the buffer size is automatically resized
+ from an initial value of SIZE.
--dump-user-agent display the current browser identification
--list-extractors List all supported extractors and the URLs they
would handle
diff --git a/youtube-dl b/youtube-dl
index 6e6932b52..f615f6f9b 100755
--- a/youtube-dl
+++ b/youtube-dl
Binary files differ
diff --git a/youtube-dl.exe b/youtube-dl.exe
index 4ff820dc8..f74249a20 100755
--- a/youtube-dl.exe
+++ b/youtube-dl.exe
Binary files differ
diff --git a/youtube_dl/__init__.py b/youtube_dl/__init__.py
index 7983b24eb..15f835a31 100644
--- a/youtube_dl/__init__.py
+++ b/youtube_dl/__init__.py
@@ -187,11 +187,11 @@ def parseOpts():
dest='ratelimit', metavar='LIMIT', help='download rate limit (e.g. 50k or 44.6m)')
general.add_option('-R', '--retries',
dest='retries', metavar='RETRIES', help='number of retries (default is 10)', default=10)
- general.add_option('-b', '--buffer-size',
+ general.add_option('--buffer-size',
dest='buffersize', metavar='SIZE', help='size of download buffer (e.g. 1024 or 16k) (default is 1024)', default="1024")
general.add_option('--no-resize-buffer',
action='store_true', dest='noresizebuffer',
- help='do not automatically adjust the buffer size', default=False)
+ 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',
action='store_true', dest='dump_user_agent',
help='display the current browser identification', default=False)