-
-
Save ChathuraHettiarachchi/6399c53deac2a06f54b9865c96e96937 to your computer and use it in GitHub Desktop.
Convert YouTube playlist to mp3
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
#!/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