# Silero VAD Lite
[![PyPI Version](https://img.shields.io/pypi/v/silero-vad-lite.svg)](https://pypi.python.org/pypi/silero-vad-lite/)
[![Supported Python Versions](https://img.shields.io/pypi/pyversions/silero-vad-lite.svg)](https://pypi.python.org/pypi/silero-vad-lite/)
[![Wheel Support](https://img.shields.io/pypi/wheel/silero-vad-lite.svg)](https://pypi.python.org/pypi/silero-vad-lite/)
<!-- [![Downloads per Month](https://img.shields.io/pypi/dm/silero-vad-lite.svg?logo=python)](https://pypi.python.org/pypi/silero-vad-lite/) -->
[![Build Status](https://github.com/daanzu/py-silero-vad-lite/actions/workflows/build_and_publish.yml/badge.svg)](https://github.com/daanzu/py-silero-vad-lite/actions/workflows/build_and_publish.yml)
[![Donate via PayPal](https://img.shields.io/badge/donate-PayPal-green.svg)](https://paypal.me/daanzu)
[![Sponsor on GitHub](https://img.shields.io/badge/sponsor-GitHub-pink.svg)](https://github.com/sponsors/daanzu)
Silero VAD Lite is a **lightweight Python wrapper** for the high-quality [Silero Voice Activity Detection (VAD)](https://github.com/snakers4/silero-vad) model using ONNX Runtime.
- **Simple interface** to use Silero VAD in Python, supporting **streaming audio** processing
- **Binary wheels** for **Windows, Linux, and MacOS** for easy installation
- **Zero dependencies** for the installable package, because it includes internally:
- The Silero VAD model in ONNX format, so you don't need to supply it separately
- The C++ ONNX Runtime (CPU), so the Python package for ONNX Runtime is not required
## Installation
You can install Silero VAD Lite using pip:
```
python -m pip install silero-vad-lite
```
This should install the package from the provided binary wheels, which are highly recommended. Installing from source is somewhat brittle and requires a C++ compiler.
## Usage
Here's a simple example of how to use Silero VAD Lite:
```python
from silero_vad_lite import SileroVAD
vad = SileroVAD(16000) # sample_rate = 16000 Hz
speech_probability = vad.process(audio_data)
print(f"Voice activity detection probability of speech: {speech_probability}") # 0 <= speech_probability <= 1
```
Requirements:
- Sample rate must be either 8000 Hz or 16000 Hz.
- Audio data must be 32-bit float PCM samples, normalized to the range [-1, 1], mono channel.
- Audio data must be supplied with length of 32ms (512 samples for 16kHz, 256 samples for 8kHz).
- Audio data can be supplied as: `bytes`, `bytearray`, `memoryview`, `array.array`, or `ctypes.Array`.
See docstrings in the code for more details.
## License
This project is licensed under the MIT License: see the [LICENSE](LICENSE) file for details.
## Acknowledgments
- [Silero Team](https://github.com/snakers4/silero-vad) for the original Silero VAD model
- Microsoft for the [ONNX Runtime](https://github.com/microsoft/onnxruntime)
## Contributing
To build Silero VAD Lite from source:
1. Clone the repository:
```
git clone https://github.com/daanzu/py-silero-vad-lite.git
cd silero-vad-lite
```
2. Install the package (editable mode likely won't work):
```
pip install .[dev]
```
This will compile the C++ extension and install the package, including the development dependencies for testing, which can be run with:
```
python -m pytest
```
Contributions are welcome! Please feel free to submit a Pull Request.
Raw data
{
"_id": null,
"home_page": "https://github.com/daanzu/py-silero-vad-lite",
"name": "silero-vad-lite",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.6",
"maintainer_email": null,
"keywords": null,
"author": "David Zurow",
"author_email": "daanzu@gmail.com",
"download_url": "https://files.pythonhosted.org/packages/8d/8a/9c33e393a2068ac7e51bff755c001d0fd95a5221de310b760e5c1c0c5047/silero_vad_lite-0.2.1.tar.gz",
"platform": null,
"description": "\n# Silero VAD Lite\n\n[![PyPI Version](https://img.shields.io/pypi/v/silero-vad-lite.svg)](https://pypi.python.org/pypi/silero-vad-lite/)\n[![Supported Python Versions](https://img.shields.io/pypi/pyversions/silero-vad-lite.svg)](https://pypi.python.org/pypi/silero-vad-lite/)\n[![Wheel Support](https://img.shields.io/pypi/wheel/silero-vad-lite.svg)](https://pypi.python.org/pypi/silero-vad-lite/)\n<!-- [![Downloads per Month](https://img.shields.io/pypi/dm/silero-vad-lite.svg?logo=python)](https://pypi.python.org/pypi/silero-vad-lite/) -->\n[![Build Status](https://github.com/daanzu/py-silero-vad-lite/actions/workflows/build_and_publish.yml/badge.svg)](https://github.com/daanzu/py-silero-vad-lite/actions/workflows/build_and_publish.yml)\n[![Donate via PayPal](https://img.shields.io/badge/donate-PayPal-green.svg)](https://paypal.me/daanzu)\n[![Sponsor on GitHub](https://img.shields.io/badge/sponsor-GitHub-pink.svg)](https://github.com/sponsors/daanzu)\n\nSilero VAD Lite is a **lightweight Python wrapper** for the high-quality [Silero Voice Activity Detection (VAD)](https://github.com/snakers4/silero-vad) model using ONNX Runtime.\n\n- **Simple interface** to use Silero VAD in Python, supporting **streaming audio** processing\n- **Binary wheels** for **Windows, Linux, and MacOS** for easy installation\n- **Zero dependencies** for the installable package, because it includes internally:\n - The Silero VAD model in ONNX format, so you don't need to supply it separately\n - The C++ ONNX Runtime (CPU), so the Python package for ONNX Runtime is not required\n\n## Installation\n\nYou can install Silero VAD Lite using pip:\n\n```\npython -m pip install silero-vad-lite\n```\n\nThis should install the package from the provided binary wheels, which are highly recommended. Installing from source is somewhat brittle and requires a C++ compiler.\n\n## Usage\n\nHere's a simple example of how to use Silero VAD Lite:\n\n```python\nfrom silero_vad_lite import SileroVAD\nvad = SileroVAD(16000) # sample_rate = 16000 Hz\nspeech_probability = vad.process(audio_data)\nprint(f\"Voice activity detection probability of speech: {speech_probability}\") # 0 <= speech_probability <= 1\n```\n\nRequirements:\n- Sample rate must be either 8000 Hz or 16000 Hz.\n- Audio data must be 32-bit float PCM samples, normalized to the range [-1, 1], mono channel.\n- Audio data must be supplied with length of 32ms (512 samples for 16kHz, 256 samples for 8kHz).\n- Audio data can be supplied as: `bytes`, `bytearray`, `memoryview`, `array.array`, or `ctypes.Array`.\n\nSee docstrings in the code for more details.\n\n## License\n\nThis project is licensed under the MIT License: see the [LICENSE](LICENSE) file for details.\n\n## Acknowledgments\n\n- [Silero Team](https://github.com/snakers4/silero-vad) for the original Silero VAD model\n- Microsoft for the [ONNX Runtime](https://github.com/microsoft/onnxruntime)\n\n## Contributing\n\nTo build Silero VAD Lite from source:\n\n1. Clone the repository:\n ```\n git clone https://github.com/daanzu/py-silero-vad-lite.git\n cd silero-vad-lite\n ```\n\n2. Install the package (editable mode likely won't work):\n ```\n pip install .[dev]\n ```\n\nThis will compile the C++ extension and install the package, including the development dependencies for testing, which can be run with:\n\n```\npython -m pytest\n```\n\nContributions are welcome! Please feel free to submit a Pull Request.\n",
"bugtrack_url": null,
"license": null,
"summary": "Lightweight wrapper for Silero VAD using internal ONNX Runtime and with no python package dependencies",
"version": "0.2.1",
"project_urls": {
"Homepage": "https://github.com/daanzu/py-silero-vad-lite"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "ed98244c0daa88c676b5b115451dc1fb176fac1ffd1cde96c4697257eb7e006e",
"md5": "4d49be42735b1ea0bdd74d3b025ac410",
"sha256": "ef58f66445132156ddc43ee76f7640cfc89a9e35cb85021b08f440eada5d403c"
},
"downloads": -1,
"filename": "silero_vad_lite-0.2.1-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "4d49be42735b1ea0bdd74d3b025ac410",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 30750461,
"upload_time": "2024-10-01T07:43:48",
"upload_time_iso_8601": "2024-10-01T07:43:48.454897Z",
"url": "https://files.pythonhosted.org/packages/ed/98/244c0daa88c676b5b115451dc1fb176fac1ffd1cde96c4697257eb7e006e/silero_vad_lite-0.2.1-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "854dc3c11b77a385750e8f7e54bf057722c4f0d6dce3f4691751b7f68089d335",
"md5": "1a87b0b3112b410a4b43e154e7a74b86",
"sha256": "8203fbdc0c64d90c83ec5fd2b54d2362a232ce5612a6770d864bde20f9cbefd8"
},
"downloads": -1,
"filename": "silero_vad_lite-0.2.1-cp310-cp310-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "1a87b0b3112b410a4b43e154e7a74b86",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 30752292,
"upload_time": "2024-10-01T07:43:52",
"upload_time_iso_8601": "2024-10-01T07:43:52.107458Z",
"url": "https://files.pythonhosted.org/packages/85/4d/c3c11b77a385750e8f7e54bf057722c4f0d6dce3f4691751b7f68089d335/silero_vad_lite-0.2.1-cp310-cp310-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "109c910d154b3d53e921c67a79b8ad6f692ee5281e3565386e40a64d5f967ed2",
"md5": "9a0950ea52664d4b57bc8ce5d36c52fb",
"sha256": "7bb8112a0881753757a0cbc2a63b5612cb2bd65f4ea1b7f9602e1f3783c37b32"
},
"downloads": -1,
"filename": "silero_vad_lite-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "9a0950ea52664d4b57bc8ce5d36c52fb",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 10123113,
"upload_time": "2024-10-01T07:43:55",
"upload_time_iso_8601": "2024-10-01T07:43:55.375610Z",
"url": "https://files.pythonhosted.org/packages/10/9c/910d154b3d53e921c67a79b8ad6f692ee5281e3565386e40a64d5f967ed2/silero_vad_lite-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "39f3e7f12fab125b103e0027e7d5ac9fd19335160b61205e5a6074fb40c76b4e",
"md5": "efdf221ed8ab2afd1bf5ad5b71937dc8",
"sha256": "c49145a8fe8c25cbd137575cde7266f053bbfbc1be255d393da407e6256e4d59"
},
"downloads": -1,
"filename": "silero_vad_lite-0.2.1-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "efdf221ed8ab2afd1bf5ad5b71937dc8",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 6612342,
"upload_time": "2024-10-01T07:43:57",
"upload_time_iso_8601": "2024-10-01T07:43:57.975701Z",
"url": "https://files.pythonhosted.org/packages/39/f3/e7f12fab125b103e0027e7d5ac9fd19335160b61205e5a6074fb40c76b4e/silero_vad_lite-0.2.1-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6744e883159ccc321125839d74f849c349e23f33b61de14845ad799dad6bbe54",
"md5": "1cc0d286dc64b4e56d40356b1448f4bd",
"sha256": "5a4198be1dbb413ac0031cf76e5eedd1ad34f9922c74055eb653a41e02d64c7a"
},
"downloads": -1,
"filename": "silero_vad_lite-0.2.1-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "1cc0d286dc64b4e56d40356b1448f4bd",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 30750461,
"upload_time": "2024-10-01T07:44:00",
"upload_time_iso_8601": "2024-10-01T07:44:00.309772Z",
"url": "https://files.pythonhosted.org/packages/67/44/e883159ccc321125839d74f849c349e23f33b61de14845ad799dad6bbe54/silero_vad_lite-0.2.1-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "024ed4f6fa9e2c4b585dd55f51c8964c3b2228506fcf5d6523cd01531333a9dc",
"md5": "ca0f828a408883feabd584fdb79a4bb3",
"sha256": "958ff533c37e84bbe88ee6fb41f6b43f8f261c48117bc81fa776fec4b2cec3f8"
},
"downloads": -1,
"filename": "silero_vad_lite-0.2.1-cp311-cp311-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "ca0f828a408883feabd584fdb79a4bb3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 30752295,
"upload_time": "2024-10-01T07:44:06",
"upload_time_iso_8601": "2024-10-01T07:44:06.476483Z",
"url": "https://files.pythonhosted.org/packages/02/4e/d4f6fa9e2c4b585dd55f51c8964c3b2228506fcf5d6523cd01531333a9dc/silero_vad_lite-0.2.1-cp311-cp311-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6dbf209b65437a8d90b8f20c21d1d04a6de545c2beaeed1c54da467169b3eca5",
"md5": "cb9827edc0aa3b6f8607402cbb8d070e",
"sha256": "a865faa68535bbb9498288568c2d1e4bb4052b61aa12d038938fe1ce53863f3d"
},
"downloads": -1,
"filename": "silero_vad_lite-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "cb9827edc0aa3b6f8607402cbb8d070e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 10123116,
"upload_time": "2024-10-01T07:44:09",
"upload_time_iso_8601": "2024-10-01T07:44:09.079030Z",
"url": "https://files.pythonhosted.org/packages/6d/bf/209b65437a8d90b8f20c21d1d04a6de545c2beaeed1c54da467169b3eca5/silero_vad_lite-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e632fdebefaa7b2a7dcc82fc3eb62ad40064cc83935300613c96fa23d8e057fa",
"md5": "9325a9a352d1bb57636375db5c07200e",
"sha256": "d85e6e95133e013cc9d587f701fc462d2fd6b7b23f1b36a902dc8d8f990e2434"
},
"downloads": -1,
"filename": "silero_vad_lite-0.2.1-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "9325a9a352d1bb57636375db5c07200e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 6612344,
"upload_time": "2024-10-01T07:44:11",
"upload_time_iso_8601": "2024-10-01T07:44:11.533913Z",
"url": "https://files.pythonhosted.org/packages/e6/32/fdebefaa7b2a7dcc82fc3eb62ad40064cc83935300613c96fa23d8e057fa/silero_vad_lite-0.2.1-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a2eae389cd02b963a56421550f11a88eaca13f93771e2c065e1f56a36d565469",
"md5": "6d879c7f7fd71356f07c02822dd981ea",
"sha256": "3de3c2dfd9b8f90a5725498479c016eb5b8aa3eb918c1132cb734757025d5f88"
},
"downloads": -1,
"filename": "silero_vad_lite-0.2.1-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "6d879c7f7fd71356f07c02822dd981ea",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.6",
"size": 30750460,
"upload_time": "2024-10-01T07:44:14",
"upload_time_iso_8601": "2024-10-01T07:44:14.147635Z",
"url": "https://files.pythonhosted.org/packages/a2/ea/e389cd02b963a56421550f11a88eaca13f93771e2c065e1f56a36d565469/silero_vad_lite-0.2.1-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0a9f1a90098f5017c842bdf8c2c5e1edca7b4689980ff03924bcce3e8800e04b",
"md5": "1bd9433dfaa2741d3d4d29c99f64324a",
"sha256": "21bc8e03d74ca952cca4cb20cde711fc886cd1dd5093b7fc51de1607ec890fab"
},
"downloads": -1,
"filename": "silero_vad_lite-0.2.1-cp312-cp312-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "1bd9433dfaa2741d3d4d29c99f64324a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.6",
"size": 30752295,
"upload_time": "2024-10-01T07:44:17",
"upload_time_iso_8601": "2024-10-01T07:44:17.914368Z",
"url": "https://files.pythonhosted.org/packages/0a/9f/1a90098f5017c842bdf8c2c5e1edca7b4689980ff03924bcce3e8800e04b/silero_vad_lite-0.2.1-cp312-cp312-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dc4cf8c6ef56058bbcffaaea88f8dd424486cd3cdcfd0244657502fe5bc25a48",
"md5": "50d16bfdec19c6a9684558ec4d0e35b0",
"sha256": "ae45855b5ce6fc5d16a608580f3a8378a1d31951802fef4584a60c53b25b7160"
},
"downloads": -1,
"filename": "silero_vad_lite-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "50d16bfdec19c6a9684558ec4d0e35b0",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.6",
"size": 10123117,
"upload_time": "2024-10-01T07:44:20",
"upload_time_iso_8601": "2024-10-01T07:44:20.708968Z",
"url": "https://files.pythonhosted.org/packages/dc/4c/f8c6ef56058bbcffaaea88f8dd424486cd3cdcfd0244657502fe5bc25a48/silero_vad_lite-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1e4eb240c77663d14882cfd78005bbef0391506b843283e278b2c2683627499d",
"md5": "a5d5dfa20325aff393090d3a3e800efb",
"sha256": "8bab6364ae0b0316c4e787e90b5efd229fbad18b351b3e80fe0dc5e7bdcdebdc"
},
"downloads": -1,
"filename": "silero_vad_lite-0.2.1-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "a5d5dfa20325aff393090d3a3e800efb",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.6",
"size": 6612344,
"upload_time": "2024-10-01T07:44:23",
"upload_time_iso_8601": "2024-10-01T07:44:23.470328Z",
"url": "https://files.pythonhosted.org/packages/1e/4e/b240c77663d14882cfd78005bbef0391506b843283e278b2c2683627499d/silero_vad_lite-0.2.1-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e945692d9cc332e53d3c77d06303d7b978b8e2423454f075c02b95989796eb96",
"md5": "379f05e772b65b39e14fed04019ca322",
"sha256": "6eb4c81dce2d61102865f17ceb60a6afa6e1ca0a7330c4a55e07e3137b74db44"
},
"downloads": -1,
"filename": "silero_vad_lite-0.2.1-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "379f05e772b65b39e14fed04019ca322",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.6",
"size": 30750459,
"upload_time": "2024-10-01T07:44:26",
"upload_time_iso_8601": "2024-10-01T07:44:26.348090Z",
"url": "https://files.pythonhosted.org/packages/e9/45/692d9cc332e53d3c77d06303d7b978b8e2423454f075c02b95989796eb96/silero_vad_lite-0.2.1-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "717afda5268fe3b661d16f6eae56444e14c1f2eb62aae51ca01cc01bd6194f58",
"md5": "f6fe0cdffb1062dd1e4d2bdc47fe0d28",
"sha256": "95c32ecd7c62c67903f5e67e18cc8ca1d0b93c3b020571698236502a66adb94e"
},
"downloads": -1,
"filename": "silero_vad_lite-0.2.1-cp313-cp313-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "f6fe0cdffb1062dd1e4d2bdc47fe0d28",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.6",
"size": 30752298,
"upload_time": "2024-10-01T07:44:29",
"upload_time_iso_8601": "2024-10-01T07:44:29.441653Z",
"url": "https://files.pythonhosted.org/packages/71/7a/fda5268fe3b661d16f6eae56444e14c1f2eb62aae51ca01cc01bd6194f58/silero_vad_lite-0.2.1-cp313-cp313-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f8049de02bae297ed88c44b0f76f4e9d2149ef4fc30a932f5ea38ee686c86b9e",
"md5": "20a602c6672890ce66e82b0d5cf26297",
"sha256": "a0d73a7676acf3fe6c743394b994eec33a9104d95dc32de2867cc4f63df19ff1"
},
"downloads": -1,
"filename": "silero_vad_lite-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "20a602c6672890ce66e82b0d5cf26297",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.6",
"size": 10123118,
"upload_time": "2024-10-01T07:44:32",
"upload_time_iso_8601": "2024-10-01T07:44:32.890459Z",
"url": "https://files.pythonhosted.org/packages/f8/04/9de02bae297ed88c44b0f76f4e9d2149ef4fc30a932f5ea38ee686c86b9e/silero_vad_lite-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f3cb3ee98dd6174c7331e38b90c36eb675b406add4ab7edb45604096affda3e5",
"md5": "6902fc68ef75af6dcbe42f2c8c828787",
"sha256": "5b11772d09383dc6e7cb89976110a75be17876427f7a019649a3761790dc83db"
},
"downloads": -1,
"filename": "silero_vad_lite-0.2.1-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "6902fc68ef75af6dcbe42f2c8c828787",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.6",
"size": 6612343,
"upload_time": "2024-10-01T07:44:36",
"upload_time_iso_8601": "2024-10-01T07:44:36.145332Z",
"url": "https://files.pythonhosted.org/packages/f3/cb/3ee98dd6174c7331e38b90c36eb675b406add4ab7edb45604096affda3e5/silero_vad_lite-0.2.1-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "78fcb38bf293be8e7f062c6055971a14002d9fe99b82d7c163717154470f0647",
"md5": "3fb29b5e13eb5b284a42c273e821350c",
"sha256": "4036ba52610c769604ac56580def2113beedcce5529255283029b017c2aa8136"
},
"downloads": -1,
"filename": "silero_vad_lite-0.2.1-cp36-cp36m-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "3fb29b5e13eb5b284a42c273e821350c",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 30751905,
"upload_time": "2024-10-01T07:44:38",
"upload_time_iso_8601": "2024-10-01T07:44:38.676075Z",
"url": "https://files.pythonhosted.org/packages/78/fc/b38bf293be8e7f062c6055971a14002d9fe99b82d7c163717154470f0647/silero_vad_lite-0.2.1-cp36-cp36m-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3e40af57af54cf8cc047e39d52790c6c297b289ff053a2130f1ec1fbf30bf827",
"md5": "43bfde39337df8385b118d8379fb128b",
"sha256": "cbf69431d4f20f9221921591c9b114b5260c59915d99f25384699d981d171031"
},
"downloads": -1,
"filename": "silero_vad_lite-0.2.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "43bfde39337df8385b118d8379fb128b",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 10123157,
"upload_time": "2024-10-01T07:44:42",
"upload_time_iso_8601": "2024-10-01T07:44:42.077002Z",
"url": "https://files.pythonhosted.org/packages/3e/40/af57af54cf8cc047e39d52790c6c297b289ff053a2130f1ec1fbf30bf827/silero_vad_lite-0.2.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2adddf4514f2ce87a5dbda944a8a3df1cf6c83ec6315f5b8c4a25e0a78f42d97",
"md5": "40c243a0e26f563ca1e554822158da22",
"sha256": "32e4a17c66edf78fc329f1c4a9707e40e3ee0621c6d128bca7e4bb81f6040576"
},
"downloads": -1,
"filename": "silero_vad_lite-0.2.1-cp36-cp36m-win_amd64.whl",
"has_sig": false,
"md5_digest": "40c243a0e26f563ca1e554822158da22",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 6612337,
"upload_time": "2024-10-01T07:44:44",
"upload_time_iso_8601": "2024-10-01T07:44:44.149603Z",
"url": "https://files.pythonhosted.org/packages/2a/dd/df4514f2ce87a5dbda944a8a3df1cf6c83ec6315f5b8c4a25e0a78f42d97/silero_vad_lite-0.2.1-cp36-cp36m-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a1dd7f43e2f901983a5a4c00be4ff397c46287fb9594ec6129c32b104578f646",
"md5": "704a58f51cbb57d5f9352af8a1ab4049",
"sha256": "911406ca760f764d4d3a4df8ffe65a1528df34ad8bec8a39e7f46cec00bb3b6f"
},
"downloads": -1,
"filename": "silero_vad_lite-0.2.1-cp37-cp37m-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "704a58f51cbb57d5f9352af8a1ab4049",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 30752304,
"upload_time": "2024-10-01T07:44:46",
"upload_time_iso_8601": "2024-10-01T07:44:46.558933Z",
"url": "https://files.pythonhosted.org/packages/a1/dd/7f43e2f901983a5a4c00be4ff397c46287fb9594ec6129c32b104578f646/silero_vad_lite-0.2.1-cp37-cp37m-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "77366d3f5aa533fcd477effd58bd0cd65cda6f32420b1c8bca78d6d32e4b19f7",
"md5": "0911b0ee35c77daf50f0e12e651eb8ed",
"sha256": "40e29c4e0170e7eaf30dcb96a0a23c411a3ea050f221b7a7f80b6712707af19a"
},
"downloads": -1,
"filename": "silero_vad_lite-0.2.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "0911b0ee35c77daf50f0e12e651eb8ed",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 10123120,
"upload_time": "2024-10-01T07:44:49",
"upload_time_iso_8601": "2024-10-01T07:44:49.633270Z",
"url": "https://files.pythonhosted.org/packages/77/36/6d3f5aa533fcd477effd58bd0cd65cda6f32420b1c8bca78d6d32e4b19f7/silero_vad_lite-0.2.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "17757d4c587b1bb3903a6a08dc79fa896dfaaa487b58a17f656ba7718181ee24",
"md5": "09fac56182b5eaa5c3296302109cc837",
"sha256": "ae1232534ded0eef3fe5c5f22e3f16b50237d24f6a0d15800802dc9d3cd0dd41"
},
"downloads": -1,
"filename": "silero_vad_lite-0.2.1-cp37-cp37m-win_amd64.whl",
"has_sig": false,
"md5_digest": "09fac56182b5eaa5c3296302109cc837",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 6612345,
"upload_time": "2024-10-01T07:44:51",
"upload_time_iso_8601": "2024-10-01T07:44:51.828938Z",
"url": "https://files.pythonhosted.org/packages/17/75/7d4c587b1bb3903a6a08dc79fa896dfaaa487b58a17f656ba7718181ee24/silero_vad_lite-0.2.1-cp37-cp37m-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "826bdaea74389b016b837f04791097a018cf98009d821c84970de29c42b4fa1c",
"md5": "8dbdab36db87c0b7496045270486bbc0",
"sha256": "5a6bd747cd055be2d48afb3a9a4aa708bee681b60cb74b28b6160b98d32ae2b2"
},
"downloads": -1,
"filename": "silero_vad_lite-0.2.1-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "8dbdab36db87c0b7496045270486bbc0",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 30751411,
"upload_time": "2024-10-01T07:44:54",
"upload_time_iso_8601": "2024-10-01T07:44:54.199224Z",
"url": "https://files.pythonhosted.org/packages/82/6b/daea74389b016b837f04791097a018cf98009d821c84970de29c42b4fa1c/silero_vad_lite-0.2.1-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a49f9e0739f9fbefc7842490bd20b0de56ce9ccd6033ed64532a0befac2b8aee",
"md5": "61a70ce8ea2916e8f6bf2a38d87dc11d",
"sha256": "78ab26ffb043c0224fce3d8794127fb7d24355deb1370ea93a5c6fe284fa415d"
},
"downloads": -1,
"filename": "silero_vad_lite-0.2.1-cp38-cp38-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "61a70ce8ea2916e8f6bf2a38d87dc11d",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 30752292,
"upload_time": "2024-10-01T07:44:57",
"upload_time_iso_8601": "2024-10-01T07:44:57.963859Z",
"url": "https://files.pythonhosted.org/packages/a4/9f/9e0739f9fbefc7842490bd20b0de56ce9ccd6033ed64532a0befac2b8aee/silero_vad_lite-0.2.1-cp38-cp38-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9d22b3494e9b8666063e07b9b9881e639d0f0f7189ab1adb5104999a7a88e11a",
"md5": "42a4c5c4ff1c628461ce265bd3aa4135",
"sha256": "39b62b8a48753cf74175019c82c8f604fcb77f25af9bb15a5e66e7df0d056247"
},
"downloads": -1,
"filename": "silero_vad_lite-0.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "42a4c5c4ff1c628461ce265bd3aa4135",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 10123117,
"upload_time": "2024-10-01T07:45:01",
"upload_time_iso_8601": "2024-10-01T07:45:01.138437Z",
"url": "https://files.pythonhosted.org/packages/9d/22/b3494e9b8666063e07b9b9881e639d0f0f7189ab1adb5104999a7a88e11a/silero_vad_lite-0.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8fa7a8e19e6bf51e4b45b5f93d341de35595296b023919c63e3ae4241c3eb459",
"md5": "6a4b486e639282c8bce6b952ff83e75f",
"sha256": "3fa201f1be37b7418fdbe48e07fdc6bf8020120e3742d0047809017f48c3b570"
},
"downloads": -1,
"filename": "silero_vad_lite-0.2.1-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "6a4b486e639282c8bce6b952ff83e75f",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 6612340,
"upload_time": "2024-10-01T07:45:03",
"upload_time_iso_8601": "2024-10-01T07:45:03.885677Z",
"url": "https://files.pythonhosted.org/packages/8f/a7/a8e19e6bf51e4b45b5f93d341de35595296b023919c63e3ae4241c3eb459/silero_vad_lite-0.2.1-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7c2f099abe60a9514603516e65bfafa65591ae4e952ff54c01f5ac5827cf4abf",
"md5": "6f7bf3cf2cc1fe1e5be784509a303375",
"sha256": "2202752b72589e126206a65a49fb34a3c1754ef9fb7db9c75bd166a4888f84be"
},
"downloads": -1,
"filename": "silero_vad_lite-0.2.1-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "6f7bf3cf2cc1fe1e5be784509a303375",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 30750458,
"upload_time": "2024-10-01T07:45:06",
"upload_time_iso_8601": "2024-10-01T07:45:06.049953Z",
"url": "https://files.pythonhosted.org/packages/7c/2f/099abe60a9514603516e65bfafa65591ae4e952ff54c01f5ac5827cf4abf/silero_vad_lite-0.2.1-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "760c4d9f924a8af27e1045b6dc8e9dbae3a743f9f6a2af6627b80a23ed94421d",
"md5": "85f28bdba989eb1f0751e30b805ff06c",
"sha256": "57e736d27aed7d3ae9a9cac86520dba68f0e117d5a89c703885142a083f23721"
},
"downloads": -1,
"filename": "silero_vad_lite-0.2.1-cp39-cp39-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "85f28bdba989eb1f0751e30b805ff06c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 30752293,
"upload_time": "2024-10-01T07:45:09",
"upload_time_iso_8601": "2024-10-01T07:45:09.712674Z",
"url": "https://files.pythonhosted.org/packages/76/0c/4d9f924a8af27e1045b6dc8e9dbae3a743f9f6a2af6627b80a23ed94421d/silero_vad_lite-0.2.1-cp39-cp39-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "86c5ed7689d49074d1715f32b5dc839a0442f38882c301c93840b2e194569ecc",
"md5": "106a9135a46ceb3490ee26645f707715",
"sha256": "80bfe0fd7a8bcb928e70645248ebb044e2ccf097db29935189daf577d838a134"
},
"downloads": -1,
"filename": "silero_vad_lite-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "106a9135a46ceb3490ee26645f707715",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 10123117,
"upload_time": "2024-10-01T07:45:12",
"upload_time_iso_8601": "2024-10-01T07:45:12.673431Z",
"url": "https://files.pythonhosted.org/packages/86/c5/ed7689d49074d1715f32b5dc839a0442f38882c301c93840b2e194569ecc/silero_vad_lite-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8c92fcd195bf6c060c325441430e3aafa39da5e1b55f837f980538a5aa23068d",
"md5": "795fe98d127ce2a25cdafe67f31935cd",
"sha256": "c57e0a98673667d71615b0582aa5d8e17a1adf1249bac42761aea2eef32f3d5b"
},
"downloads": -1,
"filename": "silero_vad_lite-0.2.1-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "795fe98d127ce2a25cdafe67f31935cd",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 6612339,
"upload_time": "2024-10-01T07:45:14",
"upload_time_iso_8601": "2024-10-01T07:45:14.769452Z",
"url": "https://files.pythonhosted.org/packages/8c/92/fcd195bf6c060c325441430e3aafa39da5e1b55f837f980538a5aa23068d/silero_vad_lite-0.2.1-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "74e660eb885abfa7df04b8e99fa83de07fcef6e8ff5eb7ce9954b36769577063",
"md5": "2fc5ec229c43933d1074f1f2fd463465",
"sha256": "b989823a068a96c310318349d860dbf047614aeba3c587abdd451be3d8b69a08"
},
"downloads": -1,
"filename": "silero_vad_lite-0.2.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "2fc5ec229c43933d1074f1f2fd463465",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.6",
"size": 30750465,
"upload_time": "2024-10-01T07:45:16",
"upload_time_iso_8601": "2024-10-01T07:45:16.969947Z",
"url": "https://files.pythonhosted.org/packages/74/e6/60eb885abfa7df04b8e99fa83de07fcef6e8ff5eb7ce9954b36769577063/silero_vad_lite-0.2.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3125f932676518cb2ebafc1260720d2823c156003282670ae88d7dc635f9b357",
"md5": "2b7b46af12542782b42bffc3714d3e0a",
"sha256": "47243263b2ce70c70b5cb5fc3e1fd13dc8ebad89eb6f3396c710560ec9d187c4"
},
"downloads": -1,
"filename": "silero_vad_lite-0.2.1-pp310-pypy310_pp73-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "2b7b46af12542782b42bffc3714d3e0a",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.6",
"size": 30752306,
"upload_time": "2024-10-01T07:45:20",
"upload_time_iso_8601": "2024-10-01T07:45:20.310964Z",
"url": "https://files.pythonhosted.org/packages/31/25/f932676518cb2ebafc1260720d2823c156003282670ae88d7dc635f9b357/silero_vad_lite-0.2.1-pp310-pypy310_pp73-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d092267f7b87d57c8b7ed697fa9e9fd24289ba481cd8242aa7cb91096331cae8",
"md5": "7daed1ad644f107e3965093dcda6fa1d",
"sha256": "db0b2c9185c01d4a66b6219578c597b741c1b4ae9c5b925481e6a22fb1fe5589"
},
"downloads": -1,
"filename": "silero_vad_lite-0.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "7daed1ad644f107e3965093dcda6fa1d",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.6",
"size": 10123136,
"upload_time": "2024-10-01T07:45:22",
"upload_time_iso_8601": "2024-10-01T07:45:22.998017Z",
"url": "https://files.pythonhosted.org/packages/d0/92/267f7b87d57c8b7ed697fa9e9fd24289ba481cd8242aa7cb91096331cae8/silero_vad_lite-0.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bb882549b9dcf37eb3dca73a8c244147d763a702f8ac110e95ec21f21517e0c1",
"md5": "246f1aad344a5d42050c03a72086679a",
"sha256": "fe02771bbdfd7fe08446d87f7dc99ab6a255b1291e2ecbcf9c6b1e212e5117da"
},
"downloads": -1,
"filename": "silero_vad_lite-0.2.1-pp310-pypy310_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "246f1aad344a5d42050c03a72086679a",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.6",
"size": 6612352,
"upload_time": "2024-10-01T07:45:25",
"upload_time_iso_8601": "2024-10-01T07:45:25.549701Z",
"url": "https://files.pythonhosted.org/packages/bb/88/2549b9dcf37eb3dca73a8c244147d763a702f8ac110e95ec21f21517e0c1/silero_vad_lite-0.2.1-pp310-pypy310_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "00f0c6528cb9b97712155142506660857b08348670a90aed45a55b2e51b13072",
"md5": "2d694a02acbe065533d375187e2dfc58",
"sha256": "bd01432e521aad9eb8af0119a4fe88521bdc64d48f2bda7fed72aa6521b53adb"
},
"downloads": -1,
"filename": "silero_vad_lite-0.2.1-pp37-pypy37_pp73-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "2d694a02acbe065533d375187e2dfc58",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": ">=3.6",
"size": 30752303,
"upload_time": "2024-10-01T07:45:27",
"upload_time_iso_8601": "2024-10-01T07:45:27.641048Z",
"url": "https://files.pythonhosted.org/packages/00/f0/c6528cb9b97712155142506660857b08348670a90aed45a55b2e51b13072/silero_vad_lite-0.2.1-pp37-pypy37_pp73-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7fb1183cdc0daf888d89487069f2b892e97832564f936e2ff96cad2bd41f07b7",
"md5": "bc2e8f94e5a9ca43bdb795682be17700",
"sha256": "2c51235ea557dad5b1f9eae944e740e8a22e13c99bb96c934eb656b906ccf306"
},
"downloads": -1,
"filename": "silero_vad_lite-0.2.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "bc2e8f94e5a9ca43bdb795682be17700",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": ">=3.6",
"size": 10123138,
"upload_time": "2024-10-01T07:45:31",
"upload_time_iso_8601": "2024-10-01T07:45:31.024112Z",
"url": "https://files.pythonhosted.org/packages/7f/b1/183cdc0daf888d89487069f2b892e97832564f936e2ff96cad2bd41f07b7/silero_vad_lite-0.2.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0919c76b5117a712c1cf08216cd4e0f63c5fdac104ed8656db4a07758ea3d838",
"md5": "f8a45d8ad2e5509fb8719c67c3f316dd",
"sha256": "84f1ce625d3c2c5639e98e18cbfc99f75a408164e305e960f4c506b35e1c2f86"
},
"downloads": -1,
"filename": "silero_vad_lite-0.2.1-pp37-pypy37_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "f8a45d8ad2e5509fb8719c67c3f316dd",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": ">=3.6",
"size": 6612353,
"upload_time": "2024-10-01T07:45:33",
"upload_time_iso_8601": "2024-10-01T07:45:33.123341Z",
"url": "https://files.pythonhosted.org/packages/09/19/c76b5117a712c1cf08216cd4e0f63c5fdac104ed8656db4a07758ea3d838/silero_vad_lite-0.2.1-pp37-pypy37_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4f1e918ece849ef6815ef76ba889a4bc16db3d02d7b423ed7d1e3d4eae606164",
"md5": "4dcd664bf5fba12a05e0aeb645c59759",
"sha256": "07ee16e89cfc309857d022e436485d80ccd49422799afca4894b1c214446e7b5"
},
"downloads": -1,
"filename": "silero_vad_lite-0.2.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "4dcd664bf5fba12a05e0aeb645c59759",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.6",
"size": 30750468,
"upload_time": "2024-10-01T07:45:35",
"upload_time_iso_8601": "2024-10-01T07:45:35.347255Z",
"url": "https://files.pythonhosted.org/packages/4f/1e/918ece849ef6815ef76ba889a4bc16db3d02d7b423ed7d1e3d4eae606164/silero_vad_lite-0.2.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3755547fe7a6670cc4144695e6bf86918e28f3cbf1b5ef6d93088d25d93f1eeb",
"md5": "100b9cf2daddeebbf29e600406c1f38f",
"sha256": "477d0021c94a679576ba747fa6c03572dbad0f203caae8d8163270717215a8c5"
},
"downloads": -1,
"filename": "silero_vad_lite-0.2.1-pp38-pypy38_pp73-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "100b9cf2daddeebbf29e600406c1f38f",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.6",
"size": 30752302,
"upload_time": "2024-10-01T07:45:39",
"upload_time_iso_8601": "2024-10-01T07:45:39.225539Z",
"url": "https://files.pythonhosted.org/packages/37/55/547fe7a6670cc4144695e6bf86918e28f3cbf1b5ef6d93088d25d93f1eeb/silero_vad_lite-0.2.1-pp38-pypy38_pp73-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8815383316d608799b65eb80382489da8f05e085d0e17e7b59cc3d043c284e02",
"md5": "b78f5d36679bc877c38d8cba4fd90580",
"sha256": "385117dd251d43033cb7d88f0d4fae8613fe3f6b0163a9a6ab655f748a6a6b6a"
},
"downloads": -1,
"filename": "silero_vad_lite-0.2.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "b78f5d36679bc877c38d8cba4fd90580",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.6",
"size": 10123135,
"upload_time": "2024-10-01T07:45:41",
"upload_time_iso_8601": "2024-10-01T07:45:41.815379Z",
"url": "https://files.pythonhosted.org/packages/88/15/383316d608799b65eb80382489da8f05e085d0e17e7b59cc3d043c284e02/silero_vad_lite-0.2.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5e096682ff7a918a456a9b1f1ace0a9c18a4556b49a160f13832d22ce11bb48e",
"md5": "3d614b5cc9c629dde278d0ef0a4a8e98",
"sha256": "91043afa8d454cfe35038551b4dd21f96fcd60a9ff98bef00d1f6e25b3c1df14"
},
"downloads": -1,
"filename": "silero_vad_lite-0.2.1-pp38-pypy38_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "3d614b5cc9c629dde278d0ef0a4a8e98",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.6",
"size": 6612350,
"upload_time": "2024-10-01T07:45:44",
"upload_time_iso_8601": "2024-10-01T07:45:44.108637Z",
"url": "https://files.pythonhosted.org/packages/5e/09/6682ff7a918a456a9b1f1ace0a9c18a4556b49a160f13832d22ce11bb48e/silero_vad_lite-0.2.1-pp38-pypy38_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dbd84577f64c862c7932da45509e50690f370db2c676e01daff605cd64a07228",
"md5": "73c0df32584394929e9d0f8519457ccc",
"sha256": "f6f263d721953ad680cad6a2f549151221064eab451b60560799298e5368cf14"
},
"downloads": -1,
"filename": "silero_vad_lite-0.2.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "73c0df32584394929e9d0f8519457ccc",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.6",
"size": 30750468,
"upload_time": "2024-10-01T07:45:46",
"upload_time_iso_8601": "2024-10-01T07:45:46.281347Z",
"url": "https://files.pythonhosted.org/packages/db/d8/4577f64c862c7932da45509e50690f370db2c676e01daff605cd64a07228/silero_vad_lite-0.2.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7f8c83efa4144ab924646a33a8ce1ef7cd663a66d6eacc5e80b39b071d12a581",
"md5": "ea9dcec76b41ce4a3159227b9644514e",
"sha256": "3796a62bbc12a9119bf4a9a824ee25a4dd12eb694a3aa2e8e2fa648e7334d4fa"
},
"downloads": -1,
"filename": "silero_vad_lite-0.2.1-pp39-pypy39_pp73-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "ea9dcec76b41ce4a3159227b9644514e",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.6",
"size": 30752298,
"upload_time": "2024-10-01T07:45:49",
"upload_time_iso_8601": "2024-10-01T07:45:49.507948Z",
"url": "https://files.pythonhosted.org/packages/7f/8c/83efa4144ab924646a33a8ce1ef7cd663a66d6eacc5e80b39b071d12a581/silero_vad_lite-0.2.1-pp39-pypy39_pp73-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a0cff1333506d2b304ddec08cc71af02f0900c4852a71f266a76d64cff113a97",
"md5": "db337b99f841f581c7dfeb1862f42b58",
"sha256": "0107b50597533ba08709e8ae6ebd9597129c4a8792c19fb68a1bfbf76b10c0fb"
},
"downloads": -1,
"filename": "silero_vad_lite-0.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "db337b99f841f581c7dfeb1862f42b58",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.6",
"size": 10123136,
"upload_time": "2024-10-01T07:45:52",
"upload_time_iso_8601": "2024-10-01T07:45:52.682775Z",
"url": "https://files.pythonhosted.org/packages/a0/cf/f1333506d2b304ddec08cc71af02f0900c4852a71f266a76d64cff113a97/silero_vad_lite-0.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f59d778376b0376d3f985eeb8bad3d45abf64dbacfd1c8ae77df9171a4cbbddd",
"md5": "eec07c20510fed57d08d051acccfe026",
"sha256": "3ffef497df7368074ece1a5ad3118b9ba3f041b6d7780b5e3197e452b1f2ab4a"
},
"downloads": -1,
"filename": "silero_vad_lite-0.2.1-pp39-pypy39_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "eec07c20510fed57d08d051acccfe026",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.6",
"size": 6612348,
"upload_time": "2024-10-01T07:45:54",
"upload_time_iso_8601": "2024-10-01T07:45:54.764225Z",
"url": "https://files.pythonhosted.org/packages/f5/9d/778376b0376d3f985eeb8bad3d45abf64dbacfd1c8ae77df9171a4cbbddd/silero_vad_lite-0.2.1-pp39-pypy39_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8d8a9c33e393a2068ac7e51bff755c001d0fd95a5221de310b760e5c1c0c5047",
"md5": "db5782fb08e940d14bc4da92c97ca323",
"sha256": "74ccc2dc955a80a53f9520c3924a0a99b80691ab0632ddec08725b459a8f5d13"
},
"downloads": -1,
"filename": "silero_vad_lite-0.2.1.tar.gz",
"has_sig": false,
"md5_digest": "db5782fb08e940d14bc4da92c97ca323",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.6",
"size": 1956112,
"upload_time": "2024-10-01T07:45:56",
"upload_time_iso_8601": "2024-10-01T07:45:56.271052Z",
"url": "https://files.pythonhosted.org/packages/8d/8a/9c33e393a2068ac7e51bff755c001d0fd95a5221de310b760e5c1c0c5047/silero_vad_lite-0.2.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-10-01 07:45:56",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "daanzu",
"github_project": "py-silero-vad-lite",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "silero-vad-lite"
}