ladenedge / WebRtcVadSharp

.NET Standard interface for the WebRTC voice activity detection (VAD) component.
Other
43 stars 8 forks source link

Add more modes to the vad sens detection #11

Open jnr4817 opened 2 years ago

jnr4817 commented 2 years ago

There are 3 modes of sens detection located here: WebRtcVadSharp/WebRtcVad/webrtc/common_audio/vad/vad_core.c

Anyway to add more. Using this code for VOX within a flight simulator and it is still to sensitive.

ladenedge commented 2 years ago

There are four modes available in the library using the OperatingMode enum, but you're right that they aren't as different as one might want.

It's an interesting idea to allow more variability over the constants defined by those modes. I will look into it.

jnr4817 commented 2 years ago

Thank you