Skip to content

Instantly share code, notes, and snippets.

@sebm
Created October 3, 2011 21:13
Show Gist options
  • Save sebm/1260271 to your computer and use it in GitHub Desktop.
Save sebm/1260271 to your computer and use it in GitHub Desktop.
A shell command to convert all .mp3 files in a directory into .ogg files
find . -name "*.mp3" -type f -exec ffmpeg -i {} -acodec libvorbis -aq 30 {}.ogg \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment