Skip to content

Instantly share code, notes, and snippets.

@crmccreary
Created June 8, 2011 23:52
Show Gist options
  • Save crmccreary/1015744 to your computer and use it in GitHub Desktop.
Save crmccreary/1015744 to your computer and use it in GitHub Desktop.
Convert .ogg to .mp3
for name in *.ogg; do ffmpeg -ab 192k -i "$name" -map_meta_data 0:0,s0 "$(basename "$name" .ogg).mp3"; done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment