DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Convert From MP3 To OGG
// I had a collection of mp3 and wanted have it in OGG
// you should have 'oggenc' 'mpg123' 'sox' to be installed
// call: convert file.mp3 file.ogg
#!/bin/bash mpg123 -b 10000 -s "$1" | sox -t raw -r 44100 -s -w -c2 - "temp.wav" oggenc -o "$2" "temp.wav" rm temp.wav





Comments
Snippets Manager replied on Thu, 2009/03/12 - 2:47pm