I am trying to detect when the user is blowing into the mic of an iPhone. Right now I am using the SCListener class from Stephen Celis to call

if ([[SCListener sharedListener] peakPower] > 0.99)

in an NSTimer. However, this returns true sometimes when I'm not blowing. Anyone have any sample code to check if the user is blowing into the mic?

link|improve this question
2  
Maybe the wind is blowing. :) Sorry, this question made me laugh. – JP Alioto Apr 28 '09 at 2:11
Hah, nah. Even when I would be inside, simply tapping on the screen would cause the function to trigger – Joe Apr 28 '09 at 3:39
3  
related: a complete how-to on the subject. – Cawas Jan 6 '11 at 15:07
feedback

2 Answers

up vote 16 down vote accepted

I would recommend low-pass filtering the power signal first. There is always going to be some amount of transient noise that will mess with instantaneous readings; low-pass filtering helps mitigate that. A nice and easy low-pass filter would be something like this:

// Make this a global variable, or a member of your class:
double micPower = 0.0;
// Tweak this value to your liking (must be between 0 and 1)
const double ALPHA = 0.05;

// Do this every 'tick' of your application (e.g. every 1/30 of a second)
double instantaneousPower = [[SCListener sharedListener] peakPower];

// This is the key line in computing the low-pass filtered value
micPower = ALPHA * instantaneousPower + (1.0 - ALPHA) * micPower;

if(micPower > THRESHOLD)  // 0.99, in your example
    // User is blowing on the microphone
link|improve this answer
can you stop recording if volume levels get over the threshold as well? meaning if have a voip app, and dont want a firetruck siren to roar over the conversation can i pause the mic once the threshold is surpassed? – owen gerig Dec 12 '11 at 17:56
feedback

Note that the SC_listener does not work on iPhones running iOS 3.0 or above, check in AVAudioRecorder and FFT. It somehow works in the simulator though...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown