Home > Nicht kategorisiert > Convert mp3 to m4b -> Audiobooks

Convert mp3 to m4b -> Audiobooks

There are a lot of tools available to convert mp3 files into m4b files, the
format for audiobooks on the iPods/iPhones.

However, I stille like to do it on the cmd-line. Its clean and fast. You just need to
have mpg123 and faac installed:

mpg123 -s input.mp3 | faac -b 80 -P -X -w -o output.m4b -
If you want to convert a whole directory of mp3 files, as it is the common desire, here
is the onliner:
for i in $(ls *mp3);  do mpg123 -s $i | faac -b 80 -P -X -w -o ${i%mp3}m4b -; done

You can find this cmd-lines also in my wiki.

The image “http://wiki.mjava.ch/skins/common/images/wiki.png” cannot be displayed, because it contains errors.

Blogged with the Flock Browser

mjava Nicht kategorisiert

  1. Weeber
    18. Dezember 2008, 16:09 | #1

    How can we do the opposite? Convert from m4b to mp3…

  2. noisymime
    24. Dezember 2008, 10:41 | #2

    Thanks for putting this up! Its come in very handy.

    Just a small point, on your one liner, you have ‘(ls $mp3)’, should this be ‘(ls *mp3)’? It appears that way in your wiki entry.

  3. 27. Dezember 2008, 16:22 | #3

    yes. it should be *mp3. thx for pointing this out

  4. rufo007
    26. März 2009, 22:36 | #4

    It doesnt work for me, the sound is run to quick in amarok and in the ipod.

    Thanks anyway.

  1. Bisher keine Trackbacks
Du musst Dich anmelden um einen Kommentar zu schreiben