Commit 2d92741e authored by Jan Kiene's avatar Jan Kiene
Browse files

add other sampling rates

parent bbecfe42
Loading
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -47,7 +47,12 @@ def run_ambi_converter(

# test all ambisonics orders from 1 to 3
INPUT_CH_NUM = [4, 9, 16]
INPUT_FILES = [TESTV_DIR / f"spectral_test_{ch}ch_48kHz.wav" for ch in INPUT_CH_NUM]
INPUT_FS = [16, 32, 48]
INPUT_FILES = [
    TESTV_DIR / f"spectral_test_{ch}ch_{fs}kHz.wav"
    for ch in INPUT_CH_NUM
    for fs in INPUT_FS
]
CONVENTIONS = [c for c in AMBI_CONVENTION]
AMBI_CONVERTER_PATH_FLOAT = HERE.parent / "ambi_converter_flt"
AMBI_CONVERTER_PATH_FIXED = HERE.parent / "ambi_converter_fx"