mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-01 02:15:22 +02:00
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
This commit is contained in:
parent
6131069f18
commit
9bd9afa6bd
1 changed files with 4 additions and 0 deletions
|
@ -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}}`
|
||||
|
|
Loading…
Add table
Reference in a new issue