mirror of
https://github.com/huggingface/candle.git
synced 2025-06-19 03:54:56 +00:00

* silero-vad v5 example This change adds an example of how to run silero-vad v5 * PR: rename 'vad' to 'silero-vad' * Update README.md --------- Co-authored-by: Laurent Mazare <laurent.mazare@gmail.com>
13 lines
448 B
Markdown
13 lines
448 B
Markdown
# silero-vad: Voice Activity Detection
|
|
|
|
[Silero VAD (v5)](https://github.com/snakers4/silero-vad) detects voice activity in streaming audio.
|
|
|
|
This example uses the models available in the hugging face [onnx-community/silero-vad](https://huggingface.co/onnx-community/silero-vad).
|
|
|
|
## Running the example
|
|
|
|
```bash
|
|
$ arecord -t raw -f S16_LE -r 16000 -c 1 -d 5 - | cargo run --example silero-vad --release --features onnx -- --sample-rate 16000
|
|
```
|
|
|