release 2014.07.25

This commit is contained in:
Philipp Hagemeister 2014-07-25 07:05:17 +02:00
parent 4cb71e9b6a
commit 36f3542883
2 changed files with 32 additions and 28 deletions

View File

@ -38,12 +38,6 @@ # OPTIONS
playlist or the command line) if an error playlist or the command line) if an error
occurs occurs
--dump-user-agent display the current browser identification --dump-user-agent display the current browser identification
--user-agent UA specify a custom user agent
--referer REF specify a custom referer, use if the video
access is restricted to one domain
--add-header FIELD:VALUE specify a custom HTTP header and its value,
separated by a colon ':'. You can use this
option multiple times
--list-extractors List all supported extractors and the URLs --list-extractors List all supported extractors and the URLs
they would handle they would handle
--extractor-descriptions Output descriptions of all supported --extractor-descriptions Output descriptions of all supported
@ -51,18 +45,6 @@ # OPTIONS
--proxy URL Use the specified HTTP/HTTPS proxy. Pass in --proxy URL Use the specified HTTP/HTTPS proxy. Pass in
an empty string (--proxy "") for direct an empty string (--proxy "") for direct
connection connection
--no-check-certificate Suppress HTTPS certificate validation.
--prefer-insecure Use an unencrypted connection to retrieve
information about the video. (Currently
supported only for YouTube)
--cache-dir DIR Location in the filesystem where youtube-dl
can store some downloaded information
permanently. By default $XDG_CACHE_HOME
/youtube-dl or ~/.cache/youtube-dl . At the
moment, only YouTube player files (for
videos with obfuscated signatures) are
cached, but that may change.
--no-cache-dir Disable filesystem caching
--socket-timeout None Time to wait before giving up, in seconds --socket-timeout None Time to wait before giving up, in seconds
--bidi-workaround Work around terminals that lack --bidi-workaround Work around terminals that lack
bidirectional text support. Requires bidiv bidirectional text support. Requires bidiv
@ -79,7 +61,6 @@ # OPTIONS
configuration in ~/.config/youtube-dl.conf configuration in ~/.config/youtube-dl.conf
(%APPDATA%/youtube-dl/config.txt on (%APPDATA%/youtube-dl/config.txt on
Windows) Windows)
--encoding ENCODING Force the specified encoding (experimental)
## Video Selection: ## Video Selection:
--playlist-start NUMBER playlist video to start at (default is 1) --playlist-start NUMBER playlist video to start at (default is 1)
@ -125,9 +106,9 @@ ## Download Options:
of SIZE. of SIZE.
## Filesystem Options: ## Filesystem Options:
-t, --title use title in file name (default) -a, --batch-file FILE file containing URLs to download ('-' for
stdin)
--id use only video ID in file name --id use only video ID in file name
-l, --literal [deprecated] alias of --title
-A, --auto-number number downloaded files starting from 00000 -A, --auto-number number downloaded files starting from 00000
-o, --output TEMPLATE output filename template. Use %(title)s to -o, --output TEMPLATE output filename template. Use %(title)s to
get the title, %(uploader)s for the get the title, %(uploader)s for the
@ -160,18 +141,15 @@ ## Filesystem Options:
--restrict-filenames Restrict filenames to only ASCII --restrict-filenames Restrict filenames to only ASCII
characters, and avoid "&" and spaces in characters, and avoid "&" and spaces in
filenames filenames
-a, --batch-file FILE file containing URLs to download ('-' for -t, --title [deprecated] use title in file name
stdin) (default)
--load-info FILE json file containing the video information -l, --literal [deprecated] alias of --title
(created with the "--write-json" option)
-w, --no-overwrites do not overwrite files -w, --no-overwrites do not overwrite files
-c, --continue force resume of partially downloaded files. -c, --continue force resume of partially downloaded files.
By default, youtube-dl will resume By default, youtube-dl will resume
downloads if possible. downloads if possible.
--no-continue do not resume partially downloaded files --no-continue do not resume partially downloaded files
(restart from beginning) (restart from beginning)
--cookies FILE file to read cookies from and dump cookie
jar in
--no-part do not use .part files --no-part do not use .part files
--no-mtime do not use the Last-modified header to set --no-mtime do not use the Last-modified header to set
the file modification time the file modification time
@ -181,6 +159,19 @@ ## Filesystem Options:
--write-annotations write video annotations to a .annotation --write-annotations write video annotations to a .annotation
file file
--write-thumbnail write thumbnail image to disk --write-thumbnail write thumbnail image to disk
--load-info FILE json file containing the video information
(created with the "--write-json" option)
--cookies FILE file to read cookies from and dump cookie
jar in
--cache-dir DIR Location in the filesystem where youtube-dl
can store some downloaded information
permanently. By default $XDG_CACHE_HOME
/youtube-dl or ~/.cache/youtube-dl . At the
moment, only YouTube player files (for
videos with obfuscated signatures) are
cached, but that may change.
--no-cache-dir Disable filesystem caching
--rm-cache-dir Delete all filesystem cache files
## Verbosity / Simulation Options: ## Verbosity / Simulation Options:
-q, --quiet activates quiet mode -q, --quiet activates quiet mode
@ -210,6 +201,19 @@ ## Verbosity / Simulation Options:
problems problems
--print-traffic Display sent and read HTTP traffic --print-traffic Display sent and read HTTP traffic
## Workarounds:
--encoding ENCODING Force the specified encoding (experimental)
--no-check-certificate Suppress HTTPS certificate validation.
--prefer-insecure Use an unencrypted connection to retrieve
information about the video. (Currently
supported only for YouTube)
--user-agent UA specify a custom user agent
--referer REF specify a custom referer, use if the video
access is restricted to one domain
--add-header FIELD:VALUE specify a custom HTTP header and its value,
separated by a colon ':'. You can use this
option multiple times
## Video Format Options: ## Video Format Options:
-f, --format FORMAT video format code, specify the order of -f, --format FORMAT video format code, specify the order of
preference using slashes: "-f 22/17/18". preference using slashes: "-f 22/17/18".

View File

@ -1,2 +1,2 @@
__version__ = '2014.07.24' __version__ = '2014.07.25'