Anybody know how to programmatically generate audio podcast files with bookmarks that can be used in iTunes / iPod / iPhone / iPod touch? Specifically text bookmarks (bookmarks with titles) that the listener can skip to a specific point in time in the audio file. Also how to add the text transcription of the podcast's content.

Even better if you have an example Cocoa code or library to write the audio file.

Thanks.

link|improve this question

77% accept rate
MP3s don't inherently support bookmarking or chapters. You could try shoehorning it into the metadata, but what you probably want is an MP4 file (commonly seen with extension mp4, m4a, or m4b). – warrenm May 29 '10 at 17:46
Note that an MPEG-4 container file can have MP3 data, although I don't know whether the iPhone and iPod support that and it's kind of pointless anyway (AAC being more efficient and supported pretty much anywhere MPEG-4 containers are). – Peter Hosey May 30 '10 at 7:03
Thanks Peter - I've modified the question accordingly. – adib Jun 5 '10 at 9:03
feedback

closed as not a real question by casperOne May 9 at 16:37

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

1 Answer

You could generate an XML file for Chapter Tool and then run that on your file.

As for adding a transcription, simply use any meta-data writing library (Quicktime, iTunes via Apple Events) to put the transcription in the lyrics field. I'd recommend the lyrics field over description or summary, because only the lyrics field can be viewed on an iPhone/iPod.

link|improve this answer
Hi Do you know where can I get this "Chapter Tool"? Can I embed it inside my application? (any licensing issue if I do that?) From googling around, it seems that ChapterTool is an obsolete (unsupported) tool from Apple that is still a PowerPC binary. Am I correct? Thanks. – adib Jun 19 '10 at 8:22
Sorry, I really don't know. – wbg Jul 8 '10 at 20:44
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.