Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to play the recorded content simultaneously while recording. Currently I am using AVAudioRecorder for recording and AVAudioPlayer for playing.

When I was trying to play the content simultaneously nothing is playing. Please find the pseudo code for what I am doing.

If I do the same stuff after stop the recording everything works fine.

AVAudioRecorder *recorder;  //Initializing the recorder properly.
[recorder record];
NSError *error=nil;
NSUrl recordingPathUrl;     //Contains the recording path.
AVAudioPlayer *audioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:recordingPathUrl 
                                                                    error:&error];
[audioPlayer  prepareToPlay];
[audioPlayer  play];

Could you please anybody let me know your thoughts or ideas?

share|improve this question
1  
What type of file are you recording to? If you are recording to a MP4/MOV file then this will not be possible as the MOV atom will not be written to the file until recording stops. I am not sure about MP3. – Steve McFarlin Feb 27 '12 at 20:21
possible duplicate of Record and play audio Simultaneously – hotveryspicy Jun 23 '12 at 5:40
you can deffinately do this using core audio instead. It'll take a little longer to get setup but it can deffinately be done. – dubbeat Jul 10 '12 at 10:26

1 Answer

You'll need to use AudioUnits if you want real-time monitoring of your audio input.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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