Added audio only download method

This commit is contained in:
Brandon Rozek 2020-04-20 21:12:43 -04:00
parent 0228969117
commit 52c2b1edce

View file

@ -22,3 +22,19 @@ youtube-dl --ignore-errors \
URL_HERE
```
## Audio Only
To extract only audio here's the modified command
```bash
youtube-dl --ignore-errors \
--playlist-reverse \
--output "%(uploader)s/%(uploader)s - %(title)s - %(upload_date)s.%(ext)s" \
--format "bestvideo[ext=mp4]+bestaudio[ext=m4a]" \
--merge-output-format mp4 \
--embed-thumbnail \
--add-metadata \
--extract-audio
URL_HERE
```