Page 1 of 1

Detect silence in WAV file?

PostPosted: March 8th, 2013, 4:13 pm
by abh
I'm trying to identify periods of silence in a WAV file, ideally with some ability to set a threshold so background noise isn't interpreted as sound. My objective is to analyze (legal) recordings of phone calls and determine what percentage of the time neither party is speaking.

Can someone point me in the right direction?

Re: Detect silence in WAV file?

PostPosted: March 15th, 2013, 1:28 pm
by abh
No takers on this? All I need is a gentle push in the right direction. :D

Seems like part of the problem is that the WAV I'm dealing with is GSM 6.10, and therefore compressed. Maybe the process would be easier if I could convert to a different format?

Re: Detect silence in WAV file?

PostPosted: March 19th, 2013, 8:03 pm
by Kambiz
Definitely you should work on uncompressed audio data.

I'm not tried it personally, but I think you can simply check the amplitude of the audio wave to find silence (or better to say low volume sound).

Re: Detect silence in WAV file?

PostPosted: March 19th, 2013, 8:07 pm
by abh
Thanks, I'll give that at try and let you know if I'm successful.