youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 6be16ed24bba86c0bb22a3eca6640e727153f1fd
parent b555942428726bd619744a208b5e6cfceb99d8d9
Author: Sergey M <dstftw@gmail.com>
Date:   Sat, 16 Jan 2016 10:15:24 +0600

[README.md] Add protocol usage example in format selection
Diffstat:
MREADME.md | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/README.md b/README.md @@ -529,6 +529,9 @@ $ youtube-dl -f 'bestvideo[height<=480]+bestaudio/best[height<=480]' # Download best video only format but no bigger that 50 MB $ youtube-dl -f 'best[filesize<50M]' + +# Download best format available via direct link over HTTP/HTTPS protocol +$ youtube-dl -f '(bestvideo+bestaudio/best)[protocol^=http]' ```