Welcome to Dagon Design. In addition to free scripts, WordPress plugins, and articles, we offer a variety of services including custom theme design, plugin creation, and PHP scripting. Contact me for more information.

Updated Wednesday, November 9th, 2005 at 12:00am

Turning MP3 audiobooks into iPod audiobooks

The best feature of the iPod’s audiobook format is the ability to resume playback at a particular point even if you play something else or turn the iPod off. There are many online services where you can obtain audiobooks, but most of them are in MP3, which the iPod just treats as regular music. With a few steps, it is easy to convert MP3 files (or any other filetype that iTunes can play) into the native iPod audiobook format. There are a lot of different methods out there, but the following steps work nicely for me.

Notice

If you are using iTunes 8.1 or newer, there is now a built-in feature to designate regular mp3 files as audiobooks, so these instructions are not needed.

Before you begin

For best results, you should not upload audiobooks that are larger than 320MB or longer than 5 hours. This can cause playback and stability problems. If you have files larger than this, splitting them up into smaller parts is recommended.

Most audiobooks that you download will be in multiple files. I personally like combining these into a single file so I do not have to remember which file I am listening to. It also keeps the audiobooks menu on my iPod much easier to read. I simply let the iPod remember my position in the audiobook when I come back to it. It is just personal preference.

Most audiobooks will be far less than 320MB and 5 hours long, so if you want, you can combine your MP3s into a single file before you begin. MP3 Merger is a great freeware program.

Configuring iTunes

Before you convert the files, iTunes must be set properly. You should only have to do this once. In the iTunes menu (I am using version 6), select the following:

Edit > Preferences > Advanced > Importing

Make sure “Import Using” is set as “AAC Encoder“.

Change “Setting” to “Custom” and set the following options:

Bit Rate: 64kbs (this is a nice average setting for most audiobooks)
Channels: Stereo (fixes an issue with homemade mono files on some iPods)
Check “Optimize for Voice

Instructions

Add the files you want to convert to your library. Once they are there, select the file(s), right-click, and select “Convert Selection to AAC“. This will add the newly converted files to your library.

Once the conversion is complete, remove the original files from your library. They will no longer be needed for this process.

You can also remove the newly created files from your library, but when you are asked, be sure to select “Keep Files“, so they are not deleted off your hard drive.

The files are created under “My Documents\My Music\iTunes\iTunes Music(unless you told iTunes otherwise), so open up that folder.

You will notice that the new files have the .m4a extension. They must be renamed to .m4b.

Now that the files are renamed, you can add them to your iTunes library once again.

Right-click on the new file(s) in your library and select “Get Info“.

You can change the name of the file(s) on this screen. If you like, you can clear out the “artist” and “album” fields, so that they do not show up with the rest of your music on the iPod (when you are looking at albums or artists). They will still show up under “audiobooks” of course.

You can also change the genre of the files to “Audiobooks” using the iTunes tag editor, to make the files easier to find when looking through iTunes.

All you have to do now is add the files to your iPod. They should work just like any iTunes audiobook. They will show up under the “Audiobooks” menu on your iPod, your playback position will be remembered, and they will not get played during song shuffles.

Conclusion

I take no responsibility if you mess anything up, but as long as you follow these steps, it should work fine.

I have a fourth generation iPod. While this method works great for me, I cannot promise that it will work for all revisions.

Pages: « 1211 10 9 8 7 6 5 4 3 2 [1] Show All

  1. 15
    Scott

    I wrote a short perl script that might be helpful for those that have massive amounts of files to change the file handle on.

    Here it is

    foreach my $file (glob “*.m4a”){ #searches for all files that end in .txt
    my $newfile = $file;
    $newfile =~ s/\.m4a$/.m4b/; #tells program to sub .txt file names with .xls file name, $ anchors only to end of string

    if (-e $newfile) { #-e checks to see if file exists
    warn “can’t nename $file to $newfile; $newfile exists\n”;
    } elsif (rename $file, $newfile) { #if file doesn’t exist, rename file as directed in line 6
    ##success, do nothing
    } else {
    warn “rename $file to $newfile failed; $!\n”;
    }
    }

  2. Glad to hear it :)

  3. 13
    Gabriel

    Thank you dude..it works great to me….I have an ipod 5g… Exactly what i was looking for…. thanks very much

  4. Just wanted to drop you a note that it works on the 5th Gen iPod. Now my iPod tagging is complete after finding Atomic Parsely and the Windows wrappers to properly tag TV shows.

    Why must it be so difficult to make things appear in the right places?

  5. Mikeal: The same way you would rename any file. Although if you use Windows, it hides the file extensions by default, which makes it tricky to rename unless you know how. If you use XP, try this:

    Open up ‘My Computer’
    In the menu, select ‘Tools’ -> ‘Folder Options’
    Select the ‘View’ tab
    Uncheck ‘Hide extensions for known file types’

  6. 10
    Mikeal

    Call me stupid. but how do you “Rename a m4a file to a m4b file”
    ??

  7. Will: Yes, and while that generally works fine, they are still not treated as ‘normal’ audiobooks as far as the iPod is concerned :)

  8. Merging the files is very helpful. However, I noticed that iTunes now has an option to make files bookmarkable without changing the file extensions. In iTunes, select the file, choose Get Info, then Options, then check “Remember playback position.”

    Will

  9. Thanks! This is just what i needed. Works great!

  10. 6
    Barry

    Thank you very very much for that it worked very well and now I am able to listen to my audibook download and enjoy it on the ipod. THANKS AGAIN

  11. 5
    Alan

    Thanks! That works perfectly! Such a simple solution to a problem that really got under my skin!

  12. Ah yes.. thanks for catching that ;)

  13. 3
    Gioia

    I think you mean AAC in stead of ACC, is that right?

  14. No. The actual conversion does not change the time (at least not signifigantly). If you have large files, it is best to split them up. There are a lot of programs out there to split up MP3 files. Then you can convert the parts.

  15. I would like to know what audio books you are listening to that are less than 5 hours. I have several books that I am interested in learning how to get onto my iPod mini but every one I have is well over 5 hours in total time. Does cojnverting from mp3 to m4b change the time duration.

Pages: « 1211 10 9 8 7 6 5 4 3 2 [1] Show All

Leave a Comment

Before you comment: If you are having an issue with a script, please make sure you have read the entire article. Also, please read through the comments because most common issues have already been discussed many times. Thanks.


Be sure to wrap all code in <code></code> tags.