
airikr / Download music from YouTube
Last active 3 months ago
This bash script downloads a video from YouTube and convert it to MP3.
Revision 27064ebcc2b85cfb4395733318a4be17048cbb02


| 1 | #!/bin/bash |
| 2 | yt-dlp \ |
| 3 | --check-formats \ |
| 4 | --progress \ |
| 5 | --ignore-errors \ |
| 6 | --write-info-json \ |
| 7 | --add-metadata \ |
| 8 | --audio-format "mp3" \ |
| 9 | --extract-audio \ |
| 10 | --format bestaudio/best \ |
| 11 | --embed-thumbnail \ |
| 12 | --restrict-filenames \ |
| 13 | --concurrent-fragments 3 \ |
| 14 | -o "/path/to/audio/%(uploader)s/%(upload_date>%Y-%m-%d)s - %(title)s (%(id)s).%(ext)s" "$1" |