Skip to content

Instantly share code, notes, and snippets.

@ideamonk
Created September 17, 2011 00:41
Show Gist options
  • Save ideamonk/1223459 to your computer and use it in GitHub Desktop.
Save ideamonk/1223459 to your computer and use it in GitHub Desktop.
function ogg2mp3() {
for f in *
do
ffmpeg -i "$f" -ab 500k "$f.mp3"
done
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment