[README.md] Add a format selection example using comma

Ref: #10399
pull/8/head
Yen Chi Hsuan 2016-08-21 20:00:48 +08:00
rodzic 2c6acdfd2d
commit d164a0d41b
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 3FDDD575826C5C30
1 zmienionych plików z 4 dodań i 0 usunięć

Wyświetl plik

@ -645,7 +645,11 @@ $ 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]'
# Download the best video format and the best audio format without merging them
$ youtube-dl -f 'bestvideo,bestaudio' -o '%(title)s.f%(format_id)s.%(ext)s'
```
Note that in the last example, an output template is recommended as bestvideo and bestaudio may have the same file name.
# VIDEO SELECTION