Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

App Descrtiption: Speedometer. Has needle dial and animated needle as overlay on the video. I output the animation of the needle onto the video via post-processing. I use AVAssetExportSession, and construct an AVComposition containing my animated layers along with the Video and Audio tracks from the video. This works fine. Video shows, needle animates.

Currently to replay the animation during the post-processing, I have saved off any change in speed with a time since "recording" of the video began. During postprocessing, I then fire off a timer(s) based on the saved time/speed data to then animate the needle to the next speed.

Problem: Resulting video/animation pair are not completely accurate and there often is a mismatch between the speed displayed when the video was taken and when it is played back and composited. (usually needle is in advance of video) due to the fact that the compositing/compression during export is not necessarily real-time.

Question: Is there a way I can embed speed information into the recording video stream and then get access to it when it is exported so that the video and speedometer are temporally matched up?

Would be nice to get a callback at specific times during export that contains my speed data.

As always...thanks!

share|improve this question

4 Answers

You should use CAAnimations and the beginTime property to set up your animations ahead of time, then use AVVideoComposition + AVVideoCompositionCoreAnimationTool to add them to the video when exporting. Note its documentation states:

Any animations will be interpreted on the video's timeline, not real-time...

So your animations will line up exactly where you specify with the resulting movie.

share|improve this answer

Instead of using timers to animate your needle create a keyframe animation based on the speed data you recorded.

Timers and CA don't generally mix well, at least not in the way I infer from your description.

share|improve this answer

If you need to embed the metadata while the app is running on the iPhone I don't know how to do it. If you can do the embedding before, use HTTP LIve Streaming and the HTTP Live Streaming Tools.

The metadata is generated on a file by the id3taggenerator, and embedded on video using mediafilesegmenter. Example:

id3taggenerator -o camera1.id3 -text "Dolly camera"
id3taggenerator -o camera2.id3 -text "Tracking camera"

There are several kinds of metadata you can embed, including binary objects. Refer to the man page for details. Now we need to reference the generated file from a "meta macro-file". This is a plain text file with the following format:

60 id3 camera1.id3
120 id3 camera2.id3

The first number is seconds elapsed since the beginning of the video where you want to insert the notification. I don't remember the mediafilesegmenter command exactly, sorry, you have to pass the macro file, the index, and the video file at least.

The resulting video contains metadata that is posted by the MPMoviePlayerController as notifications. See this page for details: http://jmacmullin.wordpress.com/2010/11/03/adding-meta-data-to-video-in-ios/

share|improve this answer

There is a session from this year's WWDC that might provide a different approach to what you're doing. You can see the videos here: http://developer.apple.com/videos/wwdc/2011/ . Look for one called "Working with Media in AVFoundation". The interesting bits are around minute 26 or so. I'm not completely sure I understand the problem, but when I read it, that session occurred to me.

Best regards.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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