aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorSergey M <dstftw@gmail.com>2016-01-16 10:15:24 +0600
committerSergey M <dstftw@gmail.com>2016-01-16 10:15:24 +0600
commit6be16ed24bba86c0bb22a3eca6640e727153f1fd (patch)
tree64a20a1aae0e4f069794dac028b5a4836c15b5b0 /README.md
parentb555942428726bd619744a208b5e6cfceb99d8d9 (diff)
downloadyoutube-dl-6be16ed24bba86c0bb22a3eca6640e727153f1fd.tar.xz
[README.md] Add protocol usage example in format selection
Diffstat (limited to 'README.md')
-rw-r--r--README.md3
1 files changed, 3 insertions, 0 deletions
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]'
```