mirror of
https://github.com/Brandon-Rozek/website.git
synced 2024-11-09 18:50:34 -05:00
Added audio only download method
This commit is contained in:
parent
0228969117
commit
52c2b1edce
1 changed files with 16 additions and 0 deletions
|
@ -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
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in a new issue