projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b555942
)
[README.md] Add protocol usage example in format selection
author
Sergey M
<dstftw@gmail.com>
Sat, 16 Jan 2016 04:15:24 +0000
(10:15 +0600)
committer
Sergey M
<dstftw@gmail.com>
Sat, 16 Jan 2016 04:15:24 +0000
(10:15 +0600)
README.md
patch
|
blob
|
history
diff --git
a/README.md
b/README.md
index efb51027bdf55ba7e0714bc380f458347f8078fb..9dbeae1bcf8cbb47a66b56493b8bd9ef609cce6b 100644
(file)
--- 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]'
```