Skip to content

Instantly share code, notes, and snippets.

@heshed
Last active September 30, 2016 10:06
Show Gist options
  • Save heshed/d927371e4e72079273f475b978916201 to your computer and use it in GitHub Desktop.
Save heshed/d927371e4e72079273f475b978916201 to your computer and use it in GitHub Desktop.
youtube-to-mp3.sh
# install
# brew install ffmpeg
# https://you-get.org/#installation
you-get youtube-url
find . -type f -iname "*.webm" -exec bash -c 'FILE="$1"; ffmpeg -i "${FILE}" -vn -ab 128k -ar 44100 -y "${FILE%.webm}.mp3";' _ '{}' \;
@heshed
Copy link
Author

heshed commented Jul 17, 2016

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment