Skip to content

Instantly share code, notes, and snippets.

@yoni
Created May 3, 2013 03:32
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yoni/5507032 to your computer and use it in GitHub Desktop.
Save yoni/5507032 to your computer and use it in GitHub Desktop.
Extract MP3 audio from all WEBM videos.
find . -name "*.webm" -exec ffmpeg -i {} -vn -ac 2 -ar 44100 -ab 320k -f mp3 {}.mp3 \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment