I need to determine when someone speaks in an audio stream. I applied the Hamming window and calculated the FFT. How do i detect the human voice from here?

link|improve this question

Please see: meta.stackoverflow.com/questions/5234/… for info on how to fix your accept rate – Paul R Dec 3 '11 at 22:20
@Paul R sorry, i am new to StackOverflow, i didn't know how things work around here. – user1019710 Dec 4 '11 at 9:16
No problem - see if you can get your accept rate up to 75% or more - that way you may find that people tend to be more responsive to your questions. – Paul R Dec 4 '11 at 12:20
feedback

2 Answers

up vote 0 down vote accepted

You don't need to do an FFT for this, you need to implement a Voice Activity Detection algorithm.

link|improve this answer
Well i'd want to detect the voice from the FFT. Could i do this? – user1019710 Dec 3 '11 at 21:16
1  
It's not clear why you would want to re-invent the wheel when there are established algorithms for VAD - did you read the Wikipedia page I linked to ? – Paul R Dec 3 '11 at 21:59
Yes, i read it, and i haven't found anything relevant to my question. – user1019710 Dec 4 '11 at 9:28
OK - you could try following the links in the article e.g. to the G729 standard. – Paul R Dec 4 '11 at 12:22
feedback

If you want to experiment with your own voice activity detection algorithms, an FFT can be used as an initial stage. Next you might want to try subtracting any characterized stationary spectral noise background. Then you could try using the modified FFT results to calculate a cepstrum (or some weighted cepstral coefficients) for feature extraction. You could then do some statistical pattern matching on whatever feature vectors you decided to extract, and feed the results to a decision algorithm.

Each of the above steps has likely been a research topic, and a good implementation might involve studying dozens of published research papers, which perhaps can be found in your university library.

link|improve this answer
thanks, i will look into that. – user1019710 Dec 4 '11 at 9:29
feedback

Your Answer

 
or
required, but never shown

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