Updated --no-resize-buffer docs, removed -b option
authorJoel Verhagen <joel.verhagen@gmail.com>
Mon, 16 Jul 2012 14:59:21 +0000 (10:59 -0400)
committerJoel Verhagen <joel.verhagen@gmail.com>
Mon, 16 Jul 2012 14:59:21 +0000 (10:59 -0400)
README.md
youtube-dl
youtube-dl.exe
youtube_dl/__init__.py

index fc9c1a6b8ce620f3b9a58d90d721d53ba8993af5..0d0552a47776312154700efe4d2ec941d8414058 100644 (file)
--- 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
index 6e6932b52115b7f78abee4dbce6ee0341f904171..f615f6f9b26ca8f9a9bed874859722620cc7eef7 100755 (executable)
Binary files a/youtube-dl and b/youtube-dl differ
index 4ff820dc852e47f5219bdbf1355c9f73795cd086..f74249a2088d1dfc6364374d3703a3e0c2057ed7 100755 (executable)
Binary files a/youtube-dl.exe and b/youtube-dl.exe differ
index 7983b24eb0a02a9c2671eeb279a006dd8325bf02..15f835a31eb2cd839d2c7fe9fe1c14a2b73cd93c 100644 (file)
@@ -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)