Metadata-Version: 2.4
Name: ovos-vad-plugin-webrtcvad
Version: 0.0.3a1
Summary: webrtcvad VAD plugin for OpenVoiceOS
Author-email: JarbasAi <jarbasai@mailfence.com>
License: Apache-2.0
Project-URL: Homepage, https://github.com/OpenVoiceOS/ovos-vad-plugin-webrtcvad
Project-URL: Repository, https://github.com/OpenVoiceOS/ovos-vad-plugin-webrtcvad
Keywords: vad,webrtcvad,ovos,openvoiceos,plugin,voice-activity-detection
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Multimedia :: Sound/Audio :: Speech
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: ovos-plugin-manager<3.0.0,>=2.1.0
Requires-Dist: webrtcvad-wheels
Provides-Extra: dev
Requires-Dist: pytest<9; extra == "dev"
Requires-Dist: pytest-cov; extra == "dev"
Provides-Extra: test
Requires-Dist: pytest<9; extra == "test"
Requires-Dist: ovoscope<1.0.0,>=0.19.0a1; extra == "test"
Requires-Dist: ovos-dinkum-listener; extra == "test"
Dynamic: license-file

# ovos-vad-plugin-webrtcvad

WebRTC VAD plugin for [OpenVoiceOS](https://openvoiceos.org).

Uses [webrtcvad](https://pypi.org/project/webrtcvad/) to detect voice activity in audio streams.

## Install

```bash
pip install ovos-vad-plugin-webrtcvad
```

## Configuration

```json
{
  "listener": {
    "VAD": {
      "module": "ovos-vad-plugin-webrtcvad",
      "ovos-vad-plugin-webrtcvad": {
        "vad_mode": 3
      }
    }
  }
}
```

`vad_mode` ranges from 0 (least aggressive) to 3 (most aggressive, default).

## License

Apache-2.0
