Re: MP3 to <anything>

Emmanuel Seyman <[email protected]> Mon, 4 Nov 2002 09:23:58 +0100
Newsgroups gmane.linux.redhat.migration
Message-ID <[email protected]>
On Sun, Nov 03, 2002 at 08:18:38PM -0800, John Floren wrote:
>
> Does anyone know how to convert from mp3 format files to a more
> linux-compatible format (ogg-vorbis?)?  I don't think sox can do it, is
> there any good tool for doing so?  Currently I can only play the mp3
> files I download under konqueror and xmms.

I would do it like this:

mpg123 -w filename.wav filename.mp3 && oggenc filename.wav filename.ogg;
rm filename.wav

Emmanuel