Created
April 3, 2017 16:17
-
-
Save jebog/9210af59bad3bc77089b8118c6771411 to your computer and use it in GitHub Desktop.
Download and Add Metadata to MP3 with Youtube-dl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
youtube-dl -x --continue --add-metadata --embed-thumbnail --audio-format mp3 --audio-quality 0 --metadata-from-title="%(artist)s - %(title)s" --prefer-ffmpeg -o "%(title)s.%(ext)s" $1 |
thanks,
worked with yt-dlp
yt-dlp -x --continue --add-metadata --embed-thumbnail --audio-format mp3 --audio-quality 0 --metadata-from-title="%(artist)s - %(title)s" "$1"
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
👍