Skip to content

Instantly share code, notes, and snippets.

@thomo
Created May 13, 2011 21:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thomo/971369 to your computer and use it in GitHub Desktop.
Save thomo/971369 to your computer and use it in GitHub Desktop.
Convert .ogg to .mp3
find . -name *.ogg | while read xxx
> do
> oggdec -o - "$xxx"| lame -h -V 4 --vbr-new - "$(dirname "$xxx")/$(basename "$xxx" .ogg).mp3"
> done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment