I am recording voice on iPhone using AVAudioRecorder and these are my recorder settings:

 NSMutableDictionary* recordSetting = [[NSMutableDictionary alloc] init];
    [recordSetting setValue :[NSNumber numberWithInt:kAudioFormatAppleIMA4] forKey:AVFormatIDKey];
    [recordSetting setValue:[NSNumber numberWithFloat:16000.0] forKey:AVSampleRateKey]; 
    [recordSetting setValue:[NSNumber numberWithInt:1] forKey:AVNumberOfChannelsKey];

The problem is that I can't hear the recorded voice without headphones. I want to be able to hear the voice without headphones also. How should I change my code?

link|improve this question

have you checked for other audio files? means does other files getting played properly. – Sagar... Jun 8 '11 at 10:57
yes,they works fine – Yogi Jun 8 '11 at 11:00
feedback

3 Answers

up vote 0 down vote accepted

Maybe force-routing the audio output to the speaker will help?

- (void) forceRouteAudioToSpeaker
{
    UInt32 audioRouteOverride = kAudioSessionOverrideAudioRoute_Speaker;
    AudioSessionSetProperty(kAudioSessionProperty_OverrideAudioRoute,
        sizeof(audioRouteOverride), &audioRouteOverride);
}

Don’t forget to include <AudioToolbox/AudioServices.h>. On second thought, switching the audio category to plain playback should also do the trick, and you say it didn’t…

link|improve this answer
Thanks,that worked like a charm.:) – Yogi Jun 8 '11 at 13:59
Yes,you are right switching the audio category to plain playback does the trick – Yogi Jun 8 '11 at 14:11
feedback

You have to set the AVAudiosession category to AVAudioSessionCategoryPlayback before playing the sound

link|improve this answer
Sorry,I didn't tested it properly.It's working nicely:) – Yogi Jun 8 '11 at 14:09
feedback

Ref following link

Problem using AVAudioRecorder.

link|improve this answer
I am doing same task on viewDidLoad.Moving it to startButtonClicked also doesn't make any change. – Yogi Jun 8 '11 at 11:10
You mean, you start recording audio on viewDidLoad, Also you added recording on button action. but having same issue on both? – Sagar... Jun 8 '11 at 11:19
No I was initializing AudioSession on viewDidLoad and was setting it active.Now I am doing it in Buttonclicked rather than in viewDidLoad but doesn't make any change.I can hear the sound using headphones but not without them – Yogi Jun 8 '11 at 11:34
feedback

Your Answer

 
or
required, but never shown

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