silero-vad
silero-vad copied to clipboard
Silero VAD: pre-trained enterprise-grade Voice Activity Detector
## 🐛 Bug When using onnx runtime in node.js, there are warnings when loading the model: ``` [0;93m2024-03-03 21:57:12.462000 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '140'. It is not used by...
VADIterator() might return negative start position if voice happens to be detected in the very first frame. I don't have a test case to reproduce, but the logic error should...
The Silero Voice Activity Detection (VAD) model incorrectly classifies the sound of blowing directly into the microphone as human speech. This issue persists across various blowing intensities, from soft to...
## C++ VAD example You have a great [cpp test example](https://github.com/snakers4/silero-vad/tree/master/examples/cpp) for your VAD model. It is provided with clear explanations. In accordance with README I created a Dockerfile: ```...
## ❓ Questions and Help I'm having issues with latest version v5.0 Until I get time to investigate and fix the issue I want to use the previous version, `vad,...
nubmer -> number
How to export an ONNX with opset version = 13? Currently, the silero_vad.onnx is opset version = 16. Could you tell me how to get other opset version of the...
``` import os import wave import torch import pyaudio torch.set_num_threads(1) os.environ['KMP_DUPLICATE_LIB_OK'] = 'True' def record_audio_with_vad(file_path, vad_model, vad_utils, sample_rate=16000, chunk_size=512): p = pyaudio.PyAudio() stream = p.open(format=pyaudio.paInt16, channels=1, rate=sample_rate, input=True, frames_per_buffer=chunk_size) data...
## ❓ Questions and Help Hi silero team! When i try to use silero-vad using python, I felt it is good. But if i use silero-vad using c++, i got...