Skip to main content

High quality, one-dimensional sample-rate conversion library

Project description

Python-SoXR

GitHub PyPI Read the Docs

High quality, one-dimensional sample-rate conversion library for Python.

Keywords: Resampler, Audio resampling, Samplerate conversion, DSP(Digital Signal Processing)

Python-SoXR is a Python wrapper of libsoxr.

Installation

pip install soxr

If installation fails, upgrade pip with python -m pip install --upgrade pip and try again.

Basic usage

import soxr

y = soxr.resample(
    x,          # 1D(mono) or 2D(frames, channels) array input
    48000,      # input samplerate
    16000       # target samplerate
)

If input is not numpy.ndarray, it will be converted to numpy.ndarray(dtype='float32').
dtype should be one of float32, float64, int16, int32.

Output is numpy.ndarray with same dimension and data type of input.

Streaming usage

Use ResampleStream for real-time processing or very long signal.

import soxr

rs = soxr.ResampleStream(
    44100,              # input samplerate
    16000,              # target samplerate
    1,                  # channel(s)
    dtype='float32'     # data type (default = 'float32')
)

eof = False
while not eof:
    # Get chunk
    ...

    y_chunk = rs.resample_chunk(
        x,              # 1D(mono) or 2D(frames, channels) array input
        last=eof        # Set True at end of input
    )

Output frame count may not be consistent. This is normal operation.
(ex. [0, 0, 0, 186, 186, 166, 186, 186, 168, ...])

Requirement

x86 and ARM processors are supported.

Neon extension is required for ARM CPUs. Without Neon, it may crash or return inaccurate result.

Benchmark

Sweep, impulse, speed compairsion with other Python resamplers.

https://colab.research.google.com/drive/1XgSOvWlRIau1FYwQG_yRSAhDK3KB8bEL?usp=sharing

Speed comparison summary

Downsampling 10 sec of 48000 Hz to 44100 Hz.
Ran on Google Colab.

Library Time on CPU (ms)
soxr (HQ) 7.2
scipy.signal.resample 13.4
soxr (VHQ) 15.8
torchaudio 19.2
lilfilter 21.4
julius 23.1
resampy (kaiser_fast) 62.6
samplerate (sinc_medium) 92.5
resampy (kaiser_best) 256
samplerate (sinc_best) 397

Technical detail

For technical details behind resampler, see libsoxr docs.

Credit and License

Python-SoXR is LGPL v2.1+ licensed, following libsoxr's license.

OSS libraries used

libsoxr (LGPLv2.1+)

The SoX Resampler library
https://sourceforge.net/projects/soxr/

Python-SoXR is a Python wrapper of libsoxr.

PFFFT (BSD-like)

PFFFT: a pretty fast FFT.
https://bitbucket.org/jpommier/pffft/

libsoxr dependency.

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

soxr-0.3.2b1.tar.gz (288.5 kB view details)

Uploaded Source

Built Distributions

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

soxr-0.3.2b1-pp38-pypy38_pp73-win_amd64.whl (165.6 kB view details)

Uploaded PyPyWindows x86-64

soxr-0.3.2b1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (386.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

soxr-0.3.2b1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (382.8 kB view details)

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

soxr-0.3.2b1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (370.9 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

soxr-0.3.2b1-cp310-cp310-win_amd64.whl (176.1 kB view details)

Uploaded CPython 3.10Windows x86-64

soxr-0.3.2b1-cp310-cp310-win32.whl (148.7 kB view details)

Uploaded CPython 3.10Windows x86

soxr-0.3.2b1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

soxr-0.3.2b1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

soxr-0.3.2b1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

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

soxr-0.3.2b1-cp310-cp310-macosx_10_9_x86_64.whl (402.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

soxr-0.3.2b1-cp39-cp39-win_amd64.whl (176.4 kB view details)

Uploaded CPython 3.9Windows x86-64

soxr-0.3.2b1-cp39-cp39-win32.whl (148.9 kB view details)

Uploaded CPython 3.9Windows x86

soxr-0.3.2b1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

soxr-0.3.2b1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

soxr-0.3.2b1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

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

soxr-0.3.2b1-cp39-cp39-macosx_10_9_x86_64.whl (402.6 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

soxr-0.3.2b1-cp38-cp38-win_amd64.whl (176.7 kB view details)

Uploaded CPython 3.8Windows x86-64

soxr-0.3.2b1-cp38-cp38-win32.whl (149.1 kB view details)

Uploaded CPython 3.8Windows x86

soxr-0.3.2b1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

soxr-0.3.2b1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

soxr-0.3.2b1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

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

soxr-0.3.2b1-cp38-cp38-macosx_10_9_x86_64.whl (402.1 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

soxr-0.3.2b1-cp37-cp37m-win_amd64.whl (175.0 kB view details)

Uploaded CPython 3.7mWindows x86-64

soxr-0.3.2b1-cp37-cp37m-win32.whl (148.1 kB view details)

Uploaded CPython 3.7mWindows x86

soxr-0.3.2b1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

soxr-0.3.2b1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

soxr-0.3.2b1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

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

soxr-0.3.2b1-cp37-cp37m-macosx_10_9_x86_64.whl (399.6 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

soxr-0.3.2b1-cp36-cp36m-win_amd64.whl (193.2 kB view details)

Uploaded CPython 3.6mWindows x86-64

soxr-0.3.2b1-cp36-cp36m-win32.whl (159.4 kB view details)

Uploaded CPython 3.6mWindows x86

soxr-0.3.2b1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

soxr-0.3.2b1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

soxr-0.3.2b1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

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

soxr-0.3.2b1-cp36-cp36m-macosx_10_9_x86_64.whl (400.3 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

Details for the file soxr-0.3.2b1.tar.gz.

File metadata

  • Download URL: soxr-0.3.2b1.tar.gz
  • Upload date:
  • Size: 288.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for soxr-0.3.2b1.tar.gz
Algorithm Hash digest
SHA256 dfe28b54e2f1910a345c81e3612252c7a50112ebdfe76e3de4560c26b55687c3
MD5 13120b3bbbc2c8e456dfd52770d30096
BLAKE2b-256 66e13d7717475ac170f92825a8573e94f7a22cf9e20552968279b936480ae5ed

See more details on using hashes here.

File details

Details for the file soxr-0.3.2b1-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for soxr-0.3.2b1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 3ddc9b2202c75012c44c17065006bb4c2c0b0a320bc4074b15a8327fab10d691
MD5 6d09635fe0450f3973f99bf73d0b2e43
BLAKE2b-256 14cb7d550de93e698862c6b2aff1349dd618f5124a9738856e888ea840f31dc3

See more details on using hashes here.

File details

Details for the file soxr-0.3.2b1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for soxr-0.3.2b1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6afb671348e869c7c86127beccb2edfe79800661dffb9fbad62aea0bb13ca1c1
MD5 abc693f8ae14fe6ec8775cf656c09899
BLAKE2b-256 93662199e97d75f73104b02b60595b4410036a6ce0cadcb562c7f7a8bfa4e8fe

See more details on using hashes here.

File details

Details for the file soxr-0.3.2b1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for soxr-0.3.2b1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d75e3880c36826abd02ee6277cf3f72809e81fc75847a416fcb054e1d4724f11
MD5 348ba89f4c1e9f64da4b9312cff685cd
BLAKE2b-256 f9e6471c9efafe07a349f51a95189752c013d7c82762d73fe32089a7faf09756

See more details on using hashes here.

File details

Details for the file soxr-0.3.2b1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for soxr-0.3.2b1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5bc4c0fc91d76f3e9cec54413e5908f66cf8ba9f810c779c068faeed39d03998
MD5 3bdb009c7ab5eadd4520ad7afd09fbc8
BLAKE2b-256 903a9d5efeb140be8ead64fbd1a0aebe29e56fee43535d7517f5a3ff0442f259

See more details on using hashes here.

File details

Details for the file soxr-0.3.2b1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: soxr-0.3.2b1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 176.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for soxr-0.3.2b1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e588320fd2291a1bbdf39e6a7662712a3711524496f7b3747e0547f23b8b2250
MD5 4e805e78e51b673af5376b825d43596a
BLAKE2b-256 7f93deac213576f55b9857eb48c42aa567ba7e2aa177f210650c75b2c88de880

See more details on using hashes here.

File details

Details for the file soxr-0.3.2b1-cp310-cp310-win32.whl.

File metadata

  • Download URL: soxr-0.3.2b1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 148.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for soxr-0.3.2b1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 5d9af8f14a19d56b613f93f5f6cdf0643d7320c87e5f6152ba7303a0afd190a9
MD5 8690f776e2d99fbb15d4cfa5e9646c51
BLAKE2b-256 7a2e2d7c4fa966945a9a11ef132a05b97f504fd99b3d743b173558ee65ae5668

See more details on using hashes here.

File details

Details for the file soxr-0.3.2b1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for soxr-0.3.2b1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a1539331be8c4a51eae3a2373fdd2fde1a20d548ec0b7ed70ebddfcfe6a30142
MD5 623578cfdca32a74d13f34e6cb0d182d
BLAKE2b-256 e8619e34be0901e62eb187210f8d4aa2d84803b5dd74436d10e77c2c6c1124d7

See more details on using hashes here.

File details

Details for the file soxr-0.3.2b1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for soxr-0.3.2b1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d4c9a12fa8d694f2e284107ffa6e365063d43e808e16bca0106feb816b052284
MD5 96c1784da171f7adb21f3e0255bfecb8
BLAKE2b-256 72a096b4d74d9f873162d00d72735f9cf6d0f1984f186a131144d4abed159bed

See more details on using hashes here.

File details

Details for the file soxr-0.3.2b1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for soxr-0.3.2b1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ee732ea0e01302336388a77d09369183ac2d27ce2cc40f907b67c2bbe60406ab
MD5 1944cd648fa641547086b10165128041
BLAKE2b-256 bd15922cc3137a6056e49e7430274a8f05edc00df7c405706aa5a9f356ba264c

See more details on using hashes here.

File details

Details for the file soxr-0.3.2b1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for soxr-0.3.2b1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c0ea546e1d024b3c622e4f8066d3b1c9f59af744a8f36ec77307dc5d0ae82c44
MD5 48eee1d7c1034789ceb86649ff1063a9
BLAKE2b-256 78dba14070d7a6c1325efefb20d463c02d4c3ed8004bd82018f74e8ee25c6de3

See more details on using hashes here.

File details

Details for the file soxr-0.3.2b1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: soxr-0.3.2b1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 176.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for soxr-0.3.2b1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4cbaf1365cb62cca8932e1d103bd6e824e1d64cbad591fea97390bb5bbfb3f3b
MD5 ff15b7cfdd51c4e6a1ebe9606f29acd6
BLAKE2b-256 865aba1325681fcce867d942ef7351b37b8ef0eaa21576974667ac8aa31e5b9a

See more details on using hashes here.

File details

Details for the file soxr-0.3.2b1-cp39-cp39-win32.whl.

File metadata

  • Download URL: soxr-0.3.2b1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 148.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for soxr-0.3.2b1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a684f659bb3bcc9b73bd2e805247a97b8892c548da499d000d5d57ad7c1e0423
MD5 24d76f19af8c6f6a64217c8fce4db0fc
BLAKE2b-256 40a7a4d926b95e67e8828d13da93e646017b310ca4b8967c94cf61fde6b4e462

See more details on using hashes here.

File details

Details for the file soxr-0.3.2b1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for soxr-0.3.2b1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7453c33eb5b5581b0b7f31f97ff3f5935645cc34171bdb1ea2332bdbf44fe023
MD5 12d86316c8522102197ef7b74f506368
BLAKE2b-256 7cf71f06a5292e71e190bbf4bf1ef341a4d83310d7596e6cd1de7a29bdea816e

See more details on using hashes here.

File details

Details for the file soxr-0.3.2b1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for soxr-0.3.2b1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c05b414f57b2ed0143e4e60a52829faa24e0a2897a11610b38137d50ed30b056
MD5 024f3c1f8931b896d82137ec4bdfa39a
BLAKE2b-256 36dabdce1af60316eee5183749112c2d90b46ac37f181f7624da8ea33de65ad3

See more details on using hashes here.

File details

Details for the file soxr-0.3.2b1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for soxr-0.3.2b1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a980c34a738a7d35efc35f4306c8c6331e6813ef75e7e51af2e627d7336fb0c8
MD5 c2a5ba7a576dba4e5e6e5c7e8267d968
BLAKE2b-256 545d6ebd8b019d152a68f2abcf0ba93872e59fdc63c963692811501a35cb410f

See more details on using hashes here.

File details

Details for the file soxr-0.3.2b1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for soxr-0.3.2b1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e1524e874926064afbce652b51dab043ef03bd5d58f95af2009a08dd950454b6
MD5 ab337db15fc0a6bece09148304127763
BLAKE2b-256 1a74d0e76859a7b2a3cd2ab795145070aa4a8e2ed964ded65e346adf5e702221

See more details on using hashes here.

File details

Details for the file soxr-0.3.2b1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: soxr-0.3.2b1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 176.7 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for soxr-0.3.2b1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0b5394ada1f2207d7cd3b988fed113f387d6152f728a8f891fedfc34637932b7
MD5 3a4b52893d1a8aefc4db229ca3744614
BLAKE2b-256 e9189376a1c3b21bddf0e905579fd78679b7d3f9cff42c893b886c306ad32cf8

See more details on using hashes here.

File details

Details for the file soxr-0.3.2b1-cp38-cp38-win32.whl.

File metadata

  • Download URL: soxr-0.3.2b1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 149.1 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for soxr-0.3.2b1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 ee56b247f219a59be4cb4eb334e33c9c24a20ac6a35986ea7cf53ada9f9d5d29
MD5 63c4c5330abbe61d141717ebf3cf1a78
BLAKE2b-256 76a3e86896ae207271f85d488629b16c59f07ef302c3345774d0405362c32ff2

See more details on using hashes here.

File details

Details for the file soxr-0.3.2b1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for soxr-0.3.2b1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e3d0ed7c64c5cce4c22913b58e48633602a69f6cb9f5e49829d5004bfeaa9a53
MD5 a9a159365e86b79e8f415e1a348b347d
BLAKE2b-256 8e1e1db03cee065d31b6a8379900afce1cc8fb29a59e9ff5aac993e0f563299f

See more details on using hashes here.

File details

Details for the file soxr-0.3.2b1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for soxr-0.3.2b1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 491ada608b5c781ee984ba8cf65feb5263e66c7dfe67d5870f5d51cb2103bf41
MD5 0e82f628e5158872f0d036a95c5f1bce
BLAKE2b-256 b6047f83d06d1738735b73572422b552bcc70152902d3c6cf4ec854c88c10263

See more details on using hashes here.

File details

Details for the file soxr-0.3.2b1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for soxr-0.3.2b1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a33304f508f0214400e3d7ba787146e651242dde9241ebf02e4e9e4bc71db44c
MD5 3e2cd936edf0cfec8caccd0a15ef130b
BLAKE2b-256 992cb66f7bbff054e525f5b5d92a4d4eba5d3380bd5d276bce1546ca599faa99

See more details on using hashes here.

File details

Details for the file soxr-0.3.2b1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for soxr-0.3.2b1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4a6a60fea2f8e4a0893b4b1e3038a2784159fe9a817f44ca8952617e9faeaeec
MD5 6e2bd3951af83ce431a61b4984b3d940
BLAKE2b-256 7f692d47355081d65671a2e95032d5055d1ae51fce374a86240987d7665ee24d

See more details on using hashes here.

File details

Details for the file soxr-0.3.2b1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: soxr-0.3.2b1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 175.0 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for soxr-0.3.2b1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 56796a783e803d160dd14619c8c8436adce190acda5fb587d5b15f1738528e15
MD5 89fb9bd8feb91c057b567b28b0513464
BLAKE2b-256 1da3d6b67bd6077a216b689a59ab3abad10854b693fbdfce3e75a5f6ba58dc78

See more details on using hashes here.

File details

Details for the file soxr-0.3.2b1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: soxr-0.3.2b1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 148.1 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for soxr-0.3.2b1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 2866d16f0ff956c7d6efe4080116cb677990a1f208ed023c5e579008006b61e0
MD5 594df4426f8150a081599df29fd38980
BLAKE2b-256 d3abb7234d261d2f5bcd736eaf2fa27df6847191b6d42e7adc558cc378f9b8aa

See more details on using hashes here.

File details

Details for the file soxr-0.3.2b1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for soxr-0.3.2b1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4007f2190875a77ea352e112f47495a1d5708fabe0640e1815c2d24df80d5589
MD5 fb78aa22e4590eb7dbcfee6c549efb65
BLAKE2b-256 f58ada84127e49cc3d34ba866e966644d8775d024f8b2f8ae673f7939c529329

See more details on using hashes here.

File details

Details for the file soxr-0.3.2b1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for soxr-0.3.2b1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 69e6621dc58b7e569c6c778799f4b070863bb51e4b54f6d99be1b1b7c1ea4ae2
MD5 030abc6701855d479eec3a557ae0a4e2
BLAKE2b-256 da689219ffc2225e6f44d06edf7490eafd3997ee74d6851e06b4fe4542a357e8

See more details on using hashes here.

File details

Details for the file soxr-0.3.2b1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for soxr-0.3.2b1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 08adacd56776134c1221e19bd74169184b4f848181c29595fd592fbd335f61f3
MD5 50d33385e61fcc681f9ede5d0822cc0a
BLAKE2b-256 22c0209925c4394fde502ea94804109d1ea15b8f12985475d2361faff3d39ec3

See more details on using hashes here.

File details

Details for the file soxr-0.3.2b1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for soxr-0.3.2b1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 906d3c20bb0925ea54eaa36984338d4d607a078940605ce0dcba69d5ffe81e41
MD5 681497b8f515bc6eeb3b00261ab35e8f
BLAKE2b-256 e765f2f2d5865e23209fab8242f075169e923b98f5d0000243bea105ca3422c9

See more details on using hashes here.

File details

Details for the file soxr-0.3.2b1-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: soxr-0.3.2b1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 193.2 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for soxr-0.3.2b1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 b4976e09beae0cf21a45fd58889ffd26d460be9432e4e0acbb094b3561b2bb39
MD5 7bc85fea00c50811ffd05ba671849c92
BLAKE2b-256 ff3cc4e9161fae9aa6e4942852de9a35f8d46a031efb5bdb9376d4c63c91263e

See more details on using hashes here.

File details

Details for the file soxr-0.3.2b1-cp36-cp36m-win32.whl.

File metadata

  • Download URL: soxr-0.3.2b1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 159.4 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for soxr-0.3.2b1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 3bbc776d5619314f2ef975455e0bfacf00438b9a7501cfa21670c9eac8b3a1d8
MD5 18835d35a9a2bb0153ebff1049a2b2f5
BLAKE2b-256 e13a01da0ab5919c3b5ca4715816f5b31b75924490ca28f6349ea073782b4fda

See more details on using hashes here.

File details

Details for the file soxr-0.3.2b1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for soxr-0.3.2b1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a6ca43d0265c973ddd993235d8c73b4d240e2c9eeb9c56cdd13f5333c35c8972
MD5 1be43a3d21966b49d13a1b57ae1156c1
BLAKE2b-256 e7da559c0cd5d9864d171c8984cb0888734718fad9c973c47efd88467247c025

See more details on using hashes here.

File details

Details for the file soxr-0.3.2b1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for soxr-0.3.2b1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b750817744b6a0f5f8c6a451787c6a87e7542459fe2a306b31ac6f9ffad7272e
MD5 e8c14551d5cfe2a772e83074a53cca02
BLAKE2b-256 7428ab7066ad84de7893e164479521e86616e977890f3d98be60ba84553b8012

See more details on using hashes here.

File details

Details for the file soxr-0.3.2b1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for soxr-0.3.2b1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 64e75ee56483542ae182e1f22c5d59f1687063807e26b88d66a16d6c92c59c66
MD5 e104de159a6abd14c9fc1b49408ea53e
BLAKE2b-256 812bd4954befdf9369508295a64c4d8dd901955a01af803c2ef5c8dcbd9f24ed

See more details on using hashes here.

File details

Details for the file soxr-0.3.2b1-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for soxr-0.3.2b1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 328859aaad81d99eb67bef7bbc90fcdfabc81034b3479b0b906a41e3c5e74209
MD5 c66a0c92e7e20b823463360941f0de4e
BLAKE2b-256 dcd34ffc32fb1aea16d18be00a7ae13264f3b7c54623f19b0d50bd37fce878f0

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