Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eja/wav2vad
A command line tool for voice activity detection.
https://github.com/eja/wav2vad
silero vad wav
Last synced: about 1 month ago
JSON representation
A command line tool for voice activity detection.
- Host: GitHub
- URL: https://github.com/eja/wav2vad
- Owner: eja
- License: gpl-3.0
- Created: 2024-03-22T12:08:53.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-08-22T14:39:03.000Z (5 months ago)
- Last Synced: 2024-08-23T11:33:17.675Z (5 months ago)
- Topics: silero, vad, wav
- Language: C
- Homepage:
- Size: 21.1 MB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# wav2vad
wav2vad is a command-line tool that performs voice activity detection (VAD) on WAV audio files. It utilizes the Silero VAD model and requires the ONNX runtime for inference. The tool processes the input audio file and outputs the detected voice activity occurences in JSON format.
## Requirements
- [ONNX Runtime](https://github.com/microsoft/onnxruntime): Required for running the Silero VAD model.
## Installation
1. **Install ONNX Runtime:**
- Follow the installation instructions provided in the [ONNX Runtime repository](https://github.com/microsoft/onnxruntime).2. **Build wav2vad:**
- Clone this repository:
```
git clone https://github.com/eja/wav2vad.git
```
- Navigate to the cloned directory and build the executable:
```
cd wav2vad
make
```## Usage
After building the `wav2vad` executable, you can use it to perform voice activity detection on WAV audio files.
Usage: ```./wav2vad ```
- ``: Path to the input WAV audio file.
The output will be in JSON format and will contain the detected voice activity time along with confidence scores.
## License
This project is licensed under the GNU General Public License v3.0 - see the [LICENSE](LICENSE) file for details.
## Acknowledgements
- This project relies on ONNX Runtime for executing the VAD model.
- This project is based on the Silero VAD example available at [snakers4/silero-vad](https://github.com/snakers4/silero-vad/tree/master/examples/cpp).