I'm looking for a simple C# real-time voice detection library. The input should be an audio stream, and the output should be "human voice" or "not a human voice". I have no knowledge in speech recognition or signal processing, and I'll appreciate any kind of assistance.
相关问题
- Can we recover audio from MFCC coefficients?
- Is there a way to play audio on a mobile browser w
- Is it possible to know the duration of an MP3 befo
- Playing specific system sound with Qt
- Getting the frequencies associated with STFT in Li
相关文章
- How to embed Google Speech to Text API in Python p
- Android Visualizer class throwing runtime exceptio
- Simulate Microphone (virtual mic)
- Android Studio Mediaplayer how to fade in and out
- Error Domain=kAFAssistantErrorDomain Code=209 “(nu
- Detect or Approximate Bluetooth Latency on Android
- portaudio.h: No such file or directory
- How to play a specific frequency with Javascript?
Take a look at the answer for "Detecting audio silence in WAV files using C#". I am assuming the input is a WAV file. If not please provide the format of the audio stream, or if you are intending on taking input from the microphone directly. If you can measure the amount of silence in an audio stream and you know the duration of the audio stream then you can calculate the amount of talk time. The link in the answer is dead, but if you go to codeproject.com and search on "C# wave form" you will get a hit on a number of projects that show you how to interpret and manipulate wav files. Detecting silence may be a little subjective if there is background noise. You will need to pick a minimum volume threshold for silence where anything below it is considered silence.