Created
June 19, 2016 15:47
-
-
Save davidefavia/3ba76deba6ba8f6507031b60a4ff06e4 to your computer and use it in GitHub Desktop.
Convert YouTube playlist to mp3
This file contains hidden or 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
#!/bin/bash | |
clear; | |
echo "Insert YouTube playlist ID: "; | |
read playlistId; | |
# You need youtube-dl to use this script: http://youtube-dl.org/ | |
youtube-dl --extract-audio --audio-format mp3 --yes-playlist https://www.youtube.com/watch?list=$playlistId -i |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment