Can anyone point me in the right direction on how I would minimize ambient noise while recording someone speaking using the iPhone SDK Core Audio? I'm guessing a band-pass filter that eliminates any frequencies above and below the human vocal range might work. I have no idea how I would implement band filters on audio in the SDK though. The optimum solution would be one that eliminates the noise from the stream before it is written to memory/disk.

Some sample code would be appreciated.

link|improve this question

1  
Noise, by its random nature, is inherently a difficult thing to remove from audio or any other signal. While you can remove the apparent noise in a recording, it will affect the signal in unpredictable ways. Consider all the archivists and recording engineers and their constant battle with noise. – lucius Mar 1 '10 at 1:34
Have you been able to reduce background noise while recording?if so please give some ideas. – Warrior Oct 30 '10 at 4:33
feedback

2 Answers

up vote 7 down vote accepted

You would need to implement an adaptive filter and a voice activity detector. In periods where there is no speech you would collect ambient noise and use this to drive the adaptive filter.

link|improve this answer
1  
Interesting idea. Thank you. – Answerbot Mar 18 '10 at 0:20
1  
R-->can you provide me any codes for implementing the adaptive filter algorithm? – Warrior Nov 15 '10 at 7:40
1  
@Warrior: adaptive filters are non-trivial to implement - I suggest you read a good book on the subject, e.g . amazon.com/Adaptive-Filter-Theory-Simon-Haykin/dp/0130901261 or failing that at least Google for LMS etc and learn some of the theory before trying an implementation – Paul R Nov 15 '10 at 7:59
feedback

Have a search for "spectral subtraction" which a technique of analyzing a sample of what you're calling background noise, and then subtracting it from the the regular signal. Yes, you will always get some artifacts. It's a tradeoff.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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