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'm recording audio with AVAudioRecorder as seen in http://stackoverflow.com/questions/1010343/how-do-i-record-audio-on-iphone-with-avaudiorecorder/1011273#1011273

I then use AVAudioPlayer to play back the recording. However the sound is coming out of the ear speaker, not the loud speaker. How would I go about redirecting the sound to the loud speaker ?

TIA!

share|improve this question

1 Answer

up vote 10 down vote accepted

From http://www.iphonedevsdk.com/forum/iphone-sdk-development-advanced-discussion/12890-audiosessionsetproperty-problem-playing-sound-listening-mic.html --

UInt32 sessionCategory = kAudioSessionCategory_MediaPlayback;
AudioSessionSetProperty(kAudioSessionProperty_AudioCategory, sizeof(sessionCategory), &sessionCategory);    
UInt32 audioRouteOverride = kAudioSessionOverrideAudioRoute_Speaker;
AudioSessionSetProperty (kAudioSessionProperty_OverrideAudioRoute,sizeof (audioRouteOverride),&audioRouteOverride);
share|improve this answer
Does this work with AVAudioPlayer or only AudioServices? – Gary Rudolph Feb 16 '12 at 20:04
1  
A note to others who come across this answer: the first two lines in the sample code are irrelevant - and, if you're like the OP (who is ALSO recording audio), these lines will prevent the recording from functioning properly. – Steve Oct 6 '12 at 2:37
This worked for me with one adjustment: I changed sessionCategory to be kAudioSessionCategory_PlayAndRecord. – Jacob Jan 24 at 21:45
I have seen this solution several times but I just do not know where to place that piece of code. Can Someone please tell me? – meda Apr 30 at 22:49

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.