Question

Am trying to find a simple audio converter to convert various m4a, wma, mp3, and flac files to standard mp3 128KB VBR (for an ancient mp3 player with limited storage).

I'm probably only going to use this once and this is the one thing it needs to do however if it comes with additional features that'd be great too.

After looking into it a bit more (I've come from Windows recently so I know mp3 very well) I've discovered the benefits of m4a files over mp3. So I think I'm looking for a program that supports m4a output as well. Just wanted to throw that in there.

Also if it helps any I'm using a Late 2006 iMac, Core 2 Duo 2.0GHz, 4GB RAM, OS X 10.7.5.

Was it helpful?

Solution 3

While I've had multiple good suggestions for programs here I wanted to post my own answer as no one answered with the program XLD (it was in a comment by @MaxRied however).

X Lossless Decoder(XLD) is a tool for Mac OS X that is able to decode/convert/play various 'lossless' audio files. The supported audio files can be split into some tracks with cue sheet when decoding.

While confusing and over the top at first the learning curve didn't take too long to get over and in the end it is a very solid program that does everything I need and then some. One word of warning however, it will not re-convert files. So if you have a bunch of 320KBps MP3s and want to convert them to 128KBps MP3s it will refuse to do so. Other than that huge annoyance (I switched to Max recommended by @TraneFrancks to finish off these files) it works great.

OTHER TIPS

Get ffmpeg via Homebrew, which can convert a lot of audio/video formats.

Converting your audio files then basically is done by running the following in Terminal

ffmpeg -i input.mp3 -b:a 128k output.mp3

ffmpeg is usually able to deduce input/output format from the file suffix.


To run this over a bunch of files, cd to the top folder containing the audio files and run

find . -type f -print0 | 
    xargs -0 -I '{}' bash -c 'f="{}"; ffmpeg -i "$f" -b:a "${f%.*}.128.mp3"'

This will create files ending in .128.mp3 for all audio files found (and throw a lot of ffmpeg errors for non-audio files in the same folders).

You might want to give Max a try.

Although it hasn't been updated in quite a while, I got a lot of mileage out of it for a number of years. (I stopped using Max after purchasing Fission from Rogue Amoeba.)

I have been using All2MP3 for Mac for years, not much it won't convert to mp3.

NOTE INFO AT THE BOTTOM, NO LONGER SUPPORTED.

All2MP3 is a free application for Mac computers, with a simplistic interface, designed to do one thing: convert your audio files into MP3 files. It doesn't require a help file -- All2MP3 is ready to use from the moment you launch the app, but we did find that it wouldn't convert all file types.

The application's interface is as simple as its installation: just a simple drag-and-drop window, and an Add button that can be used to browse files. All2MP3 supports a wide variety of audio formats, such as MPC, APE, WV, Flac, OGG, WMA, AIFF, WAV, and even video formats such as Apple's native MOV format. It excels at what it is supposed to do, and during our testing we loved the speed at which it converted our movie and audio files to MP3. You can use a slider to adjust the quality of the final MP3 file from "Less" to "Super," as well as change the path to where the file is saved. We were pleasantly surprised when we looked at the timer after putting the application to work to convert a huge number of audio files. We were also surprised by the audio quality after converting MOV video files.

The one downside we found was that All2MP3 couldn't convert iTunes' M4A format, but with its performance on other file types, we still feel this is a very handy addition to your Mac toolbox. Overall, All2MP3 is a useful little app that fits the bill if you are looking to convert most files into MP3 quickly and for free. Its simple interface makes it ideal for all levels of users.

Licensed under: CC-BY-SA with attribution
Not affiliated with apple.stackexchange
scroll top