Convert Ogg Vorbis to MP3 -
I had to convert my Ogg Vorbis music to mp3 so that I could get all my music on my ipod, and came across a very useful perl script which did the job beautifully, including leaving all the id3 tags intact.
ogg2mp3
This script did well, the only irritating thing was that it defaulted to notlame, rather than lame, and used 128kbps, rather than 192, which I prefer to use. But both were easy to change, the first by un-commenting the line which reads
and changing it to read
and deleting the line below it.
-Jonesy
I had to convert my Ogg Vorbis music to mp3 so that I could get all my music on my ipod, and came across a very useful perl script which did the job beautifully, including leaving all the id3 tags intact.
ogg2mp3
This script did well, the only irritating thing was that it defaulted to notlame, rather than lame, and used 128kbps, rather than 192, which I prefer to use. But both were easy to change, the first by un-commenting the line which reads
#my $MP3ENC = "lame";
and changing it to read
my $MP3ENC = "lame -b 192 ";
and deleting the line below it.
-Jonesy


