How to convert OGG to MP3
Then here's the command,
for i in *.ogg; do ogg123 -d wav -f - "$i" | lame -b 320 -h - > "$i".mp3; done
That will even handle files with spaces in them. I couldn't find any package called 'ogg2mp3' in debian or in a quick search on google, so I made my own.
And don't look at me like I'm crazy :-) --Wim
ChadMiller ?: A way to preserve metadata would be even cooler.
Wim: True. But this worked fine for my Neo :-)
See also LinuxApplications