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 creating an application which incorporates a sound level meter (the user wears a contact or throat microphone). I am using the (deprecated) custom class SCListener which uses an AudioQueue and retrieves the value kAudioQueueProperty_CurrentLevelMeter which is a value between 0 and 1.

My issue is that at normal usage levels, the kAudioQueueProperty_CurrentLevelMeter value is already peaked at 1.0 - what I am hoping to do is dampen or reduce the input sensitivity of the contact microphone, so that a scream or really loud yelling registers as a 1.0 instead of regular talking.

Through my searching I have seen some discussion of Audio Units, but have not found any documentation or examples that I have been able to understand.

Is there a way I can reduce the sensitivity or gain or the input line in my application? Any help is greatly appreciated!

share|improve this question

1 Answer

There currently appears to be no public API to manually adjust the mic input gain on iOS devices.

Alternatively, you could set up an Audio Queue or RemoteIO Audio Unit, analyze the PCM samples you find in the callback buffers, and compute your own amplitude envelopes (or spectrally weighted amplitudes, etc.) and scale however you wish. But that's after the mic input sampling.

share|improve this answer
Would this allow me to measure a greater input volume than the max using kAudioQueueProperty_CurrentLevelMeter or an AVAudioRecorder peakValue, or would it effectively be the same? (i.e. would the input level already be maxed out before I analyze the PCM samples)? – user482182 Dec 30 '11 at 2:41

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.