How to convert M4B files to MP3?

41,344

Solution 1

I'm assuming since your file has an M4B extension, you're working with an audiobook. You should be able to use Audacity to open the .m4b file and export it as an MP3 file. The m4b extension is just a fancy name for an AAC file.

I would recommend the 1.3 beta version - even though it's labeled as a beta, it's very stable. You'll also need to install the LAME MP3 encoder (to export the mp3 file) and the FFmpeg Import/Export library (to read the .m4b file).

The first time after you open Audacity, it should automatically find the LAME and FFmpeg installs. If not, you can have it search for them by going to Edit -Preferences (or press Ctrl+P), go to "Import / Export", and click the "Find library" buttons if nothing is listed (see here for detailed instructions)

Having never converted a file that large, I'm not sure how long it will take. Once Audacity is installed, open the .m4b file, and then choose File -> Export... and save it as an MP3 file. Audacity will give you the chance to fill out the ID3 information, so you can have the proper author, etc, listed for the MP3 file.

Solution 2

I know this is an old thread, but VLC continually crashed on me when I tried to export mp3.

I also tried Super Converter, which looks like it was written by a schizophrenic, but it is my go to freeware converter. Very reliable.

In the end all that worked was good old ffmpeg. Here's the command line I used successfully.

 ffmpeg -i "c:\pathTo\imput.m4b" -acodec libmp3lame -ar 22050 "c:\pathTo\output.mp3"

Solution 3

dBpoweramp will do it, but not free. Once the program is installed go to codec central, download and install this codec, note:these only work with the dBpoweramp program. http://www.dbpoweramp.com/codec-central-m4a.htm

Buy it, select #1 http://www.dbpoweramp.com/dmc-power-register.htm

Other codecs if you need them, I suggest you download and install all of them. http://www.dbpoweramp.com/codec-central.htm

Share:
41,344

Related videos on Youtube

GenericMeatUnit
Author by

GenericMeatUnit

https://ali.actor

Updated on September 17, 2022

Comments

  • GenericMeatUnit
    GenericMeatUnit almost 2 years

    I have downloaded some .m4b files, but my mp3 player cannot play them. I have tried several converters i found through google, but they can't seem to be able to convert the whole files. (Its an 8 hour long file, first program only converted it to a 1 hour long mp3, and the 2nd converted it to 5 hrs long, but with 3 hrs still missing).

    Is there a reliable program for converting them that i can use?

    • Admin
      Admin almost 14 years
      You might list what programs you have tried, so they don't get recommended again.
  • GenericMeatUnit
    GenericMeatUnit almost 14 years
    The VLC player also works, use file -> convert/save.
  • H.B.
    H.B. over 12 years
    FFMPEG has to be the answer to the vast majority of all media conversion questions.
  • Mohamad Fakih
    Mohamad Fakih over 10 years
    It worked for me, though I had to install libavcodec-extra-53 package to get libmp3lame encoder. I also received "*** THIS PROGRAM IS DEPRECATED *** This program is only provided for compatibility and will be removed in a future release. Please use avconv instead.", when I entered the above command (Kubuntu 13.04).
  • Yury Kozlov
    Yury Kozlov about 3 years
    Audacity is available at new download link, Instructions for installing FFmpeg Import/Export plugin can be found here, Lame is now built-in except for Linux
  • e40
    e40 over 2 years
    @ClickUpvote VLC crashed for me doing this. Latest VLC, too. macOS Intel. Monterey.