Skip to main content

A simple framework for room acoustics and audio processing in Python.

Project description

Pyroomacoustics logo
Documentation Status Test on mybinder Pyroomacoustics discord server

Summary

Pyroomacoustics is a software package aimed at the rapid development and testing of audio array processing algorithms. The content of the package can be divided into three main components:

  1. Intuitive Python object-oriented interface to quickly construct different simulation scenarios involving multiple sound sources and microphones in 2D and 3D rooms;

  2. Fast C++ implementation of the image source model and ray tracing for general polyhedral rooms to efficiently generate room impulse responses and simulate the propagation between sources and receivers;

  3. Reference implementations of popular algorithms for STFT, beamforming, direction finding, adaptive filtering, source separation, and single channel denoising.

Together, these components form a package with the potential to speed up the time to market of new algorithms by significantly reducing the implementation overhead in the performance evaluation step. Please refer to this notebook for a demonstration of the different components of this package.

Room Acoustics Simulation

Consider the following scenario.

Suppose, for example, you wanted to produce a radio crime drama, and it so happens that, according to the scriptwriter, the story line absolutely must culminate in a satanic mass that quickly degenerates into a violent shootout, all taking place right around the altar of the highly reverberant acoustic environment of Oxford’s Christ Church cathedral. To ensure that it sounds authentic, you asked the Dean of Christ Church for permission to record the final scene inside the cathedral, but somehow he fails to be convinced of the artistic merit of your production, and declines to give you permission. But recorded in a conventional studio, the scene sounds flat. So what do you do?

—Schnupp, Nelken, and King, Auditory Neuroscience, 2010

Faced with this difficult situation, pyroomacoustics can save the day by simulating the environment of the Christ Church cathedral!

At the core of the package is a room impulse response (RIR) generator based on the image source model that can handle

  • Convex and non-convex rooms

  • 2D/3D rooms

The core image source model and ray tracing modules are written in C++ for better performance.

The philosophy of the package is to abstract all necessary elements of an experiment using an object-oriented programming approach. Each of these elements is represented using a class and an experiment can be designed by combining these elements just as one would do in a real experiment.

Let’s imagine we want to simulate a delay-and-sum beamformer that uses a linear array with four microphones in a shoe box shaped room that contains only one source of sound. First, we create a room object, to which we add a microphone array object, and a sound source object. Then, the room object has methods to compute the RIR between source and receiver. The beamformer object then extends the microphone array class and has different methods to compute the weights, for example delay-and-sum weights. See the example below to get an idea of what the code looks like.

The Room class also allows one to process sound samples emitted by sources, effectively simulating the propagation of sound between sources and microphones. At the input of the microphones composing the beamformer, an STFT (short time Fourier transform) engine allows to quickly process the signals through the beamformer and evaluate the output.

Reference Implementations

In addition to its core image source model simulation, pyroomacoustics also contains a number of reference implementations of popular audio processing algorithms for

We use an object-oriented approach to abstract the details of specific algorithms, making them easy to compare. Each algorithm can be tuned through optional parameters. We have tried to pre-set values for the tuning parameters so that a run with the default values will in general produce reasonable results.

Datasets

In an effort to simplify the use of datasets, we provide a few wrappers that allow to quickly load and sort through some popular speech corpora. At the moment we support the following.

For more details, see the doc.

Quick Install

Install the package with pip:

pip install pyroomacoustics

A cookiecutter is available that generates a working simulation script for a few 2D/3D scenarios:

# if necessary install cookiecutter
pip install cookiecutter

# create the simulation script
cookiecutter gh:fakufaku/cookiecutter-pyroomacoustics-sim

# run the newly created script
python <chosen_script_name>.py

We have also provided a minimal Dockerfile example in order to install and run the package within a Docker container. Note that you should increase the memory of your containers to 4 GB. Less may also be sufficient, but this is necessary for building the C++ code extension. You can build the container with:

docker build -t pyroom_container .

And enter the container with:

docker run -it pyroom_container:latest /bin/bash

Dependencies

The minimal dependencies are:

numpy
scipy>=0.18.0
Cython
pybind11

where Cython is only needed to benefit from the compiled accelerated simulator. The simulator itself has a pure Python counterpart, so that this requirement could be ignored, but is much slower.

On top of that, some functionalities of the package depend on extra packages:

samplerate   # for resampling signals
matplotlib   # to create graphs and plots
sounddevice  # to play sound samples
mir_eval     # to evaluate performance of source separation in examples

The requirements.txt file lists all packages necessary to run all of the scripts in the examples folder.

This package is mainly developed under Python 3.6. The last supported version for Python 2.7 is 0.4.3.

Under Linux and Mac OS, the compiled accelerators require a valid compiler to be installed, typically this is GCC. When no compiler is present, the package will still install but default to the pure Python implementation which is much slower. On Windows, we provide pre-compiled Python Wheels for Python 3.5 and 3.6.

Example

Here is a quick example of how to create and visualize the response of a beamformer in a room.

import numpy as np
import matplotlib.pyplot as plt
import pyroomacoustics as pra

# Create a 4 by 6 metres shoe box room
room = pra.ShoeBox([4,6])

# Add a source somewhere in the room
room.add_source([2.5, 4.5])

# Create a linear array beamformer with 4 microphones
# with angle 0 degrees and inter mic distance 10 cm
R = pra.linear_2D_array([2, 1.5], 4, 0, 0.1)
room.add_microphone_array(pra.Beamformer(R, room.fs))

# Now compute the delay and sum weights for the beamformer
room.mic_array.rake_delay_and_sum_weights(room.sources[0][:1])

# plot the room and resulting beamformer
room.plot(freq=[1000, 2000, 4000, 8000], img_order=0)
plt.show()

More examples

A couple of detailed demos with illustrations are available.

A comprehensive set of examples covering most of the functionalities of the package can be found in the examples folder of the GitHub repository.

A video introduction to pyroomacoustics.

A video tutorial series on using pyroomacoustics covering many advanced topics.

Authors

  • Robin Scheibler

  • Ivan Dokmanić

  • Sidney Barthe

  • Eric Bezzam

  • Hanjie Pan

How to contribute

If you would like to contribute, please clone the repository and send a pull request.

For more details, see our CONTRIBUTING page.

Academic publications

This package was developed to support academic publications. The package contains implementations for DOA algorithms and acoustic beamformers introduced in the following papers.

  • H. Pan, R. Scheibler, I. Dokmanic, E. Bezzam and M. Vetterli. FRIDA: FRI-based DOA estimation for arbitrary array layout, ICASSP 2017, New Orleans, USA, 2017.

  • I. Dokmanić, R. Scheibler and M. Vetterli. Raking the Cocktail Party, in IEEE Journal of Selected Topics in Signal Processing, vol. 9, num. 5, p. 825 - 836, 2015.

  • R. Scheibler, I. Dokmanić and M. Vetterli. Raking Echoes in the Time Domain, ICASSP 2015, Brisbane, Australia, 2015.

If you use this package in your own research, please cite our paper describing it.

R. Scheibler, E. Bezzam, I. Dokmanić, Pyroomacoustics: A Python package for audio room simulations and array processing algorithms, Proc. IEEE ICASSP, Calgary, CA, 2018.

License

Copyright (c) 2014-2021 EPFL-LCAV

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

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

pyroomacoustics-0.10.1.tar.gz (553.7 kB view details)

Uploaded Source

Built Distributions

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

pyroomacoustics-0.10.1-cp314-cp314-win_amd64.whl (718.7 kB view details)

Uploaded CPython 3.14Windows x86-64

pyroomacoustics-0.10.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pyroomacoustics-0.10.1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

pyroomacoustics-0.10.1-cp314-cp314-macosx_10_15_universal2.whl (1.1 MB view details)

Uploaded CPython 3.14macOS 10.15+ universal2 (ARM64, x86-64)

pyroomacoustics-0.10.1-cp313-cp313-win_amd64.whl (706.2 kB view details)

Uploaded CPython 3.13Windows x86-64

pyroomacoustics-0.10.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pyroomacoustics-0.10.1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

pyroomacoustics-0.10.1-cp313-cp313-macosx_10_13_universal2.whl (1.1 MB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

pyroomacoustics-0.10.1-cp312-cp312-win_amd64.whl (706.4 kB view details)

Uploaded CPython 3.12Windows x86-64

pyroomacoustics-0.10.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pyroomacoustics-0.10.1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

pyroomacoustics-0.10.1-cp312-cp312-macosx_10_13_universal2.whl (1.1 MB view details)

Uploaded CPython 3.12macOS 10.13+ universal2 (ARM64, x86-64)

pyroomacoustics-0.10.1-cp311-cp311-win_amd64.whl (704.5 kB view details)

Uploaded CPython 3.11Windows x86-64

pyroomacoustics-0.10.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pyroomacoustics-0.10.1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

pyroomacoustics-0.10.1-cp311-cp311-macosx_10_9_universal2.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 10.9+ universal2 (ARM64, x86-64)

pyroomacoustics-0.10.1-cp310-cp310-win_amd64.whl (704.5 kB view details)

Uploaded CPython 3.10Windows x86-64

pyroomacoustics-0.10.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pyroomacoustics-0.10.1-cp310-cp310-macosx_10_9_universal2.whl (1.1 MB view details)

Uploaded CPython 3.10macOS 10.9+ universal2 (ARM64, x86-64)

pyroomacoustics-0.10.1-cp39-cp39-win_amd64.whl (705.2 kB view details)

Uploaded CPython 3.9Windows x86-64

pyroomacoustics-0.10.1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pyroomacoustics-0.10.1-cp39-cp39-macosx_10_9_universal2.whl (1.1 MB view details)

Uploaded CPython 3.9macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file pyroomacoustics-0.10.1.tar.gz.

File metadata

  • Download URL: pyroomacoustics-0.10.1.tar.gz
  • Upload date:
  • Size: 553.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pyroomacoustics-0.10.1.tar.gz
Algorithm Hash digest
SHA256 26aa7d680e68d0b947220026b95b1c5a05eee08f38c53ff49a7804672c0a2886
MD5 ad0a0716bbc0f1a2d30cde2ba155ad9c
BLAKE2b-256 5ef9063c249181cdbbbd80eb621f871a4173e95df439e5d8fd22de4df44fed60

See more details on using hashes here.

File details

Details for the file pyroomacoustics-0.10.1-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for pyroomacoustics-0.10.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ce6743905c967c9362f546883f57f5e4e0a508c44222c0efb947074b9d0d39fe
MD5 4dcf246994f6d8ae3496c1efcc1a60ef
BLAKE2b-256 70e514c6055896cd94e98cdd2fb74559a77cc2567fe2b2f89c42d3be407cb194

See more details on using hashes here.

File details

Details for the file pyroomacoustics-0.10.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyroomacoustics-0.10.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ef6d038374cc205c567d47203eda1fd745d7e34c06f3fb89a13289f065807ead
MD5 39e167a0bba0f386f19e63c4171fe9d5
BLAKE2b-256 a91bfceb2596b9d511eef464bab56c950f7280af2e83e8254a922e1ba33d2387

See more details on using hashes here.

File details

Details for the file pyroomacoustics-0.10.1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyroomacoustics-0.10.1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b8f13eeb593e4394b724e71b7302dcce77f3727bbb204b966a54c999cee32078
MD5 c4fe805a32b5b8fdf611fc7509c5ad29
BLAKE2b-256 ee241881600551e7d01aced3b1b048b2790667210e07f9a962a242f88bdea2ef

See more details on using hashes here.

File details

Details for the file pyroomacoustics-0.10.1-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for pyroomacoustics-0.10.1-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 bbefe48fcb2117fb0731a5be3f82d1d029e603d5a56bdc7fbfa2c8ccc4f6ace5
MD5 1599fc941b22fa06c365f2a534aaf8e4
BLAKE2b-256 b3f10771da3406c62addc43916251952bc2448c3550bdc219cfacf997b808dce

See more details on using hashes here.

File details

Details for the file pyroomacoustics-0.10.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pyroomacoustics-0.10.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 abcc05fe21315b6f0244ba77e96b4d0be63efdf99288614b50c33871a2d4ed2d
MD5 8137f88806a99c8abc2c8bc7f29e850a
BLAKE2b-256 eadffd267974029c8a1426b35ed00f30e68afbb7810acde50cd31d7c40ba7022

See more details on using hashes here.

File details

Details for the file pyroomacoustics-0.10.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyroomacoustics-0.10.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c73af58bca4109bcf4bb567f0a3db9d5d94684a16705be4b674223f4f048f2ad
MD5 94f3a3b4bc8bfa0b3f3eafb6e3dc7b3d
BLAKE2b-256 842090361ee35389cff48165fb08072af7b75551eac3387f839804b3016d20e6

See more details on using hashes here.

File details

Details for the file pyroomacoustics-0.10.1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyroomacoustics-0.10.1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 af4d4f672982d616a46df4de0f7ec734703fb904d9c984d9f07ddb1e8c222818
MD5 266b136feedd11a287ca9a530c0804a5
BLAKE2b-256 a6acfdbf223e09843c90a825665e1e156f3f095d2b742bd1f186028aeee68bab

See more details on using hashes here.

File details

Details for the file pyroomacoustics-0.10.1-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for pyroomacoustics-0.10.1-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 d58f9d819554d552cb1d228ef6cffaff5a308aabbf9db2a72faea3c96e7b9445
MD5 5912dfb36ddd32e3e0de9d1c35b24395
BLAKE2b-256 7cb1b6c02e0f3374ddc6776e6a58fe19e2bdeb5cae0192893b9030810f3b47a7

See more details on using hashes here.

File details

Details for the file pyroomacoustics-0.10.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pyroomacoustics-0.10.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 421fa320b6ad31465dc59e137a7b0e1033687cb821febcc8cb4d76f67a4c7b57
MD5 84737f8c88d692b077c6a5900230bd92
BLAKE2b-256 d93419706fee63d5171d8edfc0b6f85cd17b651cd89822abc80cda8b47dc50ba

See more details on using hashes here.

File details

Details for the file pyroomacoustics-0.10.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyroomacoustics-0.10.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c1b1077cfcafed9775d1b826dbbaf25fb4090aa95d21e9bc6dac795f88e8875c
MD5 ade31a940d34364de14cb720d5a62a5c
BLAKE2b-256 f0558af80433f3318549573c60c3527a8adf7080bf45bc2f57280ad7325d16a3

See more details on using hashes here.

File details

Details for the file pyroomacoustics-0.10.1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyroomacoustics-0.10.1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ce0d8bf51b1994ef88db94ed984f493a2db2238b9f93a0aae967375d4b0e9d3d
MD5 90de33f82e4a3d3b849d49f926fc64be
BLAKE2b-256 c4af67a3d41d5fdd4a811b186426d2deb70bed38c068ed006500dc2f696edf86

See more details on using hashes here.

File details

Details for the file pyroomacoustics-0.10.1-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for pyroomacoustics-0.10.1-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 523ba1baeaa594b0ea9c02df9ea279780dc054dd6a0f79f6823874f026da3dbf
MD5 dbae72ee7862ced7e8fba51ff99e2398
BLAKE2b-256 ab72750082f5c94505160ffa82c6e582afcba965837bf3a6d1b58911b9c99fc3

See more details on using hashes here.

File details

Details for the file pyroomacoustics-0.10.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pyroomacoustics-0.10.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 15cf8809d99449854d20f6ff343d0bb13bf9639db6efd0362a25866cc8cfae20
MD5 1d93c9fa5b5be5db4c350e27db45c440
BLAKE2b-256 538caae7fa470d6dc87b3ee7d1c912102b0a7bc8d1a8fbee00c929d5596e7e77

See more details on using hashes here.

File details

Details for the file pyroomacoustics-0.10.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyroomacoustics-0.10.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f729cf7e62a8663522a381629200e82ba9775bf5b75daed09c3155d85f164ee2
MD5 b65225220405626391fde16884a168f4
BLAKE2b-256 f6fef1ba24fa63490800e1700d90e62a61756e45844f896e8bb0801347645fcf

See more details on using hashes here.

File details

Details for the file pyroomacoustics-0.10.1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyroomacoustics-0.10.1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ea84429fbfb55d0dab65f5acdbbd34bfc42f94436cf16d672ec8dff7df889837
MD5 ee492116e3f05e9daf7fd516ec315cb0
BLAKE2b-256 32970b923cbce476573eec7d428ab108526c3728c3e7628f865bf181a6b81f1e

See more details on using hashes here.

File details

Details for the file pyroomacoustics-0.10.1-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pyroomacoustics-0.10.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 bf2aff3cbfe5533d63c747788aced4f0786846b46dee427d16d27f1982bbffff
MD5 db48c16e089e02b801224d9c5da04c01
BLAKE2b-256 96c8f6c17e65d561904ced5147dd44b6fa8f2dc70bdc69c8608e84f91eb2872c

See more details on using hashes here.

File details

Details for the file pyroomacoustics-0.10.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pyroomacoustics-0.10.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e514f586f0f4702d28529c93889c6383f46588b0435be39c9d2cc6b4d3debcf4
MD5 81acec3f3ae9a7467de8b3559423c060
BLAKE2b-256 55ea0877e70c2864808695e4282eaa98c1013ddf566392ad9bcef422336ce964

See more details on using hashes here.

File details

Details for the file pyroomacoustics-0.10.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyroomacoustics-0.10.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 69a4cfe1cae1f3f747fbd5a5bee7eb4e551e70b5e97efd74f0473c0f808a8b6c
MD5 c62c52ccbfd0924c147299187fde0db4
BLAKE2b-256 e813a33caea3cf278f9a7bf10ceb37b12f42608164063901f7db61d9165aa4b7

See more details on using hashes here.

File details

Details for the file pyroomacoustics-0.10.1-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pyroomacoustics-0.10.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 57b859bc68c938849c5acdb80e19e95a98a910b59f7b31ce78771d9231612819
MD5 cbff0e4437862163cda3c27133c04bc2
BLAKE2b-256 4e783d0508ee207786acaa4008c7819c7d1c365c05659e32b65f3bb2a8f87c7f

See more details on using hashes here.

File details

Details for the file pyroomacoustics-0.10.1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for pyroomacoustics-0.10.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f98cdbace62c2d4d193372c0fd7461a6d8912d29f9410c6298e79e48d5f00ba2
MD5 8c806dc16e1d33caa30ebbef78b385e9
BLAKE2b-256 f25ad0a2e6be1f33ce26fb0a3a7726e7b07c32c961727d95afc15a53061711d4

See more details on using hashes here.

File details

Details for the file pyroomacoustics-0.10.1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyroomacoustics-0.10.1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ccd712dfe256620303906e0a4cf5f4a8f92946afea1e24a162d8752a0b8d3e7e
MD5 105cbd06b5b9fed934eebcf68025249c
BLAKE2b-256 a47404573aa42792ada05df8d52e3addd6cb6993618549ec46a6a51e524cb1c6

See more details on using hashes here.

File details

Details for the file pyroomacoustics-0.10.1-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pyroomacoustics-0.10.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c0ee178b182b1122991184f5724e193dd63e3181ffa980b0385b1f08e94da240
MD5 3388dd84e5a1d8a7870b5fbbb8daf3c7
BLAKE2b-256 b55a5a1132b1d5875868f0a5334344d38adde4634926ad1ed3b610fba8b19b4d

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