I want to merge an Audion CAF file and a video/image UIImage to create a movie file (in .mov format).

Say that my audio is 30 seconds long and I have a UIImage; I want to create a .mov file such that the UIImage is displayed the entire time the audio is playing.

I found this reference: How to add audio to video file on iphone SDK

Can anyone tell me, is it helpful in my case, since the length of my audio and image/video is different?

Thanks in advance.

link|improve this question

62% accept rate
feedback

2 Answers

Yes, you should use AVMutableComposition. To create the video track from your UIImage use AVAssetWriter.

link|improve this answer
feedback

Quicktime Pro can do this. Done that for my own app. You create the movie from the images. Quicktime offers to read a sequence of images and creates a movie from it. He ask for the FPS during import as well.

The audio track can then simply merged, pasted somewhere or scaled to a selected range of the movie.

link|improve this answer
Which class/framework will be used for that? Please give some tutorial or reference link if you're having. Thanks. – Ruchir Agile May 6 '11 at 10:05
Quicktime is installed on every Mac. Quicktime Pro is the commercial upgrade for Quicktime. You can get the key in Apples Online Shop. I think it is possible to do all the editing you have in mind manually using the quicktime framework, but I don't have any examples for that. Since Quicktime is part of Apples technology, you will examples on their developer site. – Helge Becker May 6 '11 at 11:26
feedback

Your Answer

 
or
required, but never shown

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