Created
August 23, 2017 06:48
-
-
Save mperlet/3f3a9a4cc28f214efc59c24fb14c683a to your computer and use it in GitHub Desktop.
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