dpirch / libfvad

Voice activity detection (VAD) library, based on WebRTC's VAD engine
BSD 3-Clause "New" or "Revised" License
485 stars 172 forks source link

modules/audio_processing/vad porting #1

Open leslie-wang opened 7 years ago

leslie-wang commented 7 years ago

Thanks for the good project!

I'm new to VAD. Seems like this folder modules/audio_processing/vad also includes some vad related codes. is it? if yes, are you planning to port that part too?

Also wonder to know if you want to write some python binding examples or not. People can easily manipulate this library. :-)

dpirch commented 7 years ago

I haven't looked into modules/audio_processing/vad much, but it might be useful. Apparently it combines the VAD engine with another detector (PitchBasedVad) for better results.

I'm not planning to write python bindings at the moment (not using Python much). But there is also https://github.com/wiseman/py-webrtcvad which is a python package that wraps the same WebRTC VAD code.