Quote:
Originally Posted by LunarMoon
I have contacted Apple and they say simultaneous AVCaptureVideoDataOutput + AVCaptureMovieFileOutput is not supported yet. My problem is much simpler than using both, I just wanted to trigger a method every time a frame is grabbed by the camera, but apparently this would require using AVCaptureVideoDataOutput + AVCaptureMovieFileOutput at the same time... something that according to an Apple engineer, is not supported.
I have filled a feature request on this (bugreport.apple.com). I recommend you guys to do the same, as it will increases the chances of seeing this working in a future release.
Meantime, if you discover another way... 
|
Have you got any solution for your issue?
Can you solve our one issue?
We are working in iOS4 application development. Our requirement is real-time audio-video recording. Before recording the video we want process the some sort of image-processing like to embed an image and text to each frame of the video frame captured from camera. From the documentation of AVFramework, we understand that there are classes available for video-audio recording and editing. AVCatureMovieFileOutput class and AVCaptureVideoDataOutput class. But it is not possible to use the two classes at the same time, either we can use AVCaptureMovieFileOutput or we can use AVCaptureVideoDataOutput.
Please see our doubts shown below.
1) Is there any delegate available in AVCaptureMovieFileOutput class for editing the video frame before recording?
2) Is there any other class available in AVFoundation framework which supports video recording with editing functionality?
3) Is it possible to combine the functonality of AVCaptureMovieFileOutput and AVCaptureVideoDataOutput classes using any of the methods available in AVFramework or Objective C?
4) Is it possible to record the video from preview layer?
5) Could you please mention the alternate methods for implementing our requirement.
Since we are not familiar with iOS application development, it will be helpful if we get some ideas for implementation.
Thank you