From: Sergey M Date: Sat, 16 Jan 2016 04:15:24 +0000 (+0600) Subject: [README.md] Add protocol usage example in format selection X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=6be16ed24bba86c0bb22a3eca6640e727153f1fd;p=youtube-dl [README.md] Add protocol usage example in format selection --- diff --git a/README.md b/README.md index efb51027b..9dbeae1bc 100644 --- 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]' ```