.. image:: https://img.shields.io/pypi/v/webrtcvad-wheels.svg
:target: https://pypi.python.org/pypi/webrtcvad-wheels/
.. image:: https://img.shields.io/pypi/pyversions/webrtcvad-wheels.svg
:target: https://pypi.python.org/pypi/webrtcvad-wheels/
.. image:: https://img.shields.io/pypi/wheel/webrtcvad-wheels.svg
:target: https://pypi.python.org/pypi/webrtcvad-wheels/
.. image:: https://img.shields.io/pypi/dm/webrtcvad-wheels.svg?logo=python
:target: https://pypi.python.org/pypi/webrtcvad-wheels/
.. image:: https://github.com/daanzu/py-webrtcvad-wheels/actions/workflows/build.yml/badge.svg
:target: https://github.com/daanzu/py-webrtcvad-wheels/actions/workflows/build.yml
.. image:: https://img.shields.io/badge/donate-PayPal-green.svg
:target: https://paypal.me/daanzu
.. image:: https://img.shields.io/badge/donate-GitHub-pink.svg
:target: https://github.com/sponsors/daanzu
py-webrtcvad-wheels
===================
This is a python interface to the WebRTC Voice Activity Detector (VAD).
It is forked from
`wiseman/py-webrtcvad <https://github.com/wiseman/py-webrtcvad>`_ to
provide updated releases with binary wheels.
A `VAD <https://en.wikipedia.org/wiki/Voice_activity_detection>`_
classifies a piece of audio data as being voiced or unvoiced. It can
be useful for telephony and speech recognition.
The VAD that Google developed for the `WebRTC <https://webrtc.org/>`_
project is reportedly one of the best available, being fast, modern
and free.
How to use it
-------------
0. Install the webrtcvad module::
pip install webrtcvad-wheels
1. Create a ``Vad`` object::
import webrtcvad
vad = webrtcvad.Vad()
2. Optionally, set its aggressiveness mode, which is an integer
between 0 and 3. 0 is the least aggressive about filtering out
non-speech, 3 is the most aggressive. (You can also set the mode
when you create the VAD, e.g. ``vad = webrtcvad.Vad(3)``)::
vad.set_mode(1)
3. Give it a short segment ("frame") of audio. The WebRTC VAD only
accepts 16-bit mono PCM audio, sampled at 8000, 16000, 32000 or 48000 Hz.
A frame must be either 10, 20, or 30 ms in duration::
# Run the VAD on 10 ms of silence. The result should be False.
sample_rate = 16000
frame_duration = 10 # ms
frame = b'\x00\x00' * int(sample_rate * frame_duration / 1000)
print 'Contains speech: %s' % (vad.is_speech(frame, sample_rate)
See `example.py
<https://github.com/daanzu/py-webrtcvad-wheels/blob/master/example.py>`_ for
a more detailed example that will process a .wav file, find the voiced
segments, and write each one as a separate .wav.
How to run unit tests
---------------------
To run unit tests::
pip install -e ".[dev]"
python setup.py test
History
-------
2.0.13
* Add tests for memory leaks.
* Fix memory leak in constructing `Vad` objects.
2.0.12
* Add Python 3.12 & 3.13 builds.
* Fix `pkg_resources` usage for Python 3.12+.
2.0.11.post1
* Force build of new wheels.
2.0.11
* Fix out-of-bounds memory read in WebRtcVad_FindMinimum.
* Add Python 3.10 & 3.11 builds.
* Add PPC support & builds.
* Implement CI/CD with GitHub Actions instead.
2.0.10.post2
* Revert updating to the latest webrtcvad upstream version, as it breaks build.
* Tweak CI/CD configuration.
* Add Python 3.9 build.
2.0.10.post1
* Merge various changes from upstream.
* Implement CI/CD with Travis CI.
FORK
2.0.10
* Fixed memory leak. Thank you, `bond005 <https://github.com/bond005>`_!
2.0.9
* Improved example code. Added WebRTC license.
2.0.8
* Fixed Windows compilation errors. Thank you, `xiongyihui <https://github.com/xiongyihui>`_!
Raw data
{
"_id": null,
"home_page": "https://github.com/daanzu/py-webrtcvad-wheels",
"name": "webrtcvad-wheels",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": "speechrecognition asr voiceactivitydetection vad webrtc",
"author": "David Zurow",
"author_email": "daanzu@gmail.com",
"download_url": "https://files.pythonhosted.org/packages/4b/86/e9a233ced56162dc77bc0f7b9a01dab954379920cd991080acd940155267/webrtcvad_wheels-2.0.13.tar.gz",
"platform": null,
"description": ".. image:: https://img.shields.io/pypi/v/webrtcvad-wheels.svg\n :target: https://pypi.python.org/pypi/webrtcvad-wheels/\n.. image:: https://img.shields.io/pypi/pyversions/webrtcvad-wheels.svg\n :target: https://pypi.python.org/pypi/webrtcvad-wheels/\n.. image:: https://img.shields.io/pypi/wheel/webrtcvad-wheels.svg\n :target: https://pypi.python.org/pypi/webrtcvad-wheels/\n.. image:: https://img.shields.io/pypi/dm/webrtcvad-wheels.svg?logo=python\n :target: https://pypi.python.org/pypi/webrtcvad-wheels/\n.. image:: https://github.com/daanzu/py-webrtcvad-wheels/actions/workflows/build.yml/badge.svg\n :target: https://github.com/daanzu/py-webrtcvad-wheels/actions/workflows/build.yml\n.. image:: https://img.shields.io/badge/donate-PayPal-green.svg\n :target: https://paypal.me/daanzu\n.. image:: https://img.shields.io/badge/donate-GitHub-pink.svg\n :target: https://github.com/sponsors/daanzu\n\npy-webrtcvad-wheels\n===================\n\nThis is a python interface to the WebRTC Voice Activity Detector (VAD).\nIt is forked from\n`wiseman/py-webrtcvad <https://github.com/wiseman/py-webrtcvad>`_ to\nprovide updated releases with binary wheels.\n\nA `VAD <https://en.wikipedia.org/wiki/Voice_activity_detection>`_\nclassifies a piece of audio data as being voiced or unvoiced. It can\nbe useful for telephony and speech recognition.\n\nThe VAD that Google developed for the `WebRTC <https://webrtc.org/>`_\nproject is reportedly one of the best available, being fast, modern\nand free.\n\nHow to use it\n-------------\n\n0. Install the webrtcvad module::\n\n pip install webrtcvad-wheels\n\n1. Create a ``Vad`` object::\n\n import webrtcvad\n vad = webrtcvad.Vad()\n\n2. Optionally, set its aggressiveness mode, which is an integer\n between 0 and 3. 0 is the least aggressive about filtering out\n non-speech, 3 is the most aggressive. (You can also set the mode\n when you create the VAD, e.g. ``vad = webrtcvad.Vad(3)``)::\n\n vad.set_mode(1)\n\n3. Give it a short segment (\"frame\") of audio. The WebRTC VAD only\n accepts 16-bit mono PCM audio, sampled at 8000, 16000, 32000 or 48000 Hz.\n A frame must be either 10, 20, or 30 ms in duration::\n\n # Run the VAD on 10 ms of silence. The result should be False.\n sample_rate = 16000\n frame_duration = 10 # ms\n frame = b'\\x00\\x00' * int(sample_rate * frame_duration / 1000)\n print 'Contains speech: %s' % (vad.is_speech(frame, sample_rate)\n\n\nSee `example.py\n<https://github.com/daanzu/py-webrtcvad-wheels/blob/master/example.py>`_ for\na more detailed example that will process a .wav file, find the voiced\nsegments, and write each one as a separate .wav.\n\n\nHow to run unit tests\n---------------------\n\nTo run unit tests::\n\n pip install -e \".[dev]\"\n python setup.py test\n\n\nHistory\n-------\n\n2.0.13\n\n* Add tests for memory leaks.\n* Fix memory leak in constructing `Vad` objects.\n\n2.0.12\n\n* Add Python 3.12 & 3.13 builds.\n* Fix `pkg_resources` usage for Python 3.12+.\n\n2.0.11.post1\n\n* Force build of new wheels.\n\n2.0.11\n\n* Fix out-of-bounds memory read in WebRtcVad_FindMinimum.\n* Add Python 3.10 & 3.11 builds.\n* Add PPC support & builds.\n* Implement CI/CD with GitHub Actions instead.\n\n2.0.10.post2\n\n* Revert updating to the latest webrtcvad upstream version, as it breaks build.\n* Tweak CI/CD configuration.\n* Add Python 3.9 build.\n\n2.0.10.post1\n\n* Merge various changes from upstream.\n* Implement CI/CD with Travis CI.\n\nFORK\n\n2.0.10\n\n* Fixed memory leak. Thank you, `bond005 <https://github.com/bond005>`_!\n\n2.0.9\n\n* Improved example code. Added WebRTC license.\n\n2.0.8\n\n* Fixed Windows compilation errors. Thank you, `xiongyihui <https://github.com/xiongyihui>`_!\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "Python interface to the Google WebRTC Voice Activity Detector (VAD) [released with binary wheels!]",
"version": "2.0.13",
"project_urls": {
"Homepage": "https://github.com/daanzu/py-webrtcvad-wheels"
},
"split_keywords": [
"speechrecognition",
"asr",
"voiceactivitydetection",
"vad",
"webrtc"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "27763cf9b01d0beb119d43e679568ffd3e017275365b97f9453f13131d7f1d5b",
"md5": "30437b7f29640ce2a510faa363b1f91c",
"sha256": "1e05eadd5e6fb0e7cc4ba920039207c96179d34d7fe1ba97a89cdd22dce2feac"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "30437b7f29640ce2a510faa363b1f91c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 30771,
"upload_time": "2024-09-04T15:28:29",
"upload_time_iso_8601": "2024-09-04T15:28:29.154425Z",
"url": "https://files.pythonhosted.org/packages/27/76/3cf9b01d0beb119d43e679568ffd3e017275365b97f9453f13131d7f1d5b/webrtcvad_wheels-2.0.13-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b12498677cbb83288374f10e8236d024c9296ba270e2d15e2910f2bd648e57f2",
"md5": "e67018c895ceb04701638a222448441d",
"sha256": "b5242255846b58d39da3da2ad7d3c1beab637f22d79a6449a11eb992fba686a5"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "e67018c895ceb04701638a222448441d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 29266,
"upload_time": "2024-09-04T15:28:30",
"upload_time_iso_8601": "2024-09-04T15:28:30.578875Z",
"url": "https://files.pythonhosted.org/packages/b1/24/98677cbb83288374f10e8236d024c9296ba270e2d15e2910f2bd648e57f2/webrtcvad_wheels-2.0.13-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "99979344286469d431d25ab4dec55445e56555321855d431d045d9daa666d07f",
"md5": "d9ad916fd393921e00982f0b2ba05f05",
"sha256": "3a625536cebf075698536aacb569622aebc9b6b87d752e94ca657512a0ba91b6"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "d9ad916fd393921e00982f0b2ba05f05",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 86042,
"upload_time": "2024-09-04T15:28:31",
"upload_time_iso_8601": "2024-09-04T15:28:31.799298Z",
"url": "https://files.pythonhosted.org/packages/99/97/9344286469d431d25ab4dec55445e56555321855d431d045d9daa666d07f/webrtcvad_wheels-2.0.13-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a31965dc1b1aeefad66c1153e4639f715e00f13e4e00430f28e3421ed7db146a",
"md5": "d84c88a71704fb84dcd376ac3b024fa4",
"sha256": "de82fffbdd91c40f493f76e9c40054ce861f5972686c4f5e7d5a60465d8a6b01"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "d84c88a71704fb84dcd376ac3b024fa4",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 95499,
"upload_time": "2024-09-04T15:28:33",
"upload_time_iso_8601": "2024-09-04T15:28:33.193754Z",
"url": "https://files.pythonhosted.org/packages/a3/19/65dc1b1aeefad66c1153e4639f715e00f13e4e00430f28e3421ed7db146a/webrtcvad_wheels-2.0.13-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f212708d68adcfdf6693c3fdb1b348391711f4d3f51caa59ddefb0ace4eb3a87",
"md5": "056e5b30fa89d62ce0b74f786d6b7da8",
"sha256": "8583fa14dc0190c5161ddc990d46b84d82106802941d23310a297ed8a0ae9208"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "056e5b30fa89d62ce0b74f786d6b7da8",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 82821,
"upload_time": "2024-09-04T15:28:34",
"upload_time_iso_8601": "2024-09-04T15:28:34.307240Z",
"url": "https://files.pythonhosted.org/packages/f2/12/708d68adcfdf6693c3fdb1b348391711f4d3f51caa59ddefb0ace4eb3a87/webrtcvad_wheels-2.0.13-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "050cc249063f5096f6b5612dc528e79e1834053f0c1fd89d2fb78b13b4f960c0",
"md5": "7279128262ee2dc64b65dc91524dcc7f",
"sha256": "875f086f8110482e833269ecadf619d131924ddb57e5f7b466a5f1b7b3f55856"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "7279128262ee2dc64b65dc91524dcc7f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 80709,
"upload_time": "2024-09-04T15:28:35",
"upload_time_iso_8601": "2024-09-04T15:28:35.448054Z",
"url": "https://files.pythonhosted.org/packages/05/0c/c249063f5096f6b5612dc528e79e1834053f0c1fd89d2fb78b13b4f960c0/webrtcvad_wheels-2.0.13-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8ad2416e1aba0e6c4ec1ae196b28695ccea785eadd44836846a0405a7915a23a",
"md5": "9c9ea63e78e449af457c632145032ff7",
"sha256": "680e10346cabddf4c7a9dd4bec61bed15c05877fb529f4c94c4f50662639a743"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "9c9ea63e78e449af457c632145032ff7",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 86229,
"upload_time": "2024-09-04T15:28:36",
"upload_time_iso_8601": "2024-09-04T15:28:36.701794Z",
"url": "https://files.pythonhosted.org/packages/8a/d2/416e1aba0e6c4ec1ae196b28695ccea785eadd44836846a0405a7915a23a/webrtcvad_wheels-2.0.13-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "434bb29d72bcc623fa2f60d94dd06f7b5eff76c115e8b9d887a06061388d3d22",
"md5": "badfbea556e647181d44a927c0041439",
"sha256": "2c4320de42c27a5e7567a96ad9af31b662d2e2ba4c0e48462b152f39985cba57"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "badfbea556e647181d44a927c0041439",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 82411,
"upload_time": "2024-09-04T15:28:38",
"upload_time_iso_8601": "2024-09-04T15:28:38.424549Z",
"url": "https://files.pythonhosted.org/packages/43/4b/b29d72bcc623fa2f60d94dd06f7b5eff76c115e8b9d887a06061388d3d22/webrtcvad_wheels-2.0.13-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "733c948fad70c6183e2e26a2b9b1f459f6097ce43fb6b8494666ba78e0ee1532",
"md5": "1d4b4639d672503d76612953ecbc4517",
"sha256": "22eadaf78a5b7b4b1e4f2760215cc66059ed727aca02e14f47d725bef051e39a"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp310-cp310-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "1d4b4639d672503d76612953ecbc4517",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 93380,
"upload_time": "2024-09-04T15:28:40",
"upload_time_iso_8601": "2024-09-04T15:28:40.069107Z",
"url": "https://files.pythonhosted.org/packages/73/3c/948fad70c6183e2e26a2b9b1f459f6097ce43fb6b8494666ba78e0ee1532/webrtcvad_wheels-2.0.13-cp310-cp310-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7c50e8f2f9badf022fe4522b6bf587c18e43c3d8ebb9980bd3778802a6a016a5",
"md5": "426cf21fb47f0a97bd83cfd22f4085db",
"sha256": "c6658d541e378f37cae0d78942a108f9c48659e23f79b9288544167ddbf1e382"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "426cf21fb47f0a97bd83cfd22f4085db",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 86730,
"upload_time": "2024-09-04T15:28:41",
"upload_time_iso_8601": "2024-09-04T15:28:41.052136Z",
"url": "https://files.pythonhosted.org/packages/7c/50/e8f2f9badf022fe4522b6bf587c18e43c3d8ebb9980bd3778802a6a016a5/webrtcvad_wheels-2.0.13-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "94218cefcb8b90724fb22ae2a59890fa042036ca3b24242e0eebee4356d75054",
"md5": "43b618929e8940a5e983548f0f03b807",
"sha256": "ee8143b7e0b2f362f916f3b17cd46887dae08d53db997b748fe492991027ee2b"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "43b618929e8940a5e983548f0f03b807",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 17134,
"upload_time": "2024-09-04T15:28:42",
"upload_time_iso_8601": "2024-09-04T15:28:42.115646Z",
"url": "https://files.pythonhosted.org/packages/94/21/8cefcb8b90724fb22ae2a59890fa042036ca3b24242e0eebee4356d75054/webrtcvad_wheels-2.0.13-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7bfd2591ed49441a96c914a30ebafaff853f82a3b18ea836cbf253ad9b76cff9",
"md5": "3a66c1a1087c659b99ee2c6a01ac69c6",
"sha256": "f4efc937bc9cd812c2092969214277775e6448f0ef43d3ee2ace142c6d9f50d8"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "3a66c1a1087c659b99ee2c6a01ac69c6",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 19667,
"upload_time": "2024-09-04T15:28:43",
"upload_time_iso_8601": "2024-09-04T15:28:43.417972Z",
"url": "https://files.pythonhosted.org/packages/7b/fd/2591ed49441a96c914a30ebafaff853f82a3b18ea836cbf253ad9b76cff9/webrtcvad_wheels-2.0.13-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ac08307555b506d821e028f6c11123f072803f0bfaf732187f8f6a17f803b78a",
"md5": "5b014cec4d96d61999c152d03dde8d52",
"sha256": "9f2ea9eb2cd3e96ec99516cfb578e26071ab054207dec77115eef4d7219e21af"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "5b014cec4d96d61999c152d03dde8d52",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 30772,
"upload_time": "2024-09-04T15:28:44",
"upload_time_iso_8601": "2024-09-04T15:28:44.299292Z",
"url": "https://files.pythonhosted.org/packages/ac/08/307555b506d821e028f6c11123f072803f0bfaf732187f8f6a17f803b78a/webrtcvad_wheels-2.0.13-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3004e5e4606718f7ae3b767ee644bcb1c55627e26287515f332feaf6f19185dd",
"md5": "789ffc1efd94e44c5a64bec608610453",
"sha256": "5e5e7b663c87ea66e3a636b6382e6f4e8216b530de2a679a9bf82d9d86016f84"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "789ffc1efd94e44c5a64bec608610453",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 29267,
"upload_time": "2024-09-04T15:28:45",
"upload_time_iso_8601": "2024-09-04T15:28:45.620424Z",
"url": "https://files.pythonhosted.org/packages/30/04/e5e4606718f7ae3b767ee644bcb1c55627e26287515f332feaf6f19185dd/webrtcvad_wheels-2.0.13-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7505e74016e4e59a4e5ba27c0c15cb7730d3c72b6e1ac429d94f391c3f6fd0d3",
"md5": "026b64d86817ad946f0839a829089426",
"sha256": "50f00c2b27f4eaab404378498132aa17be943aa757dc0a8b0df7aef04d02cc4e"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "026b64d86817ad946f0839a829089426",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 86060,
"upload_time": "2024-09-04T15:28:46",
"upload_time_iso_8601": "2024-09-04T15:28:46.938740Z",
"url": "https://files.pythonhosted.org/packages/75/05/e74016e4e59a4e5ba27c0c15cb7730d3c72b6e1ac429d94f391c3f6fd0d3/webrtcvad_wheels-2.0.13-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a902db922b60fbc0593369a343f916490076419611b10081ee62a8ff526bf85b",
"md5": "9fc6bd6961af87f15f526b126fdcb4b6",
"sha256": "25ee7765e0bf6e0bc62a4a3748e7f844de568426b4e2ea666545d19a64b1275a"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "9fc6bd6961af87f15f526b126fdcb4b6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 95530,
"upload_time": "2024-09-04T15:28:47",
"upload_time_iso_8601": "2024-09-04T15:28:47.987331Z",
"url": "https://files.pythonhosted.org/packages/a9/02/db922b60fbc0593369a343f916490076419611b10081ee62a8ff526bf85b/webrtcvad_wheels-2.0.13-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d77bea941e18a01a0e82e54b8b39bfecfc2175410e55160670b97aa78ad528c6",
"md5": "540c0e9630bf3ea0c954a0c0d1f3a081",
"sha256": "43b240c270b80f49e4fdc5f09a4b04d572e6fe062d1c85a08f0de0efee0a1615"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "540c0e9630bf3ea0c954a0c0d1f3a081",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 82848,
"upload_time": "2024-09-04T15:28:49",
"upload_time_iso_8601": "2024-09-04T15:28:49.461425Z",
"url": "https://files.pythonhosted.org/packages/d7/7b/ea941e18a01a0e82e54b8b39bfecfc2175410e55160670b97aa78ad528c6/webrtcvad_wheels-2.0.13-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "044d60161d8c04b10c178a6fc38ad9d133c7fe272de0b80a8e3e1a8d9382b8ff",
"md5": "d6d9d9330ef7c16f6224716d38db592c",
"sha256": "57b766a64ff5d5c04b0e7ecf1383239d11506118a83efe7d9e8fff750a6a3f65"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "d6d9d9330ef7c16f6224716d38db592c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 80750,
"upload_time": "2024-09-04T15:28:51",
"upload_time_iso_8601": "2024-09-04T15:28:51.035911Z",
"url": "https://files.pythonhosted.org/packages/04/4d/60161d8c04b10c178a6fc38ad9d133c7fe272de0b80a8e3e1a8d9382b8ff/webrtcvad_wheels-2.0.13-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9b004adcc733ed9e7bb82531e90b79dd0560d94867d62434052fb1af0f90c52b",
"md5": "cf8b17f821b9117f6f58c40ee82042aa",
"sha256": "40190f3175acc9566f21148841422c062e6773beedfbe67696065431b0b55eff"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "cf8b17f821b9117f6f58c40ee82042aa",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 86259,
"upload_time": "2024-09-04T15:28:52",
"upload_time_iso_8601": "2024-09-04T15:28:52.926766Z",
"url": "https://files.pythonhosted.org/packages/9b/00/4adcc733ed9e7bb82531e90b79dd0560d94867d62434052fb1af0f90c52b/webrtcvad_wheels-2.0.13-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "773c9b6b0886b69516398d92c5a8b4d917da1cadbe34e78e0990ba9926851654",
"md5": "a41bc7a6e1173955c327404c3e275dbf",
"sha256": "f74b8692a006e82c424c4a9678fdc7eb0c6ddd20f35923c9c8d58457ee901bae"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "a41bc7a6e1173955c327404c3e275dbf",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 82433,
"upload_time": "2024-09-04T15:28:54",
"upload_time_iso_8601": "2024-09-04T15:28:54.002193Z",
"url": "https://files.pythonhosted.org/packages/77/3c/9b6b0886b69516398d92c5a8b4d917da1cadbe34e78e0990ba9926851654/webrtcvad_wheels-2.0.13-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "273c73e33dfaadb985a77feb29095fd928090c409ae207f7b04905ba5decc655",
"md5": "edfcb985e69b7a41aba435b874e3b68f",
"sha256": "235f9f525dc143ac6a2d2431fb65556d8a29ca570b982d954145f5e372994ccf"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp311-cp311-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "edfcb985e69b7a41aba435b874e3b68f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 93411,
"upload_time": "2024-09-04T15:28:55",
"upload_time_iso_8601": "2024-09-04T15:28:55.463994Z",
"url": "https://files.pythonhosted.org/packages/27/3c/73e33dfaadb985a77feb29095fd928090c409ae207f7b04905ba5decc655/webrtcvad_wheels-2.0.13-cp311-cp311-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c4931239f784bcd50165b6c51fc9c3cd3e32ce3f7439e315b8a9108db297028a",
"md5": "2831e05e798bf91be020eb40f537e267",
"sha256": "1020b54954326d1d3705f69e14a86db4320a867333069ddf7074522d5577e486"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "2831e05e798bf91be020eb40f537e267",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 86780,
"upload_time": "2024-09-04T15:28:56",
"upload_time_iso_8601": "2024-09-04T15:28:56.491760Z",
"url": "https://files.pythonhosted.org/packages/c4/93/1239f784bcd50165b6c51fc9c3cd3e32ce3f7439e315b8a9108db297028a/webrtcvad_wheels-2.0.13-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "167574fd47f2a80835d0f16c9ee20494ae69ee9a9426ded98cb5c0f28713d6af",
"md5": "25a7af889dc1f851f0ba3065b137ce4e",
"sha256": "579a645a86407f050c73fcf91270f1d734cc46602d699b9cfb07d64170bafc71"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "25a7af889dc1f851f0ba3065b137ce4e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 17139,
"upload_time": "2024-09-04T15:28:57",
"upload_time_iso_8601": "2024-09-04T15:28:57.409915Z",
"url": "https://files.pythonhosted.org/packages/16/75/74fd47f2a80835d0f16c9ee20494ae69ee9a9426ded98cb5c0f28713d6af/webrtcvad_wheels-2.0.13-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6137ee1c61d19bd1100690cfb199e8da202c94a34f664d16cfe99b26b6c850bf",
"md5": "e0a5853ea3598442d25ef49a90ea39c9",
"sha256": "0976eac435085a883a179729a8ebbb85ce67962a1fcf294e3f8347b364020fbb"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "e0a5853ea3598442d25ef49a90ea39c9",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 19674,
"upload_time": "2024-09-04T15:28:58",
"upload_time_iso_8601": "2024-09-04T15:28:58.295951Z",
"url": "https://files.pythonhosted.org/packages/61/37/ee1c61d19bd1100690cfb199e8da202c94a34f664d16cfe99b26b6c850bf/webrtcvad_wheels-2.0.13-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6ccee200eff6c2f662a82ac42ce5d90624a7f7fe594e79f154a0ef98ee2a8b06",
"md5": "98d09736b0bcf19d6b82b067133f521c",
"sha256": "15df983a0b7ab501e3e53895705e4336fe31aee5beeb16003b490e3ca0774909"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp312-cp312-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "98d09736b0bcf19d6b82b067133f521c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 30770,
"upload_time": "2024-09-04T15:28:59",
"upload_time_iso_8601": "2024-09-04T15:28:59.443811Z",
"url": "https://files.pythonhosted.org/packages/6c/ce/e200eff6c2f662a82ac42ce5d90624a7f7fe594e79f154a0ef98ee2a8b06/webrtcvad_wheels-2.0.13-cp312-cp312-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "66094c783330fb77d2b06b6181ff8ed321aac6e0e446c654bb8636b5d6c33378",
"md5": "0c363674d6011d94d379535a736efcf0",
"sha256": "8adabbfa4b8d5fc055cbeaa1bd5718d6fab4bb1dfd933e7fd278187b1320d7a8"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "0c363674d6011d94d379535a736efcf0",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 29276,
"upload_time": "2024-09-04T15:29:00",
"upload_time_iso_8601": "2024-09-04T15:29:00.606395Z",
"url": "https://files.pythonhosted.org/packages/66/09/4c783330fb77d2b06b6181ff8ed321aac6e0e446c654bb8636b5d6c33378/webrtcvad_wheels-2.0.13-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "41dfb3f4dc458505f6c49f94317e8f4843947f54d8b72774c5239f3fe8156f1c",
"md5": "b29a71fbc5fe1a1adb58fe42fa34dcf1",
"sha256": "e5e5394db5f6fb118089c1cb815b88438218b9fe16d209616bfd454ee200b982"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "b29a71fbc5fe1a1adb58fe42fa34dcf1",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 85805,
"upload_time": "2024-09-04T15:29:01",
"upload_time_iso_8601": "2024-09-04T15:29:01.872553Z",
"url": "https://files.pythonhosted.org/packages/41/df/b3f4dc458505f6c49f94317e8f4843947f54d8b72774c5239f3fe8156f1c/webrtcvad_wheels-2.0.13-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "374905ff5b4bd9d847269cdd8282bbcac34ec515e38eb587c0aed151746edfa1",
"md5": "9be58a0f063ac21ce0a049dfdbe52dcd",
"sha256": "24c6dd5a97edb381d1b0901c4db0ff1971bfe7cd59e1d5c13ec5fec6c90349fb"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "9be58a0f063ac21ce0a049dfdbe52dcd",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 95239,
"upload_time": "2024-09-04T15:29:02",
"upload_time_iso_8601": "2024-09-04T15:29:02.955828Z",
"url": "https://files.pythonhosted.org/packages/37/49/05ff5b4bd9d847269cdd8282bbcac34ec515e38eb587c0aed151746edfa1/webrtcvad_wheels-2.0.13-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fcd4fc90ff8e7d14149f6763df7d7ddef0783c190b44c2ad242985c8d17eb73b",
"md5": "9e7b4e7989ce3930be7100140c8ce967",
"sha256": "49e110e418b177e9880af081a50c22421c31985c1d5087e2435d89f397537289"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "9e7b4e7989ce3930be7100140c8ce967",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 82661,
"upload_time": "2024-09-04T15:29:04",
"upload_time_iso_8601": "2024-09-04T15:29:04.015303Z",
"url": "https://files.pythonhosted.org/packages/fc/d4/fc90ff8e7d14149f6763df7d7ddef0783c190b44c2ad242985c8d17eb73b/webrtcvad_wheels-2.0.13-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9515dcbc38103d0e1834eafaf4847c9b52617545edfe3716a1ec456971cc9668",
"md5": "b9f95146dc23dcca554f81f2ac9a91ac",
"sha256": "03fc88c0d2db8f23edca4b073983d7eddebda2312a021a41af624809e5e7642d"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "b9f95146dc23dcca554f81f2ac9a91ac",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 80576,
"upload_time": "2024-09-04T15:29:05",
"upload_time_iso_8601": "2024-09-04T15:29:05.496941Z",
"url": "https://files.pythonhosted.org/packages/95/15/dcbc38103d0e1834eafaf4847c9b52617545edfe3716a1ec456971cc9668/webrtcvad_wheels-2.0.13-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "15944d7da0266ba5251ffccdc68e9ed32d46ccf2bdf6b36e4b2ee1587409aaa9",
"md5": "f4f482518199038b97b5efe519beb813",
"sha256": "0a319a93cc2638e9d875bee401cc1a8f9420e92022f0e0948174dfeb308b328e"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "f4f482518199038b97b5efe519beb813",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 86035,
"upload_time": "2024-09-04T15:29:06",
"upload_time_iso_8601": "2024-09-04T15:29:06.511314Z",
"url": "https://files.pythonhosted.org/packages/15/94/4d7da0266ba5251ffccdc68e9ed32d46ccf2bdf6b36e4b2ee1587409aaa9/webrtcvad_wheels-2.0.13-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "312fd3b9d30c52d964fba4815311afed3bc50351a141766d5963a3aa72fe0a25",
"md5": "798c1fcd9e503dd9b8de76e08b079c64",
"sha256": "5bda736a7490e214e68d2e1a99774864ecf26b5364f77df52a5adfe90dd2a2de"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "798c1fcd9e503dd9b8de76e08b079c64",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 82372,
"upload_time": "2024-09-04T15:29:07",
"upload_time_iso_8601": "2024-09-04T15:29:07.895996Z",
"url": "https://files.pythonhosted.org/packages/31/2f/d3b9d30c52d964fba4815311afed3bc50351a141766d5963a3aa72fe0a25/webrtcvad_wheels-2.0.13-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "382e3d4d91dfab59f79d9b4e6a687f1d77b77a92569b348904f959342f711527",
"md5": "274715f0adaf8440d6ec95ecfbfa27ef",
"sha256": "e8840c9231409e07d298abbbc9b836b4092ee9f6abeefaedb8db105bd2808fc3"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp312-cp312-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "274715f0adaf8440d6ec95ecfbfa27ef",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 93130,
"upload_time": "2024-09-04T15:29:08",
"upload_time_iso_8601": "2024-09-04T15:29:08.968878Z",
"url": "https://files.pythonhosted.org/packages/38/2e/3d4d91dfab59f79d9b4e6a687f1d77b77a92569b348904f959342f711527/webrtcvad_wheels-2.0.13-cp312-cp312-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "34330ad94ad6e9108a057391e3a355b9e38812e74fa52683cd5c5f03603afa2b",
"md5": "588c2343bfd61d3780684431ae0d15ea",
"sha256": "9faa8ca54bad0fa664f6a47cb667043212203262d6d3acb47a603dcf8807325b"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "588c2343bfd61d3780684431ae0d15ea",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 86706,
"upload_time": "2024-09-04T15:29:10",
"upload_time_iso_8601": "2024-09-04T15:29:10.431885Z",
"url": "https://files.pythonhosted.org/packages/34/33/0ad94ad6e9108a057391e3a355b9e38812e74fa52683cd5c5f03603afa2b/webrtcvad_wheels-2.0.13-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "33e3458a31c382b984952eb091b2b2413ac5c1a8bc222aa3cecd696592163755",
"md5": "57e354f6b02c8a9b662c102f6d426f30",
"sha256": "5669c6cad98a1ba1b0e43654685d2f33d8aa5d2307a6f640733bbaba125084a3"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "57e354f6b02c8a9b662c102f6d426f30",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 17133,
"upload_time": "2024-09-04T15:29:11",
"upload_time_iso_8601": "2024-09-04T15:29:11.836746Z",
"url": "https://files.pythonhosted.org/packages/33/e3/458a31c382b984952eb091b2b2413ac5c1a8bc222aa3cecd696592163755/webrtcvad_wheels-2.0.13-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e4000add0dde77d3f84595f7440e4b2de39725a31a05f19b04aed5d2567416a4",
"md5": "50f1134bb571a55bf51a6699078d94de",
"sha256": "54c4c3e9d15e10879aaae4c3b7738223dfb45877e8d8d6152833b0fe301c80a8"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "50f1134bb571a55bf51a6699078d94de",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 19671,
"upload_time": "2024-09-04T15:29:12",
"upload_time_iso_8601": "2024-09-04T15:29:12.720710Z",
"url": "https://files.pythonhosted.org/packages/e4/00/0add0dde77d3f84595f7440e4b2de39725a31a05f19b04aed5d2567416a4/webrtcvad_wheels-2.0.13-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f98997a9e1df45c0d34af6884dbd4765b398dab2c847cd21963f1225963ee5da",
"md5": "644cb61522c9eb8311b5a7bdd08096cd",
"sha256": "3eaffbdc35ee473730a6dbf09125d883c6f7a0ff9a80317d70acd34261c36379"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp313-cp313-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "644cb61522c9eb8311b5a7bdd08096cd",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 32531,
"upload_time": "2024-09-04T15:29:13",
"upload_time_iso_8601": "2024-09-04T15:29:13.904064Z",
"url": "https://files.pythonhosted.org/packages/f9/89/97a9e1df45c0d34af6884dbd4765b398dab2c847cd21963f1225963ee5da/webrtcvad_wheels-2.0.13-cp313-cp313-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "403cc91c701e6a5111bdf492634e8c2f9c6e911495412d9a7d34dc8ee57f2c9b",
"md5": "a0e6341bd12741097aae2b3c3ebd85d1",
"sha256": "02d7a1e9561bad7d41ba5847568932a36be38e538f2a7a81dad1fbced379f0fa"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "a0e6341bd12741097aae2b3c3ebd85d1",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 29284,
"upload_time": "2024-09-04T15:29:15",
"upload_time_iso_8601": "2024-09-04T15:29:15.040357Z",
"url": "https://files.pythonhosted.org/packages/40/3c/c91c701e6a5111bdf492634e8c2f9c6e911495412d9a7d34dc8ee57f2c9b/webrtcvad_wheels-2.0.13-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "14bdd0d61ad521205c8cd18c58656572a9c68e83019802a157c561e74205d33d",
"md5": "d6f4b0016e2dd0dcc0f0c80bfcbe6cef",
"sha256": "32f2a40d60b700707aa26a952e3c7bfd9c06e032be90e341efad55759daaf006"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "d6f4b0016e2dd0dcc0f0c80bfcbe6cef",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 85754,
"upload_time": "2024-09-04T15:29:16",
"upload_time_iso_8601": "2024-09-04T15:29:16.242352Z",
"url": "https://files.pythonhosted.org/packages/14/bd/d0d61ad521205c8cd18c58656572a9c68e83019802a157c561e74205d33d/webrtcvad_wheels-2.0.13-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "394a284f1c232723cebab50a15ec289809f73901bc5e069e2d7bb7f79fd9fc29",
"md5": "58a68da13d0d0dd0f395b03006af115a",
"sha256": "52e5da5b7c1e3eb26e95552152a85c3b0337680aaea68e0661f024ddf823cbc6"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "58a68da13d0d0dd0f395b03006af115a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 95193,
"upload_time": "2024-09-04T15:29:17",
"upload_time_iso_8601": "2024-09-04T15:29:17.733641Z",
"url": "https://files.pythonhosted.org/packages/39/4a/284f1c232723cebab50a15ec289809f73901bc5e069e2d7bb7f79fd9fc29/webrtcvad_wheels-2.0.13-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ce0a1b80ef6f63c0437710170e6755036f32d8a0c670a28d640bd16f790e74c6",
"md5": "07d88ff81282834201b183c7d0ce727e",
"sha256": "230f8772d8a5a0c24f5b844b98ae09c5598fbf7e1470c289fa63f4010d102c14"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "07d88ff81282834201b183c7d0ce727e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 82630,
"upload_time": "2024-09-04T15:29:18",
"upload_time_iso_8601": "2024-09-04T15:29:18.887934Z",
"url": "https://files.pythonhosted.org/packages/ce/0a/1b80ef6f63c0437710170e6755036f32d8a0c670a28d640bd16f790e74c6/webrtcvad_wheels-2.0.13-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f6a7dc0cd78ef7518138530811084b609c4538c5c4ab07c539cb24fe3b6d86ed",
"md5": "90964bf7233bc5459a3b86b242fecf4a",
"sha256": "9e1c70f68d463417217334281baa3fc9991f0d1100e598973a49ea02fce4ce80"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "90964bf7233bc5459a3b86b242fecf4a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 80542,
"upload_time": "2024-09-04T15:29:20",
"upload_time_iso_8601": "2024-09-04T15:29:20.324230Z",
"url": "https://files.pythonhosted.org/packages/f6/a7/dc0cd78ef7518138530811084b609c4538c5c4ab07c539cb24fe3b6d86ed/webrtcvad_wheels-2.0.13-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "84770f905d4cddb6d19e16b77bea9d49dcad0ba95b26e3767b11e04d8f4ad9ce",
"md5": "43b5288993570068312a4c45c5fd9849",
"sha256": "97d07aec425a0def5d50443943f878037fd4e75992b9eb1e4d8917d1092b7eb5"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "43b5288993570068312a4c45c5fd9849",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 86081,
"upload_time": "2024-09-04T15:29:21",
"upload_time_iso_8601": "2024-09-04T15:29:21.380054Z",
"url": "https://files.pythonhosted.org/packages/84/77/0f905d4cddb6d19e16b77bea9d49dcad0ba95b26e3767b11e04d8f4ad9ce/webrtcvad_wheels-2.0.13-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "43d5554d661b06950293cfa948784137c02348f77352e75e0e8d6c3d4baaac69",
"md5": "7ccb3d78c1e297ca67ecf816ec4e05f0",
"sha256": "8cc4398decf606b4469c3687d7c0e81dd532f650d3d40780708ccb77be95a866"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp313-cp313-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "7ccb3d78c1e297ca67ecf816ec4e05f0",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 82396,
"upload_time": "2024-09-04T15:29:22",
"upload_time_iso_8601": "2024-09-04T15:29:22.896947Z",
"url": "https://files.pythonhosted.org/packages/43/d5/554d661b06950293cfa948784137c02348f77352e75e0e8d6c3d4baaac69/webrtcvad_wheels-2.0.13-cp313-cp313-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "40dc973bde5a5f49b06ebe72f8ed2bd39777cf2093f76b8b15546c78a89b8ccc",
"md5": "728022f62566570ba57d2be68de57b53",
"sha256": "1598a933fe33badf3ae78331648f2cf345c79c1a96ad8e7de82167ae9fb5d586"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp313-cp313-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "728022f62566570ba57d2be68de57b53",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 93168,
"upload_time": "2024-09-04T15:29:23",
"upload_time_iso_8601": "2024-09-04T15:29:23.975591Z",
"url": "https://files.pythonhosted.org/packages/40/dc/973bde5a5f49b06ebe72f8ed2bd39777cf2093f76b8b15546c78a89b8ccc/webrtcvad_wheels-2.0.13-cp313-cp313-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "630e011c02e36099425d5309acc79436950ac2ee4a672503a4fe52f5c6ffb4d5",
"md5": "9b90d7994495ea67ab299b6844e0f095",
"sha256": "7d7513a3aaef14eea7711ac9706ac1caab8d569b3ceb408a1a9f608b71be322b"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "9b90d7994495ea67ab299b6844e0f095",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 86743,
"upload_time": "2024-09-04T15:29:25",
"upload_time_iso_8601": "2024-09-04T15:29:25.021167Z",
"url": "https://files.pythonhosted.org/packages/63/0e/011c02e36099425d5309acc79436950ac2ee4a672503a4fe52f5c6ffb4d5/webrtcvad_wheels-2.0.13-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5cc1eefa874da7e8327e20ee69a92c3e102415c08689d9dfe3f19f72fdf109c9",
"md5": "be34d76b4681fd7796dc66c9855ed534",
"sha256": "9fedf25449b84beed22725ba0e65d07cb7d4b2e5b997dde139561442ce64dcf2"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "be34d76b4681fd7796dc66c9855ed534",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 17134,
"upload_time": "2024-09-04T15:29:26",
"upload_time_iso_8601": "2024-09-04T15:29:26.118027Z",
"url": "https://files.pythonhosted.org/packages/5c/c1/eefa874da7e8327e20ee69a92c3e102415c08689d9dfe3f19f72fdf109c9/webrtcvad_wheels-2.0.13-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ba77660c7f38fd8c3e441162e51e1c06b5f2666ee4cecdc5f085a59d6dccaa7e",
"md5": "2bb94486657108c30fb93db5d3740373",
"sha256": "8768fa9b848ad216cbdea43431605874030bcb898bad08f684bd6fdeb98afc83"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "2bb94486657108c30fb93db5d3740373",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 19669,
"upload_time": "2024-09-04T15:29:27",
"upload_time_iso_8601": "2024-09-04T15:29:27.176387Z",
"url": "https://files.pythonhosted.org/packages/ba/77/660c7f38fd8c3e441162e51e1c06b5f2666ee4cecdc5f085a59d6dccaa7e/webrtcvad_wheels-2.0.13-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8ac0b36be10d5b6fa087a7c5f360b36179a88d41f3c5e5b6ab92ceedcb228ade",
"md5": "5d7815d69f0fb3f2308631d729e8e7d0",
"sha256": "3d5441ac02da89b1a5a483520c5bfed7e731cdebc3d4bc969645315e23752a04"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp36-cp36m-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "5d7815d69f0fb3f2308631d729e8e7d0",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 30605,
"upload_time": "2024-09-04T15:29:28",
"upload_time_iso_8601": "2024-09-04T15:29:28.104218Z",
"url": "https://files.pythonhosted.org/packages/8a/c0/b36be10d5b6fa087a7c5f360b36179a88d41f3c5e5b6ab92ceedcb228ade/webrtcvad_wheels-2.0.13-cp36-cp36m-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "de0c5ae01df05176cc19872dde71e5baeca166cc268cb7e5bd9bf7cff1cda136",
"md5": "6cea2fd0e551a9f5f8b5271693f66938",
"sha256": "77826ce7b17cf5738bf1b1f3166daccd21112a9dcdd6d503049bdbeff84e97ee"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "6cea2fd0e551a9f5f8b5271693f66938",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 85966,
"upload_time": "2024-09-04T15:29:29",
"upload_time_iso_8601": "2024-09-04T15:29:29.133073Z",
"url": "https://files.pythonhosted.org/packages/de/0c/5ae01df05176cc19872dde71e5baeca166cc268cb7e5bd9bf7cff1cda136/webrtcvad_wheels-2.0.13-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "49e7cb4c210e805ac2535fec21dc85cfbe6d4d52bbcd5b327e90497f7693a9c5",
"md5": "eed54a19df549e705ee19eda03739120",
"sha256": "becb00c2357dc49669f965d1d72c73d4681daec9aebf67f6138f6c6d5aabdba0"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "eed54a19df549e705ee19eda03739120",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 95456,
"upload_time": "2024-09-04T15:29:30",
"upload_time_iso_8601": "2024-09-04T15:29:30.328816Z",
"url": "https://files.pythonhosted.org/packages/49/e7/cb4c210e805ac2535fec21dc85cfbe6d4d52bbcd5b327e90497f7693a9c5/webrtcvad_wheels-2.0.13-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4c9c5040379cb098fe32f63eb0d39d4a581851578a1e4952ed453dad1e5d535f",
"md5": "655d1d6d1fe8022d0ac897f17429831d",
"sha256": "997c4275c501a1b12bedfcbb2ced539e680558cd6df5a04b5bf8c273287a5c17"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "655d1d6d1fe8022d0ac897f17429831d",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 82874,
"upload_time": "2024-09-04T15:29:32",
"upload_time_iso_8601": "2024-09-04T15:29:32.607498Z",
"url": "https://files.pythonhosted.org/packages/4c/9c/5040379cb098fe32f63eb0d39d4a581851578a1e4952ed453dad1e5d535f/webrtcvad_wheels-2.0.13-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dfb50a2d06d8821115245fd5bbd15d07304dea2d1274c7fcd0841d26ad486cd8",
"md5": "8bfecb1fbaf44a11e8eb93503fcec307",
"sha256": "09349278e20991510fd9709df62c8a857500f5f22cd5f11bba8f8bb505ccb62c"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "8bfecb1fbaf44a11e8eb93503fcec307",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 80799,
"upload_time": "2024-09-04T15:29:35",
"upload_time_iso_8601": "2024-09-04T15:29:35.120714Z",
"url": "https://files.pythonhosted.org/packages/df/b5/0a2d06d8821115245fd5bbd15d07304dea2d1274c7fcd0841d26ad486cd8/webrtcvad_wheels-2.0.13-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3dbef6c9c524c21780eea83b9d8dc50928a5938396a1c8d74be01e2334fd5e93",
"md5": "8bcd715b64ec6fb3c3f68b6a1eef6fbe",
"sha256": "d64d71d67c1950257b601614c1280e0cc2e4e619f2a018a3f2aba68488e1f585"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp36-cp36m-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "8bcd715b64ec6fb3c3f68b6a1eef6fbe",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 85743,
"upload_time": "2024-09-04T15:29:36",
"upload_time_iso_8601": "2024-09-04T15:29:36.844998Z",
"url": "https://files.pythonhosted.org/packages/3d/be/f6c9c524c21780eea83b9d8dc50928a5938396a1c8d74be01e2334fd5e93/webrtcvad_wheels-2.0.13-cp36-cp36m-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cd88ceb02f7f6cca8a33d03f68e984f06d62514083e9d68a67838fed437d40cf",
"md5": "2744d7e763c0b6b7a922017fafeaae85",
"sha256": "dbbea45a18808ac91b91dc80b8032c32dff3ddcd1f51551a8cfd3834cb4d49fc"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp36-cp36m-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "2744d7e763c0b6b7a922017fafeaae85",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 81934,
"upload_time": "2024-09-04T15:29:38",
"upload_time_iso_8601": "2024-09-04T15:29:38.097293Z",
"url": "https://files.pythonhosted.org/packages/cd/88/ceb02f7f6cca8a33d03f68e984f06d62514083e9d68a67838fed437d40cf/webrtcvad_wheels-2.0.13-cp36-cp36m-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "036cf8a6c341ed04788b2d03e8b6b92299a291fb564237d962c7da46f6b1e1ff",
"md5": "34521e4b5910ac5e38742017fb880125",
"sha256": "be416d748f22f6a958c6584b5c8d926d17fec7f73a88b9c0f160e7ee2c64cbef"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp36-cp36m-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "34521e4b5910ac5e38742017fb880125",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 92838,
"upload_time": "2024-09-04T15:29:39",
"upload_time_iso_8601": "2024-09-04T15:29:39.930102Z",
"url": "https://files.pythonhosted.org/packages/03/6c/f8a6c341ed04788b2d03e8b6b92299a291fb564237d962c7da46f6b1e1ff/webrtcvad_wheels-2.0.13-cp36-cp36m-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b216f45e931c7fa5b511e52d2a4d9d8f1c028df1dc78846b1ddb5fc5cc24f824",
"md5": "d45c8cb7491e75032c0c0f957d17881f",
"sha256": "5d5a192b33dd0b199e5c1e27965a5b11d958b4c4ac29aa52f75486491f465dea"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp36-cp36m-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "d45c8cb7491e75032c0c0f957d17881f",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 86309,
"upload_time": "2024-09-04T15:29:42",
"upload_time_iso_8601": "2024-09-04T15:29:42.483268Z",
"url": "https://files.pythonhosted.org/packages/b2/16/f45e931c7fa5b511e52d2a4d9d8f1c028df1dc78846b1ddb5fc5cc24f824/webrtcvad_wheels-2.0.13-cp36-cp36m-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3bf708ad7983d3e61e28975b55c0aa219715915092512013ba2adeb5fdabe07c",
"md5": "dd96bce99e41f0a3a8a168f54a48e3f0",
"sha256": "849472d43301fa5c596e945cbf6f0fc5a41b2650c08485c45acc5d1ad3a31466"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp36-cp36m-win32.whl",
"has_sig": false,
"md5_digest": "dd96bce99e41f0a3a8a168f54a48e3f0",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 19138,
"upload_time": "2024-09-04T15:29:44",
"upload_time_iso_8601": "2024-09-04T15:29:44.079042Z",
"url": "https://files.pythonhosted.org/packages/3b/f7/08ad7983d3e61e28975b55c0aa219715915092512013ba2adeb5fdabe07c/webrtcvad_wheels-2.0.13-cp36-cp36m-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e7b34f1d2513d09d53b5798d3a56bc1f20fe09a250fe3ddcf0c66a732947ddba",
"md5": "e84931f9177da56b544fac15b4986275",
"sha256": "06ef68a71adadcd7625f82e0d55ff17c848c66d9014143dd94b9cccdaf7538cf"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp36-cp36m-win_amd64.whl",
"has_sig": false,
"md5_digest": "e84931f9177da56b544fac15b4986275",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 22403,
"upload_time": "2024-09-04T15:29:45",
"upload_time_iso_8601": "2024-09-04T15:29:45.120438Z",
"url": "https://files.pythonhosted.org/packages/e7/b3/4f1d2513d09d53b5798d3a56bc1f20fe09a250fe3ddcf0c66a732947ddba/webrtcvad_wheels-2.0.13-cp36-cp36m-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "15d380664d8421422415bc20442c8f71e2e2e2ee21d7a89a1f12aa6d54a242af",
"md5": "c461b8dd6832c9a26d2116b4e2fd3dc9",
"sha256": "47b1dd8ba7a2576885d38f52ea292227f3e5087f29aa90975781f090c4858c7c"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp37-cp37m-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "c461b8dd6832c9a26d2116b4e2fd3dc9",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 30766,
"upload_time": "2024-09-04T15:29:46",
"upload_time_iso_8601": "2024-09-04T15:29:46.062978Z",
"url": "https://files.pythonhosted.org/packages/15/d3/80664d8421422415bc20442c8f71e2e2e2ee21d7a89a1f12aa6d54a242af/webrtcvad_wheels-2.0.13-cp37-cp37m-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9c27941d44bb7a0bdf3165ffefa1031b632982344a7a11fd381c00ace665978e",
"md5": "2e7a5d630334dab1aff75a84b735737f",
"sha256": "9f7c275215fe50515eab0487acbeae9900f2ca63443d7413b98751332ae75ca3"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "2e7a5d630334dab1aff75a84b735737f",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 85999,
"upload_time": "2024-09-04T15:29:47",
"upload_time_iso_8601": "2024-09-04T15:29:47.523548Z",
"url": "https://files.pythonhosted.org/packages/9c/27/941d44bb7a0bdf3165ffefa1031b632982344a7a11fd381c00ace665978e/webrtcvad_wheels-2.0.13-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5f165f5b1278a700b5a12c8f3240bcbcfad35c80208d61bbbbbe1da2d2f12132",
"md5": "1ae28e9983c5f60a593d0cf2e1ad2002",
"sha256": "78c7bd3c40eab633b7d129fd28f1bff515aeb0e8e757a14831ba79bbbee4b8cd"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "1ae28e9983c5f60a593d0cf2e1ad2002",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 95427,
"upload_time": "2024-09-04T15:29:48",
"upload_time_iso_8601": "2024-09-04T15:29:48.658719Z",
"url": "https://files.pythonhosted.org/packages/5f/16/5f5b1278a700b5a12c8f3240bcbcfad35c80208d61bbbbbe1da2d2f12132/webrtcvad_wheels-2.0.13-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "96017cdcf4e9e8e557df511c6cc2385c704252da4de88dd6df6f22a1fa7e8b0a",
"md5": "8b81d30f03d2d594cd762f6545099223",
"sha256": "4c46c7c767e729711e2ad7c05f2fa59455b33998c57a7be3371aba78063697a3"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "8b81d30f03d2d594cd762f6545099223",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 82821,
"upload_time": "2024-09-04T15:29:49",
"upload_time_iso_8601": "2024-09-04T15:29:49.725771Z",
"url": "https://files.pythonhosted.org/packages/96/01/7cdcf4e9e8e557df511c6cc2385c704252da4de88dd6df6f22a1fa7e8b0a/webrtcvad_wheels-2.0.13-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f2199dfd3cb0eef74ba6f5bb12de4d2f2908aaeda4d3a617619a611e1f79a5c7",
"md5": "2eb799104da273320a9a32738f74e4ff",
"sha256": "06975b258735b8a353e84faf6c6b031ebef4e157232ffce591cf9f5b43728118"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "2eb799104da273320a9a32738f74e4ff",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 80773,
"upload_time": "2024-09-04T15:29:50",
"upload_time_iso_8601": "2024-09-04T15:29:50.789071Z",
"url": "https://files.pythonhosted.org/packages/f2/19/9dfd3cb0eef74ba6f5bb12de4d2f2908aaeda4d3a617619a611e1f79a5c7/webrtcvad_wheels-2.0.13-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7aa0af2b4271ec3ab82c4ee6cb13286ed47db391cfba19d4053168980ef21fa4",
"md5": "3f53c5b2216db496b1dc04ccf293d5b2",
"sha256": "5d5db0711bdd766c23bd824f76473ae525c8f021ac9057ace595a0efca30c2b6"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp37-cp37m-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "3f53c5b2216db496b1dc04ccf293d5b2",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 85715,
"upload_time": "2024-09-04T15:29:51",
"upload_time_iso_8601": "2024-09-04T15:29:51.941317Z",
"url": "https://files.pythonhosted.org/packages/7a/a0/af2b4271ec3ab82c4ee6cb13286ed47db391cfba19d4053168980ef21fa4/webrtcvad_wheels-2.0.13-cp37-cp37m-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0c55f509fe83d810d6e34eead1bd475ee366af271cb642eebbcd58b8080ae0fd",
"md5": "42142162336478f7e03d340557354000",
"sha256": "1086b7fdb9dc6ec24b6ac6bd0583b83ac305407d8879df1121db1859f0f9bb9a"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp37-cp37m-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "42142162336478f7e03d340557354000",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 81997,
"upload_time": "2024-09-04T15:29:53",
"upload_time_iso_8601": "2024-09-04T15:29:53.328917Z",
"url": "https://files.pythonhosted.org/packages/0c/55/f509fe83d810d6e34eead1bd475ee366af271cb642eebbcd58b8080ae0fd/webrtcvad_wheels-2.0.13-cp37-cp37m-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b4ba1a955b3813e075cc06f793c4760ba4a3576b9f103fc27c8149ebaeb2c1aa",
"md5": "9b9e82bbb75e5a4c3831f783d6a60771",
"sha256": "031079c63f3ae75a3a2d2222798450d0c728cdc476510eec60120aae32c7059e"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp37-cp37m-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "9b9e82bbb75e5a4c3831f783d6a60771",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 92819,
"upload_time": "2024-09-04T15:29:54",
"upload_time_iso_8601": "2024-09-04T15:29:54.466984Z",
"url": "https://files.pythonhosted.org/packages/b4/ba/1a955b3813e075cc06f793c4760ba4a3576b9f103fc27c8149ebaeb2c1aa/webrtcvad_wheels-2.0.13-cp37-cp37m-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "11984e417d83f90b2ea50f41428be919195a91e71ec5bcb81f0a2501d93cb715",
"md5": "f58d2c8c1cd52cd525b5b8f66ea2d190",
"sha256": "caf794945cb65cec3f0cdc9877358fb7f82b883e5255a260c485610ea8886237"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp37-cp37m-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "f58d2c8c1cd52cd525b5b8f66ea2d190",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 86274,
"upload_time": "2024-09-04T15:29:55",
"upload_time_iso_8601": "2024-09-04T15:29:55.562093Z",
"url": "https://files.pythonhosted.org/packages/11/98/4e417d83f90b2ea50f41428be919195a91e71ec5bcb81f0a2501d93cb715/webrtcvad_wheels-2.0.13-cp37-cp37m-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9d8f1764ae6fcc5abf004d89ff1ba52939d7d29ae406e9717527e27b67fc3606",
"md5": "ed7b4f75d5da2f2449ee10c7e70219ac",
"sha256": "274eb0069a6e7b7b7d355767958eba46c64948b5ac2cbe64f62ec7776489d6b8"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp37-cp37m-win32.whl",
"has_sig": false,
"md5_digest": "ed7b4f75d5da2f2449ee10c7e70219ac",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 17155,
"upload_time": "2024-09-04T15:29:56",
"upload_time_iso_8601": "2024-09-04T15:29:56.610329Z",
"url": "https://files.pythonhosted.org/packages/9d/8f/1764ae6fcc5abf004d89ff1ba52939d7d29ae406e9717527e27b67fc3606/webrtcvad_wheels-2.0.13-cp37-cp37m-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bb36c9303f7d6711710bae271793e1ed318b38d101a6f0571fe23e8c7c0c9f94",
"md5": "f3f7f239147d0c03bcbde08a47131073",
"sha256": "b1d5449c75c2b2fbbe28f9f307a6c77870e5eb638bad407390f9778ded16b636"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp37-cp37m-win_amd64.whl",
"has_sig": false,
"md5_digest": "f3f7f239147d0c03bcbde08a47131073",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 19684,
"upload_time": "2024-09-04T15:29:57",
"upload_time_iso_8601": "2024-09-04T15:29:57.622628Z",
"url": "https://files.pythonhosted.org/packages/bb/36/c9303f7d6711710bae271793e1ed318b38d101a6f0571fe23e8c7c0c9f94/webrtcvad_wheels-2.0.13-cp37-cp37m-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "44c1978de54fe8191ec1ad90c1349dadad06a871aae879211727c55e346b3151",
"md5": "6e1ae47d7b7d1a4458f81179a3036a46",
"sha256": "77841b327c5697e5a2f8d9c40d3e43062815c36e8fa6693c4ec56580e7fca48e"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "6e1ae47d7b7d1a4458f81179a3036a46",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 30758,
"upload_time": "2024-09-04T15:29:58",
"upload_time_iso_8601": "2024-09-04T15:29:58.605921Z",
"url": "https://files.pythonhosted.org/packages/44/c1/978de54fe8191ec1ad90c1349dadad06a871aae879211727c55e346b3151/webrtcvad_wheels-2.0.13-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "930105a4580283478449d3d38014cf61d4f2609bc7c581643bc38ba58b3f4b09",
"md5": "98696ea58134bab8c262349bb8839e80",
"sha256": "e6a3fb188dbacdafe725dad273e0070b650186d307d9552c4424b258ffaa2a11"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "98696ea58134bab8c262349bb8839e80",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 29291,
"upload_time": "2024-09-04T15:30:00",
"upload_time_iso_8601": "2024-09-04T15:30:00.160010Z",
"url": "https://files.pythonhosted.org/packages/93/01/05a4580283478449d3d38014cf61d4f2609bc7c581643bc38ba58b3f4b09/webrtcvad_wheels-2.0.13-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7fc8643a6f0c351c73a808360790a3a70820399a49c0284d88985cdc13b0365d",
"md5": "752c211541aa2fc5513110a945a8c880",
"sha256": "695c70a786f1d4f164e19c9bf204b83c14d4fe8b229e5e99e385786f29b87789"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "752c211541aa2fc5513110a945a8c880",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 86335,
"upload_time": "2024-09-04T15:30:01",
"upload_time_iso_8601": "2024-09-04T15:30:01.436423Z",
"url": "https://files.pythonhosted.org/packages/7f/c8/643a6f0c351c73a808360790a3a70820399a49c0284d88985cdc13b0365d/webrtcvad_wheels-2.0.13-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "396e13bf594f58f50de5b52b48f62835b12b88f50392597b3a1805c01dec9b9d",
"md5": "fd131a6add646828bec17421ce438d38",
"sha256": "d7b1da7d56ce70e79d426dc3e5e45b7c483f5f57663bf23dcf95d321734bd241"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "fd131a6add646828bec17421ce438d38",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 95763,
"upload_time": "2024-09-04T15:30:02",
"upload_time_iso_8601": "2024-09-04T15:30:02.792168Z",
"url": "https://files.pythonhosted.org/packages/39/6e/13bf594f58f50de5b52b48f62835b12b88f50392597b3a1805c01dec9b9d/webrtcvad_wheels-2.0.13-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ce4e1d75b5181117ca9baf3e9c1d6fc267bb784cd25b8ccde7ab77610d79a08c",
"md5": "445abba4187e6ebb9923003c363dacaf",
"sha256": "83fcf65e5dca223bcb95a15dde4eea2594cec42a5f30c02da88a746c7368faca"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "445abba4187e6ebb9923003c363dacaf",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 83075,
"upload_time": "2024-09-04T15:30:04",
"upload_time_iso_8601": "2024-09-04T15:30:04.013481Z",
"url": "https://files.pythonhosted.org/packages/ce/4e/1d75b5181117ca9baf3e9c1d6fc267bb784cd25b8ccde7ab77610d79a08c/webrtcvad_wheels-2.0.13-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3d2c99b1c893aca89fd079ec98454cbd59392cbbe40ada55cb528b996d4ad3cf",
"md5": "31cf1f1d2d1e48705403686901d2b77f",
"sha256": "d8da5e142ab29c9fe79594e0407a6b7094b0df2383cb09f038fc472b84faf329"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "31cf1f1d2d1e48705403686901d2b77f",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 81000,
"upload_time": "2024-09-04T15:30:05",
"upload_time_iso_8601": "2024-09-04T15:30:05.184174Z",
"url": "https://files.pythonhosted.org/packages/3d/2c/99b1c893aca89fd079ec98454cbd59392cbbe40ada55cb528b996d4ad3cf/webrtcvad_wheels-2.0.13-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dee19f8b8b11c27f26667a7052031b5025702beca5c83c7e8b5f56e162480548",
"md5": "fdc306049b71231aad07e638ee4de32d",
"sha256": "c904af5f4042aaed004d0ca7c2e0aa6c93a4edfe61d04f1ee718ba9fc5ba1564"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp38-cp38-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "fdc306049b71231aad07e638ee4de32d",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 86031,
"upload_time": "2024-09-04T15:30:06",
"upload_time_iso_8601": "2024-09-04T15:30:06.391428Z",
"url": "https://files.pythonhosted.org/packages/de/e1/9f8b8b11c27f26667a7052031b5025702beca5c83c7e8b5f56e162480548/webrtcvad_wheels-2.0.13-cp38-cp38-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b37cf42b3bed12599bd5f043bf33914caec7cffcd362a7ee89b0a5ee5d8e5a14",
"md5": "f9e32e39cf6770231ba71b5f2056e5cf",
"sha256": "1a5746d873671c2f6c6d4718b48760f6dc41fde52d9ae68953a522f3fab07a83"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp38-cp38-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "f9e32e39cf6770231ba71b5f2056e5cf",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 82211,
"upload_time": "2024-09-04T15:30:07",
"upload_time_iso_8601": "2024-09-04T15:30:07.629210Z",
"url": "https://files.pythonhosted.org/packages/b3/7c/f42b3bed12599bd5f043bf33914caec7cffcd362a7ee89b0a5ee5d8e5a14/webrtcvad_wheels-2.0.13-cp38-cp38-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d676e13022950946e1af80d4696442951dec12046355a32a1965bdf61b42dec9",
"md5": "c52b416e715fb245d357e6bfa389cf11",
"sha256": "fa998ec259dd4f14610da4510e6c709451c14d39cc459479b1d690e01d8c126f"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp38-cp38-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "c52b416e715fb245d357e6bfa389cf11",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 93137,
"upload_time": "2024-09-04T15:30:08",
"upload_time_iso_8601": "2024-09-04T15:30:08.923096Z",
"url": "https://files.pythonhosted.org/packages/d6/76/e13022950946e1af80d4696442951dec12046355a32a1965bdf61b42dec9/webrtcvad_wheels-2.0.13-cp38-cp38-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c91f68d9894730eaca2d0b950d9bfa27989f4bb5d08052544229d98211372cfd",
"md5": "9104d4d716a5f6a9da48fea1b445124e",
"sha256": "e5fe2da362320e4fdf5f6092253baf994e527ef1506fa24fa42cb7e5f84ef02d"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "9104d4d716a5f6a9da48fea1b445124e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 86517,
"upload_time": "2024-09-04T15:30:10",
"upload_time_iso_8601": "2024-09-04T15:30:10.338480Z",
"url": "https://files.pythonhosted.org/packages/c9/1f/68d9894730eaca2d0b950d9bfa27989f4bb5d08052544229d98211372cfd/webrtcvad_wheels-2.0.13-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4ff1b2046a7e995b1363113e278f948daf43938f9c21ca1098265e03817eb991",
"md5": "502e57e0245e52a9b626e840ee606fcc",
"sha256": "0fc0bace60019c96cce027d148eb6128d85bbddc8f37736f602cb370dbed09ed"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "502e57e0245e52a9b626e840ee606fcc",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 17151,
"upload_time": "2024-09-04T15:30:11",
"upload_time_iso_8601": "2024-09-04T15:30:11.799970Z",
"url": "https://files.pythonhosted.org/packages/4f/f1/b2046a7e995b1363113e278f948daf43938f9c21ca1098265e03817eb991/webrtcvad_wheels-2.0.13-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f23ccc0fd0e0f00b2d806216042dcaecfd861371e96104c9ea96016595e14dc0",
"md5": "c3259c27c6402134f6d3dd60908b3e8f",
"sha256": "d31ce2865e030063def772e13e0d2f0eb10c3d83f480e26461e6013ea4825705"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "c3259c27c6402134f6d3dd60908b3e8f",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 19684,
"upload_time": "2024-09-04T15:30:14",
"upload_time_iso_8601": "2024-09-04T15:30:14.087717Z",
"url": "https://files.pythonhosted.org/packages/f2/3c/cc0fd0e0f00b2d806216042dcaecfd861371e96104c9ea96016595e14dc0/webrtcvad_wheels-2.0.13-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "26a5af02b649c270120b68bb807a1ea33a8d159a4694c9b501e85e0947da2821",
"md5": "684a566fefce6146e145213de4e31127",
"sha256": "7c5671402a344a2e6176ef7f7e69d3321edd59bbe400cca028cfe4184621496e"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "684a566fefce6146e145213de4e31127",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 30763,
"upload_time": "2024-09-04T15:30:15",
"upload_time_iso_8601": "2024-09-04T15:30:15.215338Z",
"url": "https://files.pythonhosted.org/packages/26/a5/af02b649c270120b68bb807a1ea33a8d159a4694c9b501e85e0947da2821/webrtcvad_wheels-2.0.13-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d9f4e297000c1474943a8cbe66a9e62724a67abcef82e0923aeb2c8e16065777",
"md5": "86e886a6fb07b8479298a30e0a1170d8",
"sha256": "33c4b3c1290a108831850fb7ec645d2504e573cfdcd3e6080cbb416b221610bd"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "86e886a6fb07b8479298a30e0a1170d8",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 29261,
"upload_time": "2024-09-04T15:30:16",
"upload_time_iso_8601": "2024-09-04T15:30:16.338378Z",
"url": "https://files.pythonhosted.org/packages/d9/f4/e297000c1474943a8cbe66a9e62724a67abcef82e0923aeb2c8e16065777/webrtcvad_wheels-2.0.13-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "12e92eeb3235181cc179417da3cd6c24804e103eee0ef56062baf42c7fa714b8",
"md5": "a1fba00182d243b122b7f0c40f098143",
"sha256": "648305440616ba6938b15e2f74ffba3214c77f33e5583dffbfc9aaeee0bab2c8"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "a1fba00182d243b122b7f0c40f098143",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 85781,
"upload_time": "2024-09-04T15:30:18",
"upload_time_iso_8601": "2024-09-04T15:30:18.180679Z",
"url": "https://files.pythonhosted.org/packages/12/e9/2eeb3235181cc179417da3cd6c24804e103eee0ef56062baf42c7fa714b8/webrtcvad_wheels-2.0.13-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6583c769f41670e2dd83201a9a46d98f2139f451c045d17fe3ca7b1583a0252d",
"md5": "436792508363ecdccc99b25990d312ce",
"sha256": "e00beadd158440fe3e0a96f7febc3bddf31b6349376ac483de38e7795088fe46"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "436792508363ecdccc99b25990d312ce",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 95238,
"upload_time": "2024-09-04T15:30:19",
"upload_time_iso_8601": "2024-09-04T15:30:19.477140Z",
"url": "https://files.pythonhosted.org/packages/65/83/c769f41670e2dd83201a9a46d98f2139f451c045d17fe3ca7b1583a0252d/webrtcvad_wheels-2.0.13-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "289951ded040f087ecca83ca96535e40efdc4448356bde87b85889cbfa77ae61",
"md5": "d797b629af307cb06e6693c41ec3dc96",
"sha256": "57939d3eb5ee0347d3ca7aa26ba0f39d712a1889f89f3473f704a6995bfa5da8"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "d797b629af307cb06e6693c41ec3dc96",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 82534,
"upload_time": "2024-09-04T15:30:20",
"upload_time_iso_8601": "2024-09-04T15:30:20.735729Z",
"url": "https://files.pythonhosted.org/packages/28/99/51ded040f087ecca83ca96535e40efdc4448356bde87b85889cbfa77ae61/webrtcvad_wheels-2.0.13-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4af3015df0f727d1e52cf776a42df15d6265ebfea88d6d4f362474d814212289",
"md5": "b70a74ee26981764507e2e763d609328",
"sha256": "c5e9241a2846369eccb785eae82d77915e46edddaa57218b9e80118abfb0506c"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "b70a74ee26981764507e2e763d609328",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 80412,
"upload_time": "2024-09-04T15:30:22",
"upload_time_iso_8601": "2024-09-04T15:30:22.264028Z",
"url": "https://files.pythonhosted.org/packages/4a/f3/015df0f727d1e52cf776a42df15d6265ebfea88d6d4f362474d814212289/webrtcvad_wheels-2.0.13-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d16a2272f1025b8af364d1a2cda721d230a9fcff8dd888ae627da24d5be75691",
"md5": "075834e4d88ad7026e19d8be01139cc5",
"sha256": "04e27112f24c32a6be496c8b475c45e6828c618e84ca29050740eaa4bfb174db"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "075834e4d88ad7026e19d8be01139cc5",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 85974,
"upload_time": "2024-09-04T15:30:23",
"upload_time_iso_8601": "2024-09-04T15:30:23.695452Z",
"url": "https://files.pythonhosted.org/packages/d1/6a/2272f1025b8af364d1a2cda721d230a9fcff8dd888ae627da24d5be75691/webrtcvad_wheels-2.0.13-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3230d943ccb1e5531402379729f39118835cecda8cf53afd5f97d17e7a2957ef",
"md5": "275c4f2232361431024a7b9a23b47cda",
"sha256": "0f22d8dc95b99a08d50b410c32408face60b4a080adc671225a048ea2bc10877"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "275c4f2232361431024a7b9a23b47cda",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 82178,
"upload_time": "2024-09-04T15:30:25",
"upload_time_iso_8601": "2024-09-04T15:30:25.332876Z",
"url": "https://files.pythonhosted.org/packages/32/30/d943ccb1e5531402379729f39118835cecda8cf53afd5f97d17e7a2957ef/webrtcvad_wheels-2.0.13-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2cf0861e368a0e17a988069b9c52b673c035d35f3b06db35ce576ffbdddc2e26",
"md5": "cda54c368867331c0a9d3cef10fb40f3",
"sha256": "9b7f64d4f362329440196caa849badd4baf914201e185f8308554f1b7eda5900"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp39-cp39-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "cda54c368867331c0a9d3cef10fb40f3",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 93079,
"upload_time": "2024-09-04T15:30:26",
"upload_time_iso_8601": "2024-09-04T15:30:26.636960Z",
"url": "https://files.pythonhosted.org/packages/2c/f0/861e368a0e17a988069b9c52b673c035d35f3b06db35ce576ffbdddc2e26/webrtcvad_wheels-2.0.13-cp39-cp39-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c4966346c6a9ff5b041f8d6550ae467780432ef7d8312471bb3503f1be5f5a0a",
"md5": "f40b0dbc290898c59829d12957d5a41f",
"sha256": "52f48fa6b1a1aec4de20c64d9ae56e9c6e2a02617c362dfc9041b9fc3bbc202d"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "f40b0dbc290898c59829d12957d5a41f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 86479,
"upload_time": "2024-09-04T15:30:28",
"upload_time_iso_8601": "2024-09-04T15:30:28.212427Z",
"url": "https://files.pythonhosted.org/packages/c4/96/6346c6a9ff5b041f8d6550ae467780432ef7d8312471bb3503f1be5f5a0a/webrtcvad_wheels-2.0.13-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5bd21697e4ed684e033740ce02a85222ea49cfd24b3c4ec296e90f1ba68296bb",
"md5": "3206d4bd0ea85da7b2d0ff7f1f7ed261",
"sha256": "31f5a0668428e32f1aa43c997e1bc0b9a69ea8f14986bd7d01b918ca1443d51c"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "3206d4bd0ea85da7b2d0ff7f1f7ed261",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 17149,
"upload_time": "2024-09-04T15:30:29",
"upload_time_iso_8601": "2024-09-04T15:30:29.427126Z",
"url": "https://files.pythonhosted.org/packages/5b/d2/1697e4ed684e033740ce02a85222ea49cfd24b3c4ec296e90f1ba68296bb/webrtcvad_wheels-2.0.13-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3056915d3f78d769d49360ee52556ff44ec7a93dfd8db2137ca030de939dd066",
"md5": "14e01592673b3975e27d6ee7c1fc3f37",
"sha256": "1dcbd4e85ca45911cf1bd85f826fcc8c98687a81212604be940b897731b1d2b3"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "14e01592673b3975e27d6ee7c1fc3f37",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 19684,
"upload_time": "2024-09-04T15:30:30",
"upload_time_iso_8601": "2024-09-04T15:30:30.576472Z",
"url": "https://files.pythonhosted.org/packages/30/56/915d3f78d769d49360ee52556ff44ec7a93dfd8db2137ca030de939dd066/webrtcvad_wheels-2.0.13-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e2a7576f51752629529641b40ec8aa60e1eb2bfa4b29ef7f4181d50b02529ab3",
"md5": "86143d885ac41dfb13ec12e536510b31",
"sha256": "253fa5ba4f39fe796a13304025ad01f3ed2802ab51215daaced1821cb6172938"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "86143d885ac41dfb13ec12e536510b31",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 30365,
"upload_time": "2024-09-04T15:30:31",
"upload_time_iso_8601": "2024-09-04T15:30:31.818353Z",
"url": "https://files.pythonhosted.org/packages/e2/a7/576f51752629529641b40ec8aa60e1eb2bfa4b29ef7f4181d50b02529ab3/webrtcvad_wheels-2.0.13-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "566eca7816246396218edf047ee53f07994c15d120d4eb02c4f22620fd50571a",
"md5": "31a6c4c20a8a5e436258288d9992e916",
"sha256": "5e7dd6e7afb2fd2e31bf311753453d1418bd149cc65c19841ef8375dbfc19461"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "31a6c4c20a8a5e436258288d9992e916",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 26888,
"upload_time": "2024-09-04T15:30:33",
"upload_time_iso_8601": "2024-09-04T15:30:33.453045Z",
"url": "https://files.pythonhosted.org/packages/56/6e/ca7816246396218edf047ee53f07994c15d120d4eb02c4f22620fd50571a/webrtcvad_wheels-2.0.13-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "acbcb171f395247227387c95e64a5b7a725d6467e37fcfefc5f282e07889292b",
"md5": "7351ab8376d9c453f7df124c0b39793a",
"sha256": "89353f6d8f43da703a1d321b308bb54ef0f731a35f550dcf73a1f358027ee728"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "7351ab8376d9c453f7df124c0b39793a",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 28620,
"upload_time": "2024-09-04T15:30:34",
"upload_time_iso_8601": "2024-09-04T15:30:34.695716Z",
"url": "https://files.pythonhosted.org/packages/ac/bc/b171f395247227387c95e64a5b7a725d6467e37fcfefc5f282e07889292b/webrtcvad_wheels-2.0.13-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3a58ad2a8c3a3c9b07d37f331b63e8a16774fb4024e84c1a221d45b1b4dcdb80",
"md5": "aafeeb46a221aeb7103cd2a822d9023b",
"sha256": "40874d141f48cdb6f7286e220be9ae43351b3034ae73f283e01ad6ba64f38f54"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "aafeeb46a221aeb7103cd2a822d9023b",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 27285,
"upload_time": "2024-09-04T15:30:36",
"upload_time_iso_8601": "2024-09-04T15:30:36.125804Z",
"url": "https://files.pythonhosted.org/packages/3a/58/ad2a8c3a3c9b07d37f331b63e8a16774fb4024e84c1a221d45b1b4dcdb80/webrtcvad_wheels-2.0.13-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "716ae4e68337e0fe5d6244f30edc208bcb66d2191de8f2aa2e35c2939eac8a2e",
"md5": "1f4f65605822083199d2b25f7a6134e4",
"sha256": "95bba48045816c3f338f738762b8566508ff5f82ca8332ed404d355aab28d191"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "1f4f65605822083199d2b25f7a6134e4",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 28816,
"upload_time": "2024-09-04T15:30:37",
"upload_time_iso_8601": "2024-09-04T15:30:37.451116Z",
"url": "https://files.pythonhosted.org/packages/71/6a/e4e68337e0fe5d6244f30edc208bcb66d2191de8f2aa2e35c2939eac8a2e/webrtcvad_wheels-2.0.13-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ac53dd0c3fd3739d953d8bf3db8378bb896cb9385b063b297662b7a22f03966e",
"md5": "4d3d268a2564b71c924d514544e19562",
"sha256": "3cfa08eb7e81d0c5b3e3dc945c7cfc1dab5705a41af12e30de55137b79f35ba1"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-pp310-pypy310_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "4d3d268a2564b71c924d514544e19562",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 19731,
"upload_time": "2024-09-04T15:30:39",
"upload_time_iso_8601": "2024-09-04T15:30:39.134689Z",
"url": "https://files.pythonhosted.org/packages/ac/53/dd0c3fd3739d953d8bf3db8378bb896cb9385b063b297662b7a22f03966e/webrtcvad_wheels-2.0.13-pp310-pypy310_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0730d31d8e285dd5578652249690dfc980e928896add5cde3b2ed715a9680512",
"md5": "9409de831f14437a9e1760e1a16648ed",
"sha256": "2e19fa52e1c7e13f38818190a9482c5e87b93d26551a1387cb8417a68ae31c61"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "9409de831f14437a9e1760e1a16648ed",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": null,
"size": 28044,
"upload_time": "2024-09-04T15:30:40",
"upload_time_iso_8601": "2024-09-04T15:30:40.512898Z",
"url": "https://files.pythonhosted.org/packages/07/30/d31d8e285dd5578652249690dfc980e928896add5cde3b2ed715a9680512/webrtcvad_wheels-2.0.13-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a337bd033d304248e3340bf4325650050a522bc5ecc1f491d374ea3380c2a6aa",
"md5": "302e6a92d6799443fc86b6b196c9c326",
"sha256": "0f852537e6a001f05ec527be6b26084edf079a0720b7bca1c2343094920702a6"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "302e6a92d6799443fc86b6b196c9c326",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": null,
"size": 28907,
"upload_time": "2024-09-04T15:30:41",
"upload_time_iso_8601": "2024-09-04T15:30:41.930374Z",
"url": "https://files.pythonhosted.org/packages/a3/37/bd033d304248e3340bf4325650050a522bc5ecc1f491d374ea3380c2a6aa/webrtcvad_wheels-2.0.13-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1d14edb99594af0db87219506cf1f937c8abc332757f31904a832930c7e07002",
"md5": "5a20e21a61aaf3667ac143c84ba2947a",
"sha256": "3120caad184766710b1c0f9e54cf56af864f6e1f36ea698fcedbdb1a210fc793"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "5a20e21a61aaf3667ac143c84ba2947a",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": null,
"size": 27850,
"upload_time": "2024-09-04T15:30:43",
"upload_time_iso_8601": "2024-09-04T15:30:43.595780Z",
"url": "https://files.pythonhosted.org/packages/1d/14/edb99594af0db87219506cf1f937c8abc332757f31904a832930c7e07002/webrtcvad_wheels-2.0.13-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1038b15f4cf8a7e528838f192c64acf74924eeb990708af620849d41717ffc1f",
"md5": "78c451e37757699c73800fdd2d919a7e",
"sha256": "0bde323ead37f0f088281d264561b06ac32ceba737279fe1db51fca1798ba496"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "78c451e37757699c73800fdd2d919a7e",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": null,
"size": 29304,
"upload_time": "2024-09-04T15:30:45",
"upload_time_iso_8601": "2024-09-04T15:30:45.009715Z",
"url": "https://files.pythonhosted.org/packages/10/38/b15f4cf8a7e528838f192c64acf74924eeb990708af620849d41717ffc1f/webrtcvad_wheels-2.0.13-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "755a5c023771f46cb6861fbbd067a5fa4c4bd4fc5bce19c931aef44664cb60b8",
"md5": "e866577bab884e8c191470b284761c27",
"sha256": "48856919a93be34d042451f5fabef7d26eb7fedf3a90476f051ec7a2ec1f4561"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-pp37-pypy37_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "e866577bab884e8c191470b284761c27",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": null,
"size": 19739,
"upload_time": "2024-09-04T15:30:46",
"upload_time_iso_8601": "2024-09-04T15:30:46.500289Z",
"url": "https://files.pythonhosted.org/packages/75/5a/5c023771f46cb6861fbbd067a5fa4c4bd4fc5bce19c931aef44664cb60b8/webrtcvad_wheels-2.0.13-pp37-pypy37_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a41df46f86feaf47286d70cd9eae8d70e9ce87596c99a8810d1113e9d3f971bf",
"md5": "80fdc1c868c3ad28fa668c967d24f1d5",
"sha256": "57b0c80a5131a4a47b5ea48ea322b70df3049fde03e21df9922a524e75d029e3"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "80fdc1c868c3ad28fa668c967d24f1d5",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": null,
"size": 28040,
"upload_time": "2024-09-04T15:30:47",
"upload_time_iso_8601": "2024-09-04T15:30:47.932490Z",
"url": "https://files.pythonhosted.org/packages/a4/1d/f46f86feaf47286d70cd9eae8d70e9ce87596c99a8810d1113e9d3f971bf/webrtcvad_wheels-2.0.13-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7535a7d44b573a3bbcb227a19bf89064d4b2f088ffd4e8c52545ba574d512e27",
"md5": "8b693d2056c5f1bb5d671a2d3f240fb4",
"sha256": "71915bcb4f3c480f003f8c1f02b1aa775d4ae7d0f8f66eb042546af7d9955795"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "8b693d2056c5f1bb5d671a2d3f240fb4",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": null,
"size": 26881,
"upload_time": "2024-09-04T15:30:49",
"upload_time_iso_8601": "2024-09-04T15:30:49.743768Z",
"url": "https://files.pythonhosted.org/packages/75/35/a7d44b573a3bbcb227a19bf89064d4b2f088ffd4e8c52545ba574d512e27/webrtcvad_wheels-2.0.13-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d917569a940b562f62291dd22a622537d6b3121dc4804effb4b434035c282418",
"md5": "97f56b43e012e32e00d332dd35a19ba4",
"sha256": "3647a1d50ad64382d213e875711e9a71a6dcd7a0900cb502b447a0c956efda16"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "97f56b43e012e32e00d332dd35a19ba4",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": null,
"size": 28615,
"upload_time": "2024-09-04T15:30:51",
"upload_time_iso_8601": "2024-09-04T15:30:51.219381Z",
"url": "https://files.pythonhosted.org/packages/d9/17/569a940b562f62291dd22a622537d6b3121dc4804effb4b434035c282418/webrtcvad_wheels-2.0.13-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9aa18b0aadcd01586e7d20a71734b2bc26c86db377632b219f34cf96d572fb17",
"md5": "7a70ea247c52e9e60f9adae9893bca28",
"sha256": "1810408f6b7a178abc7e47a09a78ee790ccb63ef9f8d149fc4a67a10cfbfa83b"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "7a70ea247c52e9e60f9adae9893bca28",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": null,
"size": 27280,
"upload_time": "2024-09-04T15:30:52",
"upload_time_iso_8601": "2024-09-04T15:30:52.753587Z",
"url": "https://files.pythonhosted.org/packages/9a/a1/8b0aadcd01586e7d20a71734b2bc26c86db377632b219f34cf96d572fb17/webrtcvad_wheels-2.0.13-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7eb8f7874d5e4fe3e687b177178ec2718e6c77d3bfce1ec8f98321345dec3e5b",
"md5": "9407acfafa8e78b4ccb322356297e2e9",
"sha256": "e9609461b376c93ecbc4055e353637d54836ad62c26636cc96d0237aa272034c"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "9407acfafa8e78b4ccb322356297e2e9",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": null,
"size": 28807,
"upload_time": "2024-09-04T15:30:54",
"upload_time_iso_8601": "2024-09-04T15:30:54.314919Z",
"url": "https://files.pythonhosted.org/packages/7e/b8/f7874d5e4fe3e687b177178ec2718e6c77d3bfce1ec8f98321345dec3e5b/webrtcvad_wheels-2.0.13-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b3f9743dc5ab885f854d430e40e0271e8d8e1f1c47467586b3732eba6b557afd",
"md5": "bbfc5b3c000b7dc710607162269a2ced",
"sha256": "914c2ed5dd8e4bc8549113a3ccaa6b02b8b1f9ba411fe8aa76d8a0e883bce48e"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-pp38-pypy38_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "bbfc5b3c000b7dc710607162269a2ced",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": null,
"size": 19734,
"upload_time": "2024-09-04T15:30:55",
"upload_time_iso_8601": "2024-09-04T15:30:55.960705Z",
"url": "https://files.pythonhosted.org/packages/b3/f9/743dc5ab885f854d430e40e0271e8d8e1f1c47467586b3732eba6b557afd/webrtcvad_wheels-2.0.13-pp38-pypy38_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f8f60b1dbd16b3efe7a675d0660f6365548d00c2280b1744e9a04c8a901e9480",
"md5": "aace9ebce3b518996349beb647773b75",
"sha256": "4747a48501843a273249117fd94ebe4953d7cd95a863a8a212820ef585732fe6"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "aace9ebce3b518996349beb647773b75",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 30363,
"upload_time": "2024-09-04T15:30:57",
"upload_time_iso_8601": "2024-09-04T15:30:57.520612Z",
"url": "https://files.pythonhosted.org/packages/f8/f6/0b1dbd16b3efe7a675d0660f6365548d00c2280b1744e9a04c8a901e9480/webrtcvad_wheels-2.0.13-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "55996ae2ea6f88b0df8c8c85e8866ad42c55eb2ad4406fdf8de59e14447587d7",
"md5": "3c445b2c0e08dc1482d794df40694e31",
"sha256": "5595cff0bb18839edf58432d916475d6580f090ce35e49582063b54777a21cfc"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "3c445b2c0e08dc1482d794df40694e31",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 26883,
"upload_time": "2024-09-04T15:30:59",
"upload_time_iso_8601": "2024-09-04T15:30:59.134888Z",
"url": "https://files.pythonhosted.org/packages/55/99/6ae2ea6f88b0df8c8c85e8866ad42c55eb2ad4406fdf8de59e14447587d7/webrtcvad_wheels-2.0.13-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d55e82f28c45c3ecdcf44a949b5049b34da93a8954096ae76b45d5fe54b135a5",
"md5": "3d8b622980fc7282030415e6fe92c497",
"sha256": "000f88bcc692d00aae0d1ecb0f68f5da31cfdcf0fadd37418788813a922a4f9a"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "3d8b622980fc7282030415e6fe92c497",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 28614,
"upload_time": "2024-09-04T15:31:01",
"upload_time_iso_8601": "2024-09-04T15:31:01.193524Z",
"url": "https://files.pythonhosted.org/packages/d5/5e/82f28c45c3ecdcf44a949b5049b34da93a8954096ae76b45d5fe54b135a5/webrtcvad_wheels-2.0.13-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "35cb28cbc1c5981d138c9f65087c6c9f8ae015ad7083ffc949e870fe40b176b7",
"md5": "a41f6302711ca992d76c07551cdaab66",
"sha256": "4fd5beb0ef3127e1c0b5a8a01695be832a5d423320e7ad8ec1d2d51b45819678"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "a41f6302711ca992d76c07551cdaab66",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 27281,
"upload_time": "2024-09-04T15:31:03",
"upload_time_iso_8601": "2024-09-04T15:31:03.335315Z",
"url": "https://files.pythonhosted.org/packages/35/cb/28cbc1c5981d138c9f65087c6c9f8ae015ad7083ffc949e870fe40b176b7/webrtcvad_wheels-2.0.13-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "689bc00e1926fad72540de409ac53ad9fd068be29d4894f2301fb317a66ce3f8",
"md5": "78160aa9c691d7b12bf1fecbd1e4585a",
"sha256": "602209efefc2085ac4407fdb3e8c2441f3f8f53e4e5787ff06550f44a6e37396"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "78160aa9c691d7b12bf1fecbd1e4585a",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 28810,
"upload_time": "2024-09-04T15:31:05",
"upload_time_iso_8601": "2024-09-04T15:31:05.219733Z",
"url": "https://files.pythonhosted.org/packages/68/9b/c00e1926fad72540de409ac53ad9fd068be29d4894f2301fb317a66ce3f8/webrtcvad_wheels-2.0.13-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5ae23a4392674abd96b613d2273fe4a738f1ab3eef8604c42e261d60de3b8dbc",
"md5": "c200c457344242662a2858176e6045e7",
"sha256": "b5946d044892d2d7457617a31bc74d380b463081c821f25dc8c7759e9c77a57c"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13-pp39-pypy39_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "c200c457344242662a2858176e6045e7",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 19735,
"upload_time": "2024-09-04T15:31:07",
"upload_time_iso_8601": "2024-09-04T15:31:07.283186Z",
"url": "https://files.pythonhosted.org/packages/5a/e2/3a4392674abd96b613d2273fe4a738f1ab3eef8604c42e261d60de3b8dbc/webrtcvad_wheels-2.0.13-pp39-pypy39_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4b86e9a233ced56162dc77bc0f7b9a01dab954379920cd991080acd940155267",
"md5": "3dbfb3d0229e1203e209448b4c04c3be",
"sha256": "6da2626f63aee8d1ccced5d171e0ab9ec19111e74684d1df6e7811ce42436e95"
},
"downloads": -1,
"filename": "webrtcvad_wheels-2.0.13.tar.gz",
"has_sig": false,
"md5_digest": "3dbfb3d0229e1203e209448b4c04c3be",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 70149,
"upload_time": "2024-09-04T15:31:09",
"upload_time_iso_8601": "2024-09-04T15:31:09.033499Z",
"url": "https://files.pythonhosted.org/packages/4b/86/e9a233ced56162dc77bc0f7b9a01dab954379920cd991080acd940155267/webrtcvad_wheels-2.0.13.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-09-04 15:31:09",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "daanzu",
"github_project": "py-webrtcvad-wheels",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "webrtcvad-wheels"
}