Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: Software to convert From Itunes Lossless to lower VBR MP3 (Read 2912 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

Software to convert From Itunes Lossless to lower VBR MP3

I have a drive filled with Itunes lossless.

It is in a typical directory structure of Singer/Cdtitle/songs

I am looking for a simple (as in virtually idiot-proof) software solution to, on a different directory on the same drive, called whatever (e.g. Itunes-02), recreate the original directory structure of the original directory and then song by song, transform each song from the Itunes lossless into a high quality vbr of around 160 or 192.

I appreciate any suggestions.

Thank you.

Software to convert From Itunes Lossless to lower VBR MP3

Reply #1
I googled real quick and found this: http://www.boilsoft.com/audioconverter/index.html.  I've never used it, so I make no guarantees.

But there's an easier way, assuming you have the drive space and time.

Step 1: COPY the entire directory structure to another directory.
Step 2: Run any sort of converter that outputs to the source directory.
Step 3: Type in the command to delete all the originals within the copied directory
Code: [Select]
del /S *.alac
or (in linux and maybe OSX)
rm -rf *.alac


It's horribly space inefficient, but it'll get the job done.

Software to convert From Itunes Lossless to lower VBR MP3

Reply #2
Thank you. But I have thousands of nested directories. That's the problem.

Software to convert From Itunes Lossless to lower VBR MP3

Reply #3
How is that a problem? If you copy the "master" directory that contains all the nested directories, the nested directories will also be copied. del or rm will also go into every directory, with the proper options (which I believe are the /S and -rf previously mentioned - but I'm not 100% sure, so check the help before you run those commands).