Skip to content

Instantly share code, notes, and snippets.

@7dir
Created January 29, 2017 23:18
Show Gist options
  • Save 7dir/5fb3f31ad96347029b99e252da79a86a to your computer and use it in GitHub Desktop.
Save 7dir/5fb3f31ad96347029b99e252da79a86a to your computer and use it in GitHub Desktop.
webm 2 mp3
find . -type f -iname "*.webm" -exec bash -c 'FILE="$1"; ffmpeg -i "${FILE}" -vn -ab 128k -ar 44100 -y "${FILE%.webm}.mp3";' _ '{}' \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment