I' looking for tool that convert Audio-CD to mp3 in Linux console - ONE good tool. Using cdparanoia + lame is ok, but... is something else ?
feedback
|
migrated from stackoverflow.com Aug 4 '10 at 15:36
This question came from our site for professional and enthusiast programmers.
|
If you want cdparanoia functions use cdparanoia. cdparanoia doesn't compress. There is a 6 year old integration script called dekagen which might still work or could probably work with slight updating. Happy ripping (all the cool kids are using Ogg/Vorbis now). | |||
|
feedback
|
|
The "UNIX way" (and by extension the Linux way) is to combine single-purpose tools that do their job well using pipes or scripting, rather than writing redundant tools with overlapping functionality. A single ripping tool would have to duplicate both the functionality of cdparanoia for audio extraction, and the functionality of LAME for MP3 encoding, which is a waste of effort unless the new single tool was going to perform some important new task which could not be achieved with the existing combination. Using cdparanoia and LAME is therefore absolutely the right way to accomplish this. If you perform this task often and want to streamline the process, you might consider writing a script that invokes the tools with the necessary parameters. | |||
|
feedback
|
