Convert Youtube-Videos or Playlists 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 | |
# Example: $ yt2mp3 "https://www.youtube.com/playlist?list=PL63F1E17EE312CC7D" | |
function yt2mp3 () { | |
youtube-dl -i -t --extract-audio --audio-format mp3 "$1" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment