Skip to content

Instantly share code, notes, and snippets.

@medeirosjoaquim
Last active May 1, 2020 12:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save medeirosjoaquim/8937650d45c153c4c05e3867b6c77be8 to your computer and use it in GitHub Desktop.
Save medeirosjoaquim/8937650d45c153c4c05e3867b6c77be8 to your computer and use it in GitHub Desktop.
mp3 ()
{
echo Youtube to MP3
echo
cd ~/music2020 # or the dir you want...
read -p " " foo
echo Saving mp3: $(pwd)
youtube-dl --prefer-ffmpeg --write-all-thumbnails --extract-audio --audio-format mp3 "$foo"
echo
echo "Done!"
echo $foo
cd $OLDPWD
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment