diff --git a/README.md b/README.md index 4669de76d9c30dc44ddf1695ecd62ae4c4d96cdd..3449c8600dbcc8df25e8ec5b3fb648b6d34da891 100755 --- a/README.md +++ b/README.md @@ -376,7 +376,7 @@ postprocessing: ### default = null (uses postprocessing fmt if possible) # loudness_fmt: null ### Name of custom binaural dataset (without prefix or suffix); - ### default = null (ORANGE53_Dolby for BINAURAL, IISofficialMPEG222UC for BINAURAL_ROOM) + ### default = null (ORANGE53(_Dolby) for BINAURAL, IISofficialMPEG222UC for BINAURAL_ROOM) # bin_dataset: SADIE ### Render LFE to binaural output with the specified gain (only valid for channel-based input); default = null # bin_lfe_gain: 1 diff --git a/examples/TEMPLATE.yml b/examples/TEMPLATE.yml index 030bd4371a22af53c0f52244e7ae0c325168f21f..c63114e365936f087de7897c95da5e1364fb69dd 100755 --- a/examples/TEMPLATE.yml +++ b/examples/TEMPLATE.yml @@ -234,7 +234,7 @@ postprocessing: ### default = null (uses postprocessing fmt if possible) # loudness_fmt: null ### Name of custom binaural dataset (without prefix or suffix); - ### default = null (ORANGE53_Dolby for BINAURAL, IISofficialMPEG222UC for BINAURAL_ROOM) + ### default = null (ORANGE53(_Dolby) for BINAURAL, IISofficialMPEG222UC for BINAURAL_ROOM) # bin_dataset: SADIE ### Render LFE to binaural output with the specified gain (only valid for channel-based input); default = null # bin_lfe_gain: 1 diff --git a/ivas_processing_scripts/audiotools/binaural_datasets/binaural_dataset.py b/ivas_processing_scripts/audiotools/binaural_datasets/binaural_dataset.py index 76f44f30505a8714b33f427cec61d52a345a323d..7062dfb3c45d04409ea9cdfc3440e787f7a3b08e 100755 --- a/ivas_processing_scripts/audiotools/binaural_datasets/binaural_dataset.py +++ b/ivas_processing_scripts/audiotools/binaural_datasets/binaural_dataset.py @@ -129,7 +129,7 @@ def load_ir( elif out_fmt.startswith("BINAURAL"): dataset_prefix = "HRIR" if dataset is None: - dataset = "ORANGE53_Dolby" + dataset = "ORANGE53" if in_fmt in OBJECT_BASED_AUDIO_FORMATS.keys() or in_fmt.startswith( "CUSTOM_LS" @@ -138,6 +138,7 @@ def load_ir( elif in_fmt in CHANNEL_BASED_AUDIO_FORMATS.keys() and in_fmt != "MONO": dataset_suffix = "LS" elif in_fmt in SCENE_BASED_AUDIO_FORMATS.keys(): + dataset = "ORANGE53_Dolby" if in_fmt == "SBA1" or in_fmt == "FOA": dataset_suffix = "SBA1" # Use truncated SBA3 dataset if no SBA1 or 2 dataset exists