Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Audio/video file formats that support embedded markers and comments/annotations?

I am looking at creating an app for OS X and/or iOS that allows the user to arbitrarily embed markers into the audio at various intervals during the audio recording process. It would be nice to have a single file that could contain this information, but may or may not be efficient or feasible. I suppose it is similar to what YouTube annotations allows.

Requirements:

  • Ability to insert markers at certain time points of an audio recording
  • Ability to save a name for the marker as well as a brief description

This is for audio created by the app I'm working on, so is not for importing audio from other sources for markup.

-- snip --

EDIT: Maybe MP4 + XMP?

EDIT2: Has anyone tried using custom XMP fields with Audio or Video on the iOS platform? On the Mac platform? I have downloaded the XMP Toolkit from Adobe (which has an Xcode project) - but it is a touch out of my comfort zone. From a high level it appears pretty straightforward, but anyone with experience with the XMP Toolkit have any thoughts?

As is suggested in an answer below, does anyone have experience with alternative solutions such as QuickTime with chapter markers? Pros and Cons to various approaches?

After thinking about it, it would be nice to do something that supports both audio and video formats, even if initially the current requirement is audio only.

EDIT3 (cleanup): So, just to close the loop here. I ended up digging into the iOS 4.0 APIs for AVAsset, AVMetadataItem, et al in the AV Foundation Framework. Still have not completed the project, but it appears these APIs will satisfy the requirement without the need for an external library.

like image 617
Eric Avatar asked Oct 25 '10 18:10

Eric


People also ask

Can you embed videos in a PDF?

When placing video, audio, or Flash content in a PDF document, Acrobat converts the file to a format that can be played by Adobe Reader. Anyone with the free Adobe Reader software can view and/or hear the media without additional software.

Can you embed an MP4 into a PDF?

When embedding video directly into a PDF, it's important to remember that you have only a few acceptable file type options. These include MOV and MP4 video files but beware that MOV files will only work on machines with QuickTime installed.

How do I embed audio in a PDF?

Select the PDF page that you want to add music to. Select the Sound Tool by navigating to Tools>Advanced Editing> Sound Tool. Specify an area in the PDF that will play the music/audio when selected. In the Content Settings section, click the radio button to choose the music file you want to add to the PDF.


1 Answers

have you read up on the CAF format?

basically, it functions as a wrapper for many audio formats, and allows you to embed all sorts of data (as well as user defined data). it may be an option since interchange is not an issue (in your case).

The CAF File Specification

like image 123
justin Avatar answered Oct 16 '22 09:10

justin