When I set:

[[AVAudioSession sharedInstance] setCategory:
    AVAudioSessionCategoryPlayAndRecord error:NULL];

…recording and playing works fine, just the playback volume is around 60% lower than when I would just play the same sound without recording and settings PlayAndRecord.

I need to get high volume peaks (to check if a user blow in the mic) for that i started a recording session. But without settings AVAudio..PlayandRecord, i can not playback any sounds in the meantime. Thats the reason i implemented this command.

Any Help?

Thx Chris

link|improve this question
feedback

4 Answers

For everyone with the same problem, redirect your output to the speaker:

[[AVAudioSession sharedInstance] setCategory:
    AVAudioSessionCategoryPlayAndRecord error:NULL];
UInt32 audioRouteOverride = kAudioSessionOverrideAudioRoute_Speaker;
AudioSessionSetProperty(kAudioSessionProperty_OverrideAudioRoute,
    sizeof(audioRouteOverride), &audioRouteOverride);

That works.

link|improve this answer
Thank you! This solves my issue with lag from switching between AVAudioSessionCategoryPlay and AVAudioSessionCategoryRecord – Full Decent May 22 at 23:05
feedback

Don't forget the import statement. Perhaps obvious for the more experienced programmers...

#import <AudioToolbox/AudioServices.h>
link|improve this answer
very important!, thanks! – MaKo Sep 15 '11 at 5:19
feedback

I found out (cf. Listing 7-9 in the iOS documentation) that the suggested solution above on overriding the audio route stops working after plugging, and removing earphones.

So, if you want the change in audio route to be permanent in the current audio session (Listing 7-10 in the iOS documentation) the same source you can set the default audio route by instead using

NSError *setCategoryErr = nil;
NSError *activationErr  = nil;
//Set the general audio session category
[[AVAudioSession sharedInstance] setCategory: AVAudioSessionCategoryPlayAndRecord error: &setCategoryErr];

//Make the default sound route for the session be to use the speaker
UInt32 doChangeDefaultRoute = 1;
AudioSessionSetProperty (kAudioSessionProperty_OverrideCategoryDefaultToSpeaker, sizeof (doChangeDefaultRoute), &doChangeDefaultRoute);

//Activate the customized audio session
[[AVAudioSession sharedInstance] setActive: YES error: &activationErr];

and of course make sure to link the AudioToolbox framework and import it using

#import <AudioToolbox/AudioServices.h>
link|improve this answer
feedback

Also,need to add AudioToolbox and AVFoundation frameworks to your project by Right-Cliking on Frameworks -> Add -> Existing Frameworks.

Otherwise might get linker error:"_AudioSessionSetProperty", referenced from: -[OpenBook startRecording] in OpenBook.o

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.