As an audiobook addict I have always hated the way audiobook mp3s are handled by the various players. This is because I get my fix from the local public library that rents countless audiobooks pressed on this legacy technology called CDs. Ripping audio CDs to mp3 isn't a problem (it is just annoying), but none of the various mp3 players seems to play the various tracks in correct order. Some seem to use the file name while others read the ID3 track name or any permutation of tags. With a single computer, one can adapt and tag mp3s to whatever the player of choice does. But with today's device proliferation, this becomes hell. This morning however it occurred to me, that an mp3 player is just the wrong tool to play converted audiobooks. What fits better is a podcast player that is written to play hour long content. One only has to bridge the technology gap that exists between a podcast (single media file) and a ripped audiobook (directory of several small mp3s).Below is a list of bullet point items that outline how I do this on Ubuntu >=12.10 and a Raspberry Pi serving the media.
1 Converting audiobook cds to podcast-like mp3s with abcde
1.1 Prerequisites
-
'apt-get install abcde cd-discid cdparanoia libao4 libmusicbrainz-discid-perl libwebservice-musicbrainz-perl libxml-libxml-perl normalize-audio mkcue id3v2 lame –no-install-recommends'
-
'pip install –upgrade eyeD3' (want eyeD3 > 0.7.1 with CHAP support)
-
https://bitbucket.org/nicfit/eyed3/pull-request/3
-
Alternatively grep the source from my git repo directly
-
-
abcde4ab.sh (abcde for audiobooks)
- wget -O /usr/local/bin/abcde4ab.sh http://www.lemmster.de/uploads/abcde4ab.sh
1.2 Convert all cds to single mp3 tracks with chapters
Converting an audiobook consisting out of n CDs is as simple as running 'abcde4ab.sh “Artist name” “Audiobook name” totalNumberOfCds'. E.g. to convert Treasure Island by Robert Louis Stevenson on 10 CDs, the command line is 'adbcd4ab.sh “Robert Louis Stevenson” “Treasure Island” 10'. It will output ten single mp3 files with ID3v2 chapters for each individual cd track and other tag tracks accordingly. The ID3 titles are optimized for display in an RSS feed (dircaster).
2 Serving converted audiobooks as podcasts
-
dircasteron e.g. a RPi
-
'apt-get install lighttpd php5-cgi && lighttpd-enable-mod fastcgi-php'
-
'wget -O dircaster.zip http://www.dircaster.org/DirCasterV09j.zip && unzip dircaster.zip'
-
'vi config_inc.php'
-
-
Copy your audiobooks from step 1.2 to the media/ folder
3 Client
AntennaPod is a good choice for an Android client. It supports ID3v2 chapters out of the box.