I'm trying to record a video while the iPhone playback an audio track. as far as i tried, whenever I simulataniously record and play - the camera get stuck. I went over the AVFoundation PG But I could not find a specific answer.

Is it a matter of digging into this framework?

Is it a matter of threading and multitasking?

thanks

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

I record both audio and video while playing audio. However, in my setup I am using CoreAudio for audio and AVFoundation for video. You may want to setup the audio session to handle recording and playback. e.g.

AudioSessionInitialize(NULL, NULL,  NULL, self);

UInt32 audioCategory = kAudioSessionCategory_PlayAndRecord;
AudioSessionSetProperty(kAudioSessionProperty_AudioCategory, sizeof(audioCategory), &audioCategory);
AudioSessionSetActive(YES);
link|improve this answer
Thanks! that was it:) – 4bazel Nov 11 '11 at 19:22
feedback

Your Answer

 
or
required, but never shown

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