i am developing an application which requires recording a video in the background while the user is listening to music player in the application?? is it possible to run video recorder of iphone in the background mode automatically without prompting the user to press the record button??
i am developing an application which requires recording a video in the background while
Share
Have a look at the new AV Foundation framework in iOS 4.0, this framework provides (low-level) access to capturing video from the camera(s).
The main class you’ll need to uses is
AVCaptureSessionand you’ll have set the output to either toAVCaptureMovieFileOutputorAVCaptureVideoDataOutput.More info: AV Foundation Programming Guide