X-Git-Url: http://git.cielonegro.org/gitweb.cgi?a=blobdiff_plain;f=README.md;h=d795ef6f28aa8a3cbc9e7d6c21ce3bc6958aa8de;hb=c4db377cbb25c35c0e9df95f275d439cff75a770;hp=5b6626374d0fcee9c826fbea20c7b73dcc42685d;hpb=780083dbc6b1377c69c81aa5b4e794699fcb39ed;p=youtube-dl.git diff --git a/README.md b/README.md index 5b6626374..d795ef6f2 100644 --- a/README.md +++ b/README.md @@ -83,6 +83,8 @@ which means you can modify it, redistribute it or use it however you like. downloaded videos in it. --include-ads Download advertisements as well (experimental) + --youtube-include-dash-manifest Try to download the DASH manifest on + YouTube videos (experimental) ## Download Options: -r, --rate-limit LIMIT maximum download rate in bytes per second @@ -150,8 +152,6 @@ which means you can modify it, redistribute it or use it however you like. --write-thumbnail write thumbnail image to disk ## Verbosity / Simulation Options: - --youtube-include-dash-manifest Try to download the DASH manifest on - YouTube videos (experimental) -q, --quiet activates quiet mode -s, --simulate do not download the video and do not write anything to disk @@ -181,7 +181,9 @@ which means you can modify it, redistribute it or use it however you like. preference using slashes: "-f 22/17/18". "-f mp4" and "-f flv" are also supported. You can also use the special names "best", - "bestaudio", "worst", and "worstaudio" + "bestaudio", "worst", and "worstaudio". By + default, youtube-dl will pick the best + quality. --all-formats download all available video formats --prefer-free-formats prefer free video formats unless a specific one is requested @@ -323,11 +325,27 @@ Since June 2012 (#342) youtube-dl is packed as an executable zipfile, simply unz To run the exe you need to install first the [Microsoft Visual C++ 2008 Redistributable Package](http://www.microsoft.com/en-us/download/details.aspx?id=29). -# COPYRIGHT +# BUILD INSTRUCTIONS -youtube-dl is released into the public domain by the copyright holders. +Most users do not need to build youtube-dl and can [download the builds](http://rg3.github.io/youtube-dl/download.html) or get them from their distribution. -This README file was originally written by Daniel Bolton () and is likewise released into the public domain. +To run youtube-dl as a developer, you don't need to build anything either. Simply execute + + python -m youtube_dl + +To run the test, simply invoke your favorite test runner, or execute a test file directly; any of the following work: + + python -m unittest discover + python test/test_download.py + nosetests + +If you want to create a build of youtube-dl yourself, you'll need + +* python +* make +* pandoc +* zip +* nosetests # BUGS @@ -386,3 +404,9 @@ Only post features that you (or an incapicated friend you can personally talk to ### Is your question about youtube-dl? It may sound strange, but some bug reports we receive are completely unrelated to youtube-dl and relate to a different or even the reporter's own application. Please make sure that you are actually using youtube-dl. If you are using a UI for youtube-dl, report the bug to the maintainer of the actual application providing the UI. On the other hand, if your UI for youtube-dl fails in some way you believe is related to youtube-dl, by all means, go ahead and report the bug. + +# COPYRIGHT + +youtube-dl is released into the public domain by the copyright holders. + +This README file was originally written by Daniel Bolton () and is likewise released into the public domain.