AIRA (Ambisonics Impulse Response Analyzer) is a novel software for visualizing impulse responses measured from Ambisonics microphones. Its innovative and interactive ui allows you to examine the reflections at a point with a hedgehog-type graph. It is also possible to export the graphs and print them on a floor plan of the analyzed room.
🚀 Try a demo version in my Hugging Face Space nahue-passano/AIRA!
Here are some previews:
-
Download the repository
git clone https://github.com/nahue-passano/AIRA.git cd AIRA
-
Create and initialize poetry environment
poetry install poetry shell
-
Run the GUI file
python3 aira/gui.py
Usage note: In case you do not have your own measurements, import test measurements from
test/mock_data/regio_theater
-
Download the repository
git clone https://github.com/nahue-passano/AIRA.git cd AIRA
-
Create and initialize poetry environment
poetry install poetry shell
Note: If the environment already exists, run
poetry update
for possible changes inpyproject.toml
. -
Install the pre-commit hooks for code formating and linting with
black
andpylint
.pre-commit install
Note: If the changes to be commited are reformated,
black
will cancel the commit. You must add again the changes withgit add
and commit again