youtube-dl cheatsheet -- Download entire youtube playlist and more!
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
# https://github.com/rg3/youtube-dl/ | |
# On ubuntu: apt-get install libav-tools | |
# Download Playlist to batch of MP3s | |
youtube-dl -f bestvideo+bestaudio --extract-audio --audio-format mp3 --prefer-avconv --playlist-random https://www.youtube.com/playlist?list=XXXXX | |
# Download individual song | |
youtube-dl -f bestvideo+bestaudio --extract-audio --audio-format mp3 --prefer-avconv https://www.youtube.com/watch?v=ZZZZZZZ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment