Last active
May 1, 2020 12:41
-
-
Save medeirosjoaquim/8937650d45c153c4c05e3867b6c77be8 to your computer and use it in GitHub Desktop.
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
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