youtube-dl: add download the best audio+video (#3790)

* youtube-dl: add download the best audio+video

With this command the user can download the best audio and video separately. After it's done downloading, it will spawn ffmpeg to merge the two files together. Handy when downloading stuff from youtube as they host video and audio separate.

* youtube-dl: removed braces
client-spec/clarity
Miro Rauhala 2020-01-26 14:53:12 +02:00 committed by Zlatan Vasović
parent 6131069f18
commit 9bd9afa6bd
1 changed files with 4 additions and 0 deletions

View File

@ -19,6 +19,10 @@
`youtube-dl -x --audio-format {{mp3}} {{url}}`
- Download the best quality audio and video and merge them:
`youtube-dl -f bestvideo+bestaudio {{url}}`
- Download video(s) as MP4 files with custom filenames:
`youtube-dl --format {{mp4}} -o {{"%(title)s by %(uploader)s on %(upload_date)s in %(playlist)s.%(ext)s"}} {{url}}`