├── .gitattributes ├── .github └── workflows │ └── python-tests.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── nga_binaural ├── __init__.py ├── align_irs.py ├── binaural_layout.py ├── binaural_point_source.py ├── binaural_wrapper.py ├── cmdline.py ├── convolver.py ├── data │ ├── BRIR_KU100_60ms.sofa │ ├── HRIR_FULL2DEG.sofa │ ├── HRIR_FULL2DEG_INFO+LICENSE.txt │ ├── binaural_layouts.yaml │ └── binaural_layouts_allo.yaml ├── ear_cmdline_render_file.py ├── matrix_convolver.py ├── renderer.py ├── sofa.py └── test │ ├── data │ ├── test-expected-normalized.wav │ └── test-input.wav │ └── test_integration.py └── setup.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRT-Open-Source/binaural_nga_renderer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/python-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRT-Open-Source/binaural_nga_renderer/HEAD/.github/workflows/python-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRT-Open-Source/binaural_nga_renderer/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRT-Open-Source/binaural_nga_renderer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRT-Open-Source/binaural_nga_renderer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRT-Open-Source/binaural_nga_renderer/HEAD/README.md -------------------------------------------------------------------------------- /nga_binaural/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nga_binaural/align_irs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRT-Open-Source/binaural_nga_renderer/HEAD/nga_binaural/align_irs.py -------------------------------------------------------------------------------- /nga_binaural/binaural_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRT-Open-Source/binaural_nga_renderer/HEAD/nga_binaural/binaural_layout.py -------------------------------------------------------------------------------- /nga_binaural/binaural_point_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRT-Open-Source/binaural_nga_renderer/HEAD/nga_binaural/binaural_point_source.py -------------------------------------------------------------------------------- /nga_binaural/binaural_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRT-Open-Source/binaural_nga_renderer/HEAD/nga_binaural/binaural_wrapper.py -------------------------------------------------------------------------------- /nga_binaural/cmdline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRT-Open-Source/binaural_nga_renderer/HEAD/nga_binaural/cmdline.py -------------------------------------------------------------------------------- /nga_binaural/convolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRT-Open-Source/binaural_nga_renderer/HEAD/nga_binaural/convolver.py -------------------------------------------------------------------------------- /nga_binaural/data/BRIR_KU100_60ms.sofa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRT-Open-Source/binaural_nga_renderer/HEAD/nga_binaural/data/BRIR_KU100_60ms.sofa -------------------------------------------------------------------------------- /nga_binaural/data/HRIR_FULL2DEG.sofa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRT-Open-Source/binaural_nga_renderer/HEAD/nga_binaural/data/HRIR_FULL2DEG.sofa -------------------------------------------------------------------------------- /nga_binaural/data/HRIR_FULL2DEG_INFO+LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRT-Open-Source/binaural_nga_renderer/HEAD/nga_binaural/data/HRIR_FULL2DEG_INFO+LICENSE.txt -------------------------------------------------------------------------------- /nga_binaural/data/binaural_layouts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRT-Open-Source/binaural_nga_renderer/HEAD/nga_binaural/data/binaural_layouts.yaml -------------------------------------------------------------------------------- /nga_binaural/data/binaural_layouts_allo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRT-Open-Source/binaural_nga_renderer/HEAD/nga_binaural/data/binaural_layouts_allo.yaml -------------------------------------------------------------------------------- /nga_binaural/ear_cmdline_render_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRT-Open-Source/binaural_nga_renderer/HEAD/nga_binaural/ear_cmdline_render_file.py -------------------------------------------------------------------------------- /nga_binaural/matrix_convolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRT-Open-Source/binaural_nga_renderer/HEAD/nga_binaural/matrix_convolver.py -------------------------------------------------------------------------------- /nga_binaural/renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRT-Open-Source/binaural_nga_renderer/HEAD/nga_binaural/renderer.py -------------------------------------------------------------------------------- /nga_binaural/sofa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRT-Open-Source/binaural_nga_renderer/HEAD/nga_binaural/sofa.py -------------------------------------------------------------------------------- /nga_binaural/test/data/test-expected-normalized.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRT-Open-Source/binaural_nga_renderer/HEAD/nga_binaural/test/data/test-expected-normalized.wav -------------------------------------------------------------------------------- /nga_binaural/test/data/test-input.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRT-Open-Source/binaural_nga_renderer/HEAD/nga_binaural/test/data/test-input.wav -------------------------------------------------------------------------------- /nga_binaural/test/test_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRT-Open-Source/binaural_nga_renderer/HEAD/nga_binaural/test/test_integration.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRT-Open-Source/binaural_nga_renderer/HEAD/setup.py --------------------------------------------------------------------------------