SeaVAD: Voice Activity Detection module with silero and state machine.
Project description
SeaVAD
SeaVAD is a Python package for Voice Activity Detection (VAD) using a state machine version of SileroVAD os you can control the performance.
Installation
You can install SeaVAD using pip:
pip install SeaVAD
Usage
Here is a simple example of how to use SeaVAD:
from seavad.main import SeaVAD
# Load your audio file
audio_path = 'path/to/your/audio/file.wav'
with open(test_audio, "r") as f:
f.seek(44)
audio_data = f.read()
# Local VAD onnx model path
model_file_path = 'path/to/vad/onnx/model'
# Create a SeaVAD object with the sample rate and sample width of your audio.
# Only 16000 and 8000 sample_rate supported
vad = SeaVAD(model_file_path=model_file_path, sample_rate=16000, sample_width=2)
# Detect voice activity
segments = vad.get_vad_segments(audio_data)
# Print the detected segments
for (start, end) in segments:
print(f"Start: {start}, End: {end}")
License
See the LICENSE file for details.
Contact
For any questions or inquiries, please contact us at info@seasalt.ai
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file seavad-0.0.8.tar.gz.
File metadata
- Download URL: seavad-0.0.8.tar.gz
- Upload date:
- Size: 9.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
34a647b76d2f304580fe737b231590f4f2907141cbedaa589db0c9a98929db01
|
|
| MD5 |
1433baf0988e880fd6891b394f4594f0
|
|
| BLAKE2b-256 |
a011a7f4fc99c9cbcad807f88de5614ad582cf246c449e5234f03e45941f5a38
|
File details
Details for the file seavad-0.0.8-py3-none-any.whl.
File metadata
- Download URL: seavad-0.0.8-py3-none-any.whl
- Upload date:
- Size: 8.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf914cf4deefbcb7f2b2869ed3b70183212ce603042253b9c8e0a29f29624417
|
|
| MD5 |
92adc76140204d6eda8a85a769afd485
|
|
| BLAKE2b-256 |
af85941456401a316366f3bb2c6d6a1ce14c7184d3a684dc4edb228244dcb639
|