Skip to main content

Python interface to the Google WebRTC Voice Activity Detector (VAD) [released with binary wheels!]

Project description

https://travis-ci.org/daanzu/py-webrtcvad-wheels.svg?branch=release https://img.shields.io/pypi/v/webrtcvad-wheels.svg https://img.shields.io/pypi/wheel/webrtcvad-wheels.svg

py-webrtcvad-wheels

This is a python interface to the WebRTC Voice Activity Detector (VAD). It is compatible with Python 2 and Python 3. It is forked from wiseman/py-webrtcvad to provide releases with binary wheels.

A VAD 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 project is reportedly one of the best available, being fast, modern and free.

How to use it

  1. Install the webrtcvad module:

    pip install webrtcvad
  2. Create a Vad object:

    import webrtcvad
    vad = webrtcvad.Vad()
  3. 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)
  4. 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 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.10

Fixed memory leak. Thank you, bond005!

2.0.9

Improved example code. Added WebRTC license.

2.0.8

Fixed Windows compilation errors. Thank you, xiongyihui!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

webrtcvad-wheels-2.0.11.post1.tar.gz (69.2 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

webrtcvad_wheels-2.0.11.post1-pp39-pypy39_pp73-win_amd64.whl (19.0 kB view details)

Uploaded PyPyWindows x86-64

webrtcvad_wheels-2.0.11.post1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (28.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

webrtcvad_wheels-2.0.11.post1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (27.9 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

webrtcvad_wheels-2.0.11.post1-pp38-pypy38_pp73-win_amd64.whl (19.0 kB view details)

Uploaded PyPyWindows x86-64

webrtcvad_wheels-2.0.11.post1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (28.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

webrtcvad_wheels-2.0.11.post1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (27.9 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

webrtcvad_wheels-2.0.11.post1-pp37-pypy37_pp73-win_amd64.whl (19.0 kB view details)

Uploaded PyPyWindows x86-64

webrtcvad_wheels-2.0.11.post1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (28.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

webrtcvad_wheels-2.0.11.post1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (27.9 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

webrtcvad_wheels-2.0.11.post1-cp311-cp311-win_amd64.whl (19.0 kB view details)

Uploaded CPython 3.11Windows x86-64

webrtcvad_wheels-2.0.11.post1-cp311-cp311-win32.whl (16.3 kB view details)

Uploaded CPython 3.11Windows x86

webrtcvad_wheels-2.0.11.post1-cp311-cp311-musllinux_1_1_x86_64.whl (87.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

webrtcvad_wheels-2.0.11.post1-cp311-cp311-musllinux_1_1_ppc64le.whl (101.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ppc64le

webrtcvad_wheels-2.0.11.post1-cp311-cp311-musllinux_1_1_i686.whl (76.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ i686

webrtcvad_wheels-2.0.11.post1-cp311-cp311-musllinux_1_1_aarch64.whl (90.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

webrtcvad_wheels-2.0.11.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (82.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

webrtcvad_wheels-2.0.11.post1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (95.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

webrtcvad_wheels-2.0.11.post1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (85.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

webrtcvad_wheels-2.0.11.post1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (80.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

webrtcvad_wheels-2.0.11.post1-cp311-cp311-macosx_11_0_arm64.whl (28.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

webrtcvad_wheels-2.0.11.post1-cp311-cp311-macosx_10_9_x86_64.whl (31.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

webrtcvad_wheels-2.0.11.post1-cp310-cp310-win_amd64.whl (19.0 kB view details)

Uploaded CPython 3.10Windows x86-64

webrtcvad_wheels-2.0.11.post1-cp310-cp310-win32.whl (16.3 kB view details)

Uploaded CPython 3.10Windows x86

webrtcvad_wheels-2.0.11.post1-cp310-cp310-musllinux_1_1_x86_64.whl (86.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

webrtcvad_wheels-2.0.11.post1-cp310-cp310-musllinux_1_1_ppc64le.whl (100.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ppc64le

webrtcvad_wheels-2.0.11.post1-cp310-cp310-musllinux_1_1_i686.whl (76.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

webrtcvad_wheels-2.0.11.post1-cp310-cp310-musllinux_1_1_aarch64.whl (90.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

webrtcvad_wheels-2.0.11.post1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (82.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

webrtcvad_wheels-2.0.11.post1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (95.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

webrtcvad_wheels-2.0.11.post1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (85.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

webrtcvad_wheels-2.0.11.post1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (80.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

webrtcvad_wheels-2.0.11.post1-cp310-cp310-macosx_11_0_arm64.whl (28.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

webrtcvad_wheels-2.0.11.post1-cp310-cp310-macosx_10_9_x86_64.whl (31.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

webrtcvad_wheels-2.0.11.post1-cp39-cp39-win_amd64.whl (19.0 kB view details)

Uploaded CPython 3.9Windows x86-64

webrtcvad_wheels-2.0.11.post1-cp39-cp39-win32.whl (16.3 kB view details)

Uploaded CPython 3.9Windows x86

webrtcvad_wheels-2.0.11.post1-cp39-cp39-musllinux_1_1_x86_64.whl (86.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

webrtcvad_wheels-2.0.11.post1-cp39-cp39-musllinux_1_1_ppc64le.whl (99.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ppc64le

webrtcvad_wheels-2.0.11.post1-cp39-cp39-musllinux_1_1_i686.whl (75.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

webrtcvad_wheels-2.0.11.post1-cp39-cp39-musllinux_1_1_aarch64.whl (89.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

webrtcvad_wheels-2.0.11.post1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (82.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

webrtcvad_wheels-2.0.11.post1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (94.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

webrtcvad_wheels-2.0.11.post1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (85.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

webrtcvad_wheels-2.0.11.post1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (80.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

webrtcvad_wheels-2.0.11.post1-cp39-cp39-macosx_11_0_arm64.whl (28.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

webrtcvad_wheels-2.0.11.post1-cp39-cp39-macosx_10_9_x86_64.whl (31.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

webrtcvad_wheels-2.0.11.post1-cp38-cp38-win_amd64.whl (19.0 kB view details)

Uploaded CPython 3.8Windows x86-64

webrtcvad_wheels-2.0.11.post1-cp38-cp38-win32.whl (16.3 kB view details)

Uploaded CPython 3.8Windows x86

webrtcvad_wheels-2.0.11.post1-cp38-cp38-musllinux_1_1_x86_64.whl (86.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

webrtcvad_wheels-2.0.11.post1-cp38-cp38-musllinux_1_1_ppc64le.whl (100.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ppc64le

webrtcvad_wheels-2.0.11.post1-cp38-cp38-musllinux_1_1_i686.whl (75.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ i686

webrtcvad_wheels-2.0.11.post1-cp38-cp38-musllinux_1_1_aarch64.whl (89.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

webrtcvad_wheels-2.0.11.post1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (82.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

webrtcvad_wheels-2.0.11.post1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (95.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

webrtcvad_wheels-2.0.11.post1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (86.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

webrtcvad_wheels-2.0.11.post1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (80.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

webrtcvad_wheels-2.0.11.post1-cp38-cp38-macosx_11_0_arm64.whl (28.6 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

webrtcvad_wheels-2.0.11.post1-cp38-cp38-macosx_10_9_x86_64.whl (31.4 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

webrtcvad_wheels-2.0.11.post1-cp37-cp37m-win_amd64.whl (19.0 kB view details)

Uploaded CPython 3.7mWindows x86-64

webrtcvad_wheels-2.0.11.post1-cp37-cp37m-win32.whl (16.3 kB view details)

Uploaded CPython 3.7mWindows x86

webrtcvad_wheels-2.0.11.post1-cp37-cp37m-musllinux_1_1_x86_64.whl (87.1 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

webrtcvad_wheels-2.0.11.post1-cp37-cp37m-musllinux_1_1_ppc64le.whl (100.8 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ppc64le

webrtcvad_wheels-2.0.11.post1-cp37-cp37m-musllinux_1_1_i686.whl (76.6 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ i686

webrtcvad_wheels-2.0.11.post1-cp37-cp37m-musllinux_1_1_aarch64.whl (90.6 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

webrtcvad_wheels-2.0.11.post1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (82.5 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

webrtcvad_wheels-2.0.11.post1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (95.1 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

webrtcvad_wheels-2.0.11.post1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (85.7 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

webrtcvad_wheels-2.0.11.post1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (80.4 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

webrtcvad_wheels-2.0.11.post1-cp37-cp37m-macosx_10_9_x86_64.whl (31.4 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

webrtcvad_wheels-2.0.11.post1-cp36-cp36m-win_amd64.whl (21.8 kB view details)

Uploaded CPython 3.6mWindows x86-64

webrtcvad_wheels-2.0.11.post1-cp36-cp36m-win32.whl (18.4 kB view details)

Uploaded CPython 3.6mWindows x86

webrtcvad_wheels-2.0.11.post1-cp36-cp36m-musllinux_1_1_x86_64.whl (86.1 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ x86-64

webrtcvad_wheels-2.0.11.post1-cp36-cp36m-musllinux_1_1_ppc64le.whl (99.8 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ ppc64le

webrtcvad_wheels-2.0.11.post1-cp36-cp36m-musllinux_1_1_i686.whl (75.7 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ i686

webrtcvad_wheels-2.0.11.post1-cp36-cp36m-musllinux_1_1_aarch64.whl (89.5 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ ARM64

webrtcvad_wheels-2.0.11.post1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (82.4 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

webrtcvad_wheels-2.0.11.post1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (94.9 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ppc64le

webrtcvad_wheels-2.0.11.post1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (85.5 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

webrtcvad_wheels-2.0.11.post1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (80.4 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

webrtcvad_wheels-2.0.11.post1-cp36-cp36m-macosx_10_9_x86_64.whl (31.4 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

Details for the file webrtcvad-wheels-2.0.11.post1.tar.gz.

File metadata

  • Download URL: webrtcvad-wheels-2.0.11.post1.tar.gz
  • Upload date:
  • Size: 69.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.14

File hashes

Hashes for webrtcvad-wheels-2.0.11.post1.tar.gz
Algorithm Hash digest
SHA256 aa1f749b5ea5ce209df9bdef7be9f4844007e630ac87ab9dbc25dda73fd5d2b7
MD5 a0a6684aa2fe619654e6d159787d9450
BLAKE2b-256 59d917fe64f981a2d33c6e95e115c29e8b6bd036c2a0f90323585f1af639d5fc

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a8c8db4eb996398a395ae8cb529908a0791538e007f7e6ab836f16894f508b36
MD5 2bfb15f18db205ce79e830f7415863be
BLAKE2b-256 1cb59e69ee41cfc4d671508b0b3ffb49e0567759e45df7170da976143d3ca06e

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 67286cc5fb1e6c1cb88b96b6a55a0ecddfc2eeef18d9871da7a26bac72b40338
MD5 4c83feef48a7ae1aec1a82567d570740
BLAKE2b-256 faf302d7fccf4cf00425c7f627ef8bedc00f8ad5e883ed46c26f89cdfdb6d04f

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 729d770039f52d53c282f3467759889a15a91d399fe44a817012592621a90375
MD5 c77bb81085d4145ade124dc7e16ddff1
BLAKE2b-256 0e35e6674a346a70c860f4c04114707a4742708ca969c9feced893cd77a342b2

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a288a20a006fdb8082669e3ac213c7c49c238938b12c95f4a0f6f9dcd1332fc7
MD5 ccf8fde2eda087ff263698febd6bcf9c
BLAKE2b-256 518d8bc918438e209b43c578eb79d67a67628bcb7d1e855609d5313a236e186c

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 54d1185f38a2e0f8a9fc0d60e3da39d188dc535d2623aa87dcf505604f8b5785
MD5 ad80cf99a9e97b18e87df1d3d7d718fa
BLAKE2b-256 e9be67f3a1c1352f140fa3d91abbe7a0fa05822c24e43773610cc4af6cc00380

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f0c84bf2d243042cd1bb6fee4bf3092af948f64f14b82d29f507f07036a9017c
MD5 acc0a868e1f118f8df2f8fc30b929bc0
BLAKE2b-256 1d3032663e8289d14829b594df35ae824176c06646d44b575b81c3b061fd189c

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 316152b31165aaa2af085c2e9022bf50c4f6ac890ea2b2f85a8e2fbf9632a832
MD5 321d40f8d1d1ffb7a20fc36d9b8185c4
BLAKE2b-256 d453cd8edb2fbf34e9e149f172deba7581e7d9082a88a0acfb8ab1dbea4c51f8

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aae6902034c1da0b59c7c07e467d2c3da42821c8b665304cd7cc2b9b95dbda02
MD5 e4ee169b929d798ac3ae7cde3d255211
BLAKE2b-256 6e038883b88c30b99edb6eebdfd431f3072feef741bbdef6d474acc2e941e080

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f72692baacf1e25fe0e2e8e8c27f4271d82726e2a5a9123c4c2f7af107bb425d
MD5 d83d4218779596fd2f94166a86cdd8bf
BLAKE2b-256 69221a6470d328ba42e7aae18b9d930dd50b3ecb4dae45e61897486350710fb8

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1be94fdb080777ece8cb86d779fe5d662574fee42c4ec097029b958724314f4e
MD5 437d46ba4c0b1d828c4ebea5971515d4
BLAKE2b-256 b6a7fb55b8f10508c956e5349f931d4856c29c9d64d39df782614b36be9bd3cd

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 91de8a6be3b4d660305bd784150962774690f30faa9552d526dcaac26a02e5a5
MD5 bac615ba979475d79487bd372e718ac0
BLAKE2b-256 fcd75a1b7e83edde165be1195f5af096689dd59a9994a09ac682749619db3e48

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 43007f9be9ff37c536a310a8ec0dfb412849b6adcadec43a337a4b9cbb757888
MD5 a9085470fecea769c865049ed0bdc43e
BLAKE2b-256 9108e7ef404cd85f2d4b15320c4772597086ba0b8b377286c52420ae0daff622

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0c8c8bdf216e7d4062f87610fe4325176b83720f85cd67e3e78f2f49c36b4fc9
MD5 e8b34dbf5b022700e93f1ae9b53dac85
BLAKE2b-256 da542bbdd0a5ebe2cc55598807b2706e6aac8eb28ec73bee0ef026c5946bcd07

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 98cf3e37f8d6596c62151ef3ec7d8a62285f4bbc6d33c0070994f6c4f96e5144
MD5 5d1823114f8d80caed87972c1de0f5c3
BLAKE2b-256 f3800371f2831ea8259378293d7d3abacf52292328f32e9fe58f7930e933202f

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 06c46b46d89966a2f8d3e09e101ea294eb4492e50b582a3c7b84f98ae135a158
MD5 07f7e95f71291cfdfa017983665147b4
BLAKE2b-256 c3f8ad73099bf15dabf5ae63e22fca01d991d18d76fd5e5b462db102c218d06a

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5e481bf5eaa97ed2a356b2020240034301c5179f97f77d9eb64c7fa8c4881ee4
MD5 a5001c42bd1da23ea1278c5c14b26d94
BLAKE2b-256 9e355e3cf38202258ae117695c4559d8e54d06382494ff92a9689cdb71f1b067

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 6ce018ad1b23cfc4a1f51e7de63e83e00bb48af108e8355123ac7d1c04a60657
MD5 5d020dd3f83750fb26e52c53b7cfb5a2
BLAKE2b-256 6455cb1d46c1e492e32a5afae8c0272fe3b0dc026b441f90470bd5ee68bd3d0e

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a36febc11df53816607cc134fd3aabc7addae34f9c516151b5465cd5392c7015
MD5 0d844a96727ae2e2d69b0152c5893f50
BLAKE2b-256 8165d048e4ac6a018a3c2e6ab93de9a227440eb09ef84ddce4bda6554e53279f

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp311-cp311-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp311-cp311-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 e5b6370808f8172571ecd1be491471e5d3992f2237a07f1b104727ae60b3834c
MD5 33e6825ee6130b6e9a27840c704270e4
BLAKE2b-256 0530f39a7406021af5e89405581bc80a20ca37b418392bfaceec16fb90448669

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 1ad52603f8853f7f679b1f2f76c2d544f82fddab82d69e3d6fb17fbdc797301f
MD5 f0dc057c9d394ab4d8f58063635ab392
BLAKE2b-256 0f91c765ed77a236235a05ff92a3b635c35270cf5c3d9b231c93dd335a64e44e

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 377b299b5e24a25b5c6f3bcffba481bf23c38e0a6d2823f7b0d79734a8b2101d
MD5 f5721e49f805c25e5818dbc4fcc2ed58
BLAKE2b-256 80181fa0dc65b51923ab8120c18f924ed8f080ebd82025f175b9af4bbe8990d4

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7271e443c3c39316405c18ddfa23110777e6025c165c8a6cfd274897957a4e0c
MD5 31963c315a355ffeaf64714f73e59a15
BLAKE2b-256 4286470f82e068fd67c497093807e0e40dba8e2c6725c7a733cd3912a4f183fc

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7707ec76a9fc22486434e52d9c7b471e588a4843c0232b20dbf59c252f980815
MD5 f6dd2ccd0d228cdbba04276aae4a3e31
BLAKE2b-256 9098f400a97fa9183a53044ed6e6a0c88a8c1286f31dd26a7cf1fb96f543d438

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 202039227afd70fcb0d60621dc3d272a1b79ec8528b7b53ddf7a96d51aeb941c
MD5 f6632530589fa0335fd6a41f7530a9a9
BLAKE2b-256 8e48ff1c436df301935b5db6b2b8b2b218b6dfbb2121c017c5bdb01e8e542cfb

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 72e8f3705d2ac9b07bed6b16ed4ffadf67e6d0de9ca6eb9b0380afb1fe41419b
MD5 80d376692221721c10dff77540b65429
BLAKE2b-256 04b0c2b80f8ac2e2ee3e2ea248463d7c876ca996c2527c5c566fcc12387d2a70

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f36bedf41f265e5683a5b6bb7873a56cba50f1aa5c1912913e35f53bc13b241a
MD5 16a56cc522d63f3febe1ed82f6413313
BLAKE2b-256 a521490896007d28cf66bcd83177070debd02f5f041080eaacaa0ec12cb7a8bc

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c582ce8989e5c2896a550493f9e5c73351db2ea4677e58d97b67cf8e40a03ea7
MD5 991a4d4832c7345bb6a264634c4a8df8
BLAKE2b-256 430498776e7f38d5f078238f9b3ffa28ffe3e047ed02a8190975d30a59824ca6

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e9b238ca3c66eaf385b4541b58614d67444184e108cfa2d30859e1e59c50fb5e
MD5 2d9b943a185a80381aeaa8cc59caa1a2
BLAKE2b-256 1543398010c53ec801778bad9c37a3a0e140cac33e7fbc55e3fb515e2802ecbf

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 dc31b8be702d9d978a3e761ce050c27fac3089e7772eb0f49ff132d48641acaf
MD5 dc1df570f2c85c2b66d9737b1af05700
BLAKE2b-256 3d705e01b9df117f453bc0e40a9c68fbd698251359bb1f3986414651bda93f48

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5870274243e32f404c0bde8c8756ee391a3cf40ce5cb367a281e5e46ec37c1a8
MD5 5463fab90b1007dc6e82dc67117140e6
BLAKE2b-256 7d292fa01bd3c1a72371e3e297c5966c3bdbbd3f1997fb2916619a36a50d086c

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp310-cp310-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 f1d66e70aaba6854d4fe997c8f82b81d4571761efd7ffec72b996afaf0284b93
MD5 0b85ebe6e8f9c24ba5e22dcc8bb75f88
BLAKE2b-256 5ad61e6b1aa3cd629597f916181cf441fa9d4d0831ec225dc5d353fd99abb50d

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 527ce6c6d50b3f16bb1922df12cfd7fd2bce69edc4ba4e5b44592e6afda7ef0d
MD5 20c6f83ce544eb1f1c692e1f9f875226
BLAKE2b-256 d492fa5641a96db427a75a592b85b2ddccd3d7ad5c43aef7365b362e03c153c8

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d0b68e226421cbf8747ad53beb4dbb2cdf5559aa559e7659e47f81e1044a1a0c
MD5 f6580cc056322baec1df2b2a6df33a69
BLAKE2b-256 2096a63e02c756b5ef664c19549c163ce3a88d642082281da182afe0e0eb4e2c

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9bb0f1f2ab94ef11811cc16b3e844ce9b7246556585ecd84f3afa64ae9f734ef
MD5 6d9c8d5a0f623de51062bf2e0b325657
BLAKE2b-256 ebea34d0cce69538dcd56c714d6e6711c5003e026f7af9bec36ec90f6af11411

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 aba7d34029830a433e2134ea469af53e26f8545edf5fa29780ef4203ca25f027
MD5 b19c3a6428e01111ddc37151b17031e7
BLAKE2b-256 452ffd6882539fc929f9455ae394db38296fe7353e9b9808c1b1563361f6737c

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8230ca033f96efe1f2891567a84deb6d2f9ab9f567860384d8d3ae79cb41d091
MD5 fa5d5943b835f07859e8e26c3293909f
BLAKE2b-256 2369480c23b371ab13afaaae2f78195b51e74aab309e132a80be5b3509c7674e

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 42b57c3181d379315d6a6a0ab3582d6deec12e2e8dd0ebc90d9432ff5bc6fff1
MD5 a4201ef0b3eb2dc67bf67f3aaaa1753c
BLAKE2b-256 ace8dd9fb705da698652af37d77cb90257c8e7240e8646cbd4848d1d9c0502e4

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 19c640ffa1639c0bc4edbae0492e1721414b167d1a5bdc0ecf3a2aa616079abf
MD5 666e1aa117661d7d3dec9a6ce62d214f
BLAKE2b-256 0452862b21314a51abaf6e939199e4a88f25157c93385594fca1afbbf429ff63

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 01c4ba7e7cca001926baee1d052d5dd5d27094215082e20ac67d92060dc101fb
MD5 8e864db43009ec3984db8d52de124220
BLAKE2b-256 8388173021898796560c2dfc9719a43b1ff11f2f5837037cc7428f7ced82f95d

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 31563810ee9b76e884371a248bf61345b307709fedd94b37d10a771124dd6c56
MD5 3fe3c2543f8399136235f5837bd3ae29
BLAKE2b-256 9ad4a91c634a93bb0ac16268a7e0a9c0ee65582f0d60059150fdb33857a6cffd

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 33cd55ccb490e7974438e5e8233cf796dadc14e18144b468e9d4256590938bb8
MD5 57846a6914ddabfd9d12b9640940905c
BLAKE2b-256 e6d7be409b5ab437b1ef1a0b57a5d4d76b79fc9b7bd996456d6cd6c4a76f3af8

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c06909c60e525f80820ed5009ea66d0c7dc72a39d273beaba1a4b15274ce5aad
MD5 99e3e48740a9c2f42a8b172d9c7c1a48
BLAKE2b-256 e6bcd3214e8ed35258f67b1f7d6d9a0e3771785cb1ca731ae6281385c86c8e1a

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp39-cp39-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 632d27b3f5da0b563baff549d5b19dfc3a951616666e79f285a8aba14abeef21
MD5 e492815e0c81d1c289673aa0a8de8a4a
BLAKE2b-256 3925ff2eeb67a610281d1e94bff6b8dbaf7c58c4e1070f5511b38472a02b7850

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 7457dd991097db3e5d760ee61cd664e21c64a99ca786b8b422550d6bf2e47b67
MD5 a0711f0b142adfaff9ebed7a45d07ad3
BLAKE2b-256 557ae4bb9ba795a0c19d611668a6b49f55c652780e41d514cee3f0656710cbb0

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0e8c1d047f02a5808e4618634574d24991a18f21206b613eb95318a900f828e4
MD5 18ca431ca6920a39b2371eeec27e1df7
BLAKE2b-256 c7351cad4ce2fec6f9ae041b43076a749dd0a80f029c0f7a0e45a2367a6f8ee0

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c860e1fc6e05a1ae92889494e5998fb6a63bfe04cb65d777f5a52567c26a0b61
MD5 e98f133f9f2fde042190b16281cfebe8
BLAKE2b-256 8d61408c982a1cc223bedc5772a974867c5c0ea4d8fe153382ad791a898d5fa4

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4108e18cd1c9f7808c51d09fb39220c3fdab66511649df50282b1429b98d84df
MD5 ff46f002c773cabc059d713d9fe77e82
BLAKE2b-256 147ea36ee22d62570357e9f8f5e524a414b4ee449de2d0fa977d12314ef321f7

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 62766f29634cd9a838812590af9a5d3df917669fd51d2f115dc4fe010af7fb14
MD5 046ef92180d39e21541969df9b8df620
BLAKE2b-256 d16e33de7d39f652443750de048a68247baa47f3ee8ba336b8b560ec202eb521

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 14cd2d5dc3c35d079bf4171b79b9266e3e885ed1d1d9701f8166d12b3332bab3
MD5 21f2da09db679854146e6c45af2e9819
BLAKE2b-256 bee4cef671411c0fe26c67fa678b43f3876bbab9d1beb6951139dc42fd10ce24

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d2a700b409d4e961cd6aa76d69b5f3cf31c794a02fca9984e66a719d81baf9c
MD5 31be87e708878b677a722a5bcb30814f
BLAKE2b-256 674cc93dcda0756a03cee1824be57385e70d6dd23479693894d65cbbaa82b570

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 95f35fb600d71e5c6a70140708777a46b88ff00aaf69549b2ce843da16386e0d
MD5 092152b86a725ea00f9408b82ef92f7a
BLAKE2b-256 72b239f58fd3ae22392f9013fc7d30f821c43ee4c2b79f41c561c0134a1aeed6

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ea31efda142c0e54a7cae0bf7e60ed10ef6ea65d2611d5c08a17037b1333f093
MD5 417c29145325618bce3072f9c334d106
BLAKE2b-256 9b7c17b50e07cee54e9a5e2bae068a2cf859d97f7545472c559bce43641b9280

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 29897c14d5c923df7ac3f44326c6f13f7ba52975ab3a9b69d729ced55571040e
MD5 2ee534095325cf4125c72d2a3f007a2c
BLAKE2b-256 1fccb4bb56fa72468c0c30e5351224a85c0f7969fc061d2f58d3afc69f265794

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 37ed46154e5f5badd1440e0049f3252c69c8b980d7ac60d0f4cc88ca655bcc82
MD5 1eba64f5fb385871b0dc06fabdc6926e
BLAKE2b-256 a81ceea6842c537aeed7b17d7e35d030c239af0be0cf47f82f8e556629464ce6

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp38-cp38-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 75267db335c3bbe73b41a525b4a67b68f97204c3093cd8681178d34c2b0912c1
MD5 eab101292f77b1525433af58cb23285f
BLAKE2b-256 09638c61d4b8af2ca405037380791be8c58d2cf75ed4f9ab1d25cd8ce3f4b927

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 61882961a1632c1f8776cfaf9a30a0fd7b1a1654e7ffb3445e72f9f9fc7e5536
MD5 26b542a146e8dc0ef738759d99bbc20b
BLAKE2b-256 eb95750f7eb9e99fdff45c3a4506132880b90c0de9b6d91181b8e906839e0256

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d8dfed08af48003743bc79ea6f3e02c12f384a6deae78ecda4bb5914da110075
MD5 24af7a7489e17fb96c9740dec0167abe
BLAKE2b-256 25d3c06fd1306f91e733c46e1f9bb6a2eb74182006deffa88fa946da1fe8b538

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 55b03b5467921abd6fc6c495fc59ab1836805f88cc0675acf556da626ecbd5d5
MD5 02e3f33fc6fd78e2d3624cc7d4a14066
BLAKE2b-256 67afa7f1b51fcdfc9bd821a86c3fefea07cb56f49c679a56edb47b842aef0884

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0a58f740775425baedbf41d7eb5c80551ca04ac100843831db70e7e62e2ea3bb
MD5 31834459cbbca2661630d3646b1a01e6
BLAKE2b-256 9260ca47d67b9af63ada919bb96e2f8b8bfc33e3643295b98557ef6f84033ee5

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 483052a5182c605b70f387f475ebabc5557b2fa496a99a22055d0f40fc3538ed
MD5 8890856fadcccbd7ac92f9daa0354f60
BLAKE2b-256 c8153926a45c610bec5ea99a7974dded423bb0918a6e2e34ee94d29a2e956967

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5ba1a2dab174d79508387922029de52a290ab2634478f2aaa2f44eba9c1765e9
MD5 930a4dbbbb580582ecbbe07cbc6d7bf3
BLAKE2b-256 7e3be564e57f00e285426d9bcbcf674660c3f0c7bc2e6b7414757cb63ef53864

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 47c800d64944704f9bbcecc40c5c2bc5719f77487a3e497b7f542c23b03a9fe7
MD5 2ca9759e466820e57eafa444cc3f2db7
BLAKE2b-256 1de8dcfa91b40068fc4e09957162e12cd2b1b7dcc7b8e0be45f69bcceb3bb7c2

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2961cdf5f648f8c23fa2dabbc0f5b4f604d8b5b0b47a9f4e4d82d946c39b0ff6
MD5 42be482c1a68519ba3fec5b4231e6c37
BLAKE2b-256 b3cfe38a34b6d5fba6022a58f6ba1684d48343fa34d9e38b0f6e81a080b50dc0

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 827edd027eb8e0e839c2b8b6b72c97d6e7ac82aa215bd2ae3e53c93725be982b
MD5 0566b76931c19c15b8c56e0aec2a7493
BLAKE2b-256 d17c1ec24750a60f41fd13e879ff7804a57b47a36d9797cdb14fde6c02db25e6

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 c61f58241ad91ef1ec5defe808c0685dc7e2cb4e5df214d10429c731a3d91e5f
MD5 408a1fbaef03d9f9adba57556aee93f0
BLAKE2b-256 2fd941fe3871c6ff7df2f0e1898510a654257a8fcde4e72a904826594af3f3f2

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2aec72621f9b4055a904293f78d5ff654d7528ebbb22d647830f5c8c0e6f0bd3
MD5 1ca51709cfc213d9518f566b1c91d172
BLAKE2b-256 787ef9287d8fc8a98aff344d234856c37cf73da7d6e290e0d4e0470d5fe80e67

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp37-cp37m-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp37-cp37m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 07837ec7e61543df43b611771c8bc97c39f9d2954fd4331316995fe4a408551d
MD5 abda6dbf80ee3b4217efe852852bfcc1
BLAKE2b-256 e552fa60b7cfaa155a437aae4f3a2b587c540d081c56fd61016a2f34720be549

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 7a984b2416e615a23756a79c75f7f997b04ab9ceb0b7ea7cd707a4fece3227db
MD5 7aa3c968f8a801d895313f2c153bfc6f
BLAKE2b-256 357bfec45685945c615d677d361e55f3b2008ac42310be7cf73dbc244eae578e

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2dfab4126f17beb860b5668114a589793dd62da77f7315167f7a630bd4a9d2ff
MD5 49a3b38550e0cfcf832e669d042ced21
BLAKE2b-256 bfc23504e6281a7fcc3948cee96902f2094512fc06d85f506d1d1a974451c645

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ba0ab528150b565fe7cd441b70732965bd098edaa47abdc8afc438268fa9e8c
MD5 a312754e1da824a7b3b294b43fa5a740
BLAKE2b-256 94bbb1a2c2e1be498bb754c937950a9fced1ca6f1a987e4edf5c6ca98f10b8e5

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2524f6a3f4ca5d23eec63e90418ffe33d24121da0fa94e926ec37bdaa0fdadac
MD5 501d4b0ee7588b0b13184524b215d348
BLAKE2b-256 9326285c813fe72a2ca3f68ba9ea3303a19ac36d15cd70e3ec106d2bafecacb3

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 607bcb92c7b10563dd0fa683d304617fe45efae344898217fa2c612082ddafe7
MD5 05d0941ac5f7ecf9ebe88e0c0863461a
BLAKE2b-256 b280773f10299439f492841a512748ca915cd962072c0b3e8c70dc2434dab528

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 eeab59e58cafd02eab53ae1bd0a00962f4b05a56d019ba43f6b95d80dd90bc8a
MD5 e03d40a574d5e17c2965f2b9651b9d94
BLAKE2b-256 07b8f7d7dbfceeea8459bb032eadd491a2bbf644c506198118a6ce53b7e93772

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 eb2fd2287c57361c9578e072837e5f0b14f75aee022f2c474521d2339218ed15
MD5 dc376e6417b725b77a6c1fafcf8aeefb
BLAKE2b-256 7769e6304e11eef8987d7a9bd3d77119f2b98fbe26c3a4f5e96647ea13b60af8

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 1e6d402e37a8e48957edf776055d01995c3ace2688e7c6aa860811267ab477f9
MD5 e662e60b9ed4ed6266efa6439b76db3e
BLAKE2b-256 47a73c8d30cb26c1aee169c3789f3da057b8d12e88be9a8fd9b78df9230d5cf2

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp36-cp36m-win32.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 ba98b2856c22b8389d39d675096db52d9a3abb54f6d82a4b77fe0a7b11197e91
MD5 5aa184117cb9054fdfce9da3f39bf3bd
BLAKE2b-256 2ca827237b4a95e61a942c053c8f069da9daf0a24d69ab4aba7c83386445074a

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0f7b67a58bf96aa917bee89a033b7bf013a2bc9ff181aaa63acf1427d48a3d06
MD5 97d021ea3dd1bd1f13439d546ec3abd3
BLAKE2b-256 6c9951f84ab42b48981625d8abb19068641d4ea6842d85ccc730141a0e3685aa

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp36-cp36m-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp36-cp36m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 f5a6663d946fcbb845a38721c292ab8ee5791193e780da2e32584b2b47a07588
MD5 28e0456dfe89f3073e3d75455302572d
BLAKE2b-256 10a0d2596c005789a825d5c185dd8d36aaee90496dcb19c6de83a0dede280a3f

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 4843c953f8392d41d0b317c4ae4b73461e36bfcf23fb0cb0f0db3ffb41fdaed4
MD5 e08a090bc242facd3531d61b8757c924
BLAKE2b-256 de3b83c60e7b0f1bc393a9aed82918f4b9439f81bca5f9163be08ebe173fa302

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp36-cp36m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp36-cp36m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 175f0e3b8dcf47d3f5cbc391df99036adf57c14b74edeaa59ebb3dfb5e1efdaa
MD5 04e1781de41df8ab6c971e5559a55a23
BLAKE2b-256 57ca312fe5647de0aeae01f21fb2e123412efea9c806f875595936e968875594

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0bf684efe7425843754188a5efde6d610866950afb44b0b5fb30698b2a2172ee
MD5 73052a062fcdf0b6561426a85bd92ec6
BLAKE2b-256 bf412cd07a1deb0e56ff02006a2dcc60a8dd301e0827507f4f5b1514009fe834

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9fc857c06215da26b024d83e58540d364f40cbdf92380a52994a8fbbe4699b95
MD5 83fd641c0f6ca185e4590c114f801e23
BLAKE2b-256 4fc76586a15a76302b21a9afca1723289571f7172ffea246efebb82ff8115117

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2eb88562e24a7912bdd9463559285c9437be37c368eae3d73e9ef3b7713cf2cf
MD5 f58cb1cfc2a59ab0c4466e7a74fb52c4
BLAKE2b-256 625a9e920b3a390865b63f3f45ccc03269c6748661f98962c260cdc465eab407

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2c66c0e0f2b025f69237a574bb27f955490c57d4af64b6170a35d83d262f5d1d
MD5 9379d2a8b5cff3e5fe2eff569660f6e7
BLAKE2b-256 023c0b3348c02a42d0f875d6f44f2f9e7edb84dbbff59f20847995b659e24dc1

See more details on using hashes here.

File details

Details for the file webrtcvad_wheels-2.0.11.post1-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for webrtcvad_wheels-2.0.11.post1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 14e5b711c1f2f0e275ca0babd166b9287d2fb6e5a0feef63ac26efcbf31e8f6d
MD5 77a07872b5a54ede83ed705d7fa6dad8
BLAKE2b-256 b8000a9d0ebf284f7dac7c316dafa884d716d0173312c49a307b7a8d8edd1f6c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page