I am using AVFoundation to create a movie file (mp4) using images and sound files.

I have successfully created movie file using AVAssetWriterInputPixelBufferAdaptor which appends CVPixelBufferRef (exracted from UIImage objects) in movie file.

Now, I want to add audio contents from a file in that movie. Fetching data from device microphone is not what I am thinking here. And, I could not find anything similar to AVAssetWriterInputPixelBufferAdaptor which can help writing audio data into that movie file.

Am I missing something here?

link|improve this question

60% accept rate
I have very similar problem. In my application I have created a movie based on video file stored in camera roll directory(with some changes done using direct pixel access). For that I have used AVAsset/AVAssetReader/AVAssetWriter classes and related. The only problem that I have now is my movie does not contain any audio track, just video data. I would like to "append" audio track to my movie that comes from original video file. For some reason I couldn't do that when video was being writing, so now I'm searching for a way to do it after video conversion is done. – peter Feb 27 '11 at 15:59
feedback

1 Answer

up vote 1 down vote accepted

At least for me the solution was to use AVMutableComposition class.

1) create AVMutableComposition class object
2) create 2 AVURLAsset class objects, the first based on your video file, and the second based on a file that you want to extract audio track from
3) create 2 AVMutableCompositionTrack class objects, like before one with audio track, the second one with video track(based on appropriate assets objects from 2))
4) create AVAssetExportSession class based on composition object from 1)
5) export your session

Best regards

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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