Why do you want them in OGG format? Converting from mp3 to OGG will involve another compression, degrading the sound. You might want to rip new tracks from CD in OGG format, if you really like the format, but why would you want to change existing mp3s to oggs?
FWIW, if you think the program has "ogg" in its filename or path, the following incantation will find all files with "ogg" in the name or path without having to build a locate database...
find / -name "*ogg*" -print
But if it's a program than handles multiple file type conversions it probably doesn't have ogg in its name.
This may take a while to run, which is why you create a locate database if you will be doing this often.
no subject
Date: 2005-11-19 10:23 pm (UTC)FWIW, if you think the program has "ogg" in its filename or path, the following incantation will find all files with "ogg" in the name or path without having to build a locate database...
find / -name "*ogg*" -print
But if it's a program than handles multiple file type conversions it probably doesn't have ogg in its name.
This may take a while to run, which is why you create a locate database if you will be doing this often.
Amy