Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I tried using AVAudioSession and AVAudioPlayer to record and play sounds respectively but the sound volume is very low.

I tried putting volume value of AVAudioPlayer to 1.0 and more but didnt help much.

What could be my other options to record sound which can be loud enough to play back?

share|improve this question
Are you using the built-in microphone, or the mic that's on the cord of the standard earbuds? How close is the source of the sound to the mic? What kind of values are you seeing if you log -peakPowerForChannel? – NSResponder Apr 14 '11 at 11:14
@NSResponder: I am using built-in microphone. Also can you explain how to log -peakPowerForChannel? – Parth Bhatt Apr 14 '11 at 11:16

3 Answers

up vote 18 down vote accepted

This code should be useful for you:

#import <AudioToolbox/AudioServices.h>

    UInt32 audioRouteOverride = kAudioSessionOverrideAudioRoute_Speaker;                
    AudioSessionSetProperty (kAudioSessionProperty_OverrideAudioRoute,          
                                 sizeof (audioRouteOverride),&audioRouteOverride);  

It will increase volume. The functionality of the code is to convert the ordinary sound to speaker sound on ur iPhone. That's why kAudioSessionOverrideAudioRoute_Speaker is used.

share|improve this answer
Thanks for the input. I will check it out and get back to you soon :) – Parth Bhatt Apr 14 '11 at 13:01
Thanks a lot this did work :) I was in search of a solution to this since a day now. – Parth Bhatt Apr 14 '11 at 13:26
2  
Don't forget the import statement. Perhaps obvious for the more experienced programmers... #import <AudioToolbox/AudioServices.h> – MaKo Sep 15 '11 at 5:20
I added that to the answer above, thanks for mentioning the import required. – Kendall Helmstetter Gelner Dec 22 '11 at 18:17
thanks a lot for ur answer – vodkhang Mar 20 at 3:17

The following code fixed this issue for me:

[[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryPlayAndRecord error: nil];
[[AVAudioSession sharedInstance] setActive: YES error: nil];
UInt32 doChangeDefault = 1;
AudioSessionSetProperty(kAudioSessionProperty_OverrideCategoryDefaultToSpeaker, sizeof(doChangeDefault), &doChangeDefault);
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.