diff --git a/.gitignore b/.gitignore index 1103511d5e24da1902bebbef50497016a8ac07e8..7b271adb93a823ddee90c38e3941caf56a6c3967 100644 --- a/.gitignore +++ b/.gitignore @@ -12,22 +12,24 @@ venv/ *.bs *.192 mc.double -experiments/selection/*/proc_input*/cat*/*.wav -experiments/selection/*/proc_input*/cat*/*.csv -experiments/selection/*/proc_input*/cat*/*.pcm -experiments/selection/*/proc_input*/FOA*/*.wav -experiments/selection/*/proc_input*/HOA2*/*.wav -experiments/selection/*/background_noise/*.wav -experiments/selection/*/background_noise/*.txt -experiments/selection/*/proc_input*/*.wav -experiments/selection/*/proc_input*/*.pcm -experiments/selection/*/proc_input*/*.csv -experiments/selection/*/proc_input*/*.log -experiments/selection/*/proc_input*/*.yml -experiments/selection/*/proc_output*/ -experiments/selection/*/config/*-lab_*.yml -experiments/selection/*/gen_input/IRs/*.wav -experiments/selection/*/gen_input/items_mono/*.wav +experiments/*/*/proc_input*/cat*/*.wav +experiments/*/*/proc_input*/cat*/*.csv +experiments/*/*/proc_input*/cat*/*.met +experiments/*/*/proc_input*/cat*/*.pcm +experiments/*/*/proc_input*/FOA*/*.wav +experiments/*/*/proc_input*/HOA2*/*.wav +experiments/*/*/background_noise/*.wav +experiments/*/*/background_noise/*.csv +experiments/*/*/background_noise/*.txt +experiments/*/*/proc_input*/*.wav +experiments/*/*/proc_input*/*.pcm +experiments/*/*/proc_input*/*.csv +experiments/*/*/proc_input*/*.log +experiments/*/*/proc_input*/*.yml +experiments/*/*/proc_output*/ +experiments/*/*/config/*-lab_*.yml +experiments/*/*/gen_input/IRs/*.wav +experiments/*/*/gen_input/items_mono/*.wav *~ tests/temp_output_* tests/cut diff --git a/.gitlab-ci-custom.yml b/.gitlab-ci-custom.yml new file mode 100644 index 0000000000000000000000000000000000000000..86c1f487e07710b92454a0c4f7690f171d0f6ac4 --- /dev/null +++ b/.gitlab-ci-custom.yml @@ -0,0 +1,4 @@ +include: + - project: $CUSTOM_CI_PROJECT + ref: $CUSTOM_CI_REF + file: $CUSTOM_CI_FILE diff --git a/README.md b/README.md index f5ebd10e10405d904139989bbfce8ac913d3d984..50926ab0630d4bf21421d56ef6c697efd89bf160 100755 --- a/README.md +++ b/README.md @@ -1,32 +1,32 @@ -**** @@ -36,7 +36,7 @@ ## Requirements -- Python >= 3.9 +- Python 3.13.7 (may work with lower python versions, not guaranteed) - numpy, scipy and pyyaml ([see requirements.txt](./requirements.txt)) --- @@ -47,10 +47,261 @@ --- +# Running characterization experiments + +For an overview of the experiments, see [characterization_tests.md](characterization_tests.md) + +## Prerequisites + +- A working python environment (minimum version >= 3.9) with the required packages installed. +- The required additional binaries from ITU STL or the respective 3GPP contributions: + - The binaries must be placed in ivas_processing_scripts/bin OR + - a path specified in [binary_paths.yml](ivas_processing_scripts/binary_paths.yml) configuration file (please read the instructions carefully if using). + - Please note the required patch for networkSimulator_g192 that must be manually applied. +- EVS fixed point binaries + - These should be placed in the bin folder and named EVS_cod_fx and EVS_dec_fx +- Compiled versions of the codec from the BASOP repository: + - Binaries compiled with ivas_float_update should be placed in the bin folder and named IVAS_cod_flt_ref and IVAS_dec_flt_ref + - Binaries compiled with main (BASOP) should be placed in the bin folder and named IVAS_cod_fx and IVAS_dec_fx +- IVAS_rend from the floating-point repository: + - This should be placed in the bin folder and named named IVAS_rend +- A local clone of this repository + +## Setup + +- Ensure you are on the latest version of the main branch of the processing scripts repo (`git pull`) +- Navigate to the box.com folder “Inbox_selected” for the experiment you wish to run. +- Download the experiment folder, e.g., “Inbox_selected/P.800/P.800-1” +- Copy/move the downloaded items into the corresponding folder in experiments/characterization in your copy of the processing scripts repo. +- e.g., `cp -r ~/Downloads/P.800-1/\* experiments/characterization/P800-1/` + +## Processing + +Run the processing from the root directory of the repository by invoking the python module with the experiment configuration YAML file: + +```sh +python3 -m ivas_processing_scripts experiments/characterization/P800-1/config/P800-1_cat1_STEREO-16LKFS.yml +``` + +Repeat the above step for all configuration files to process all categories and levels. + +Notes: + +- The python module does NOT accept a list of configs; they must be run individually. +- This can be somewhat worked around with a shell loop, but please note this can make finding an error more difficult: + +```sh +# for POSIX shells +for config in $(ls experiments/characterization/P800-1/config/*.yml); do python3 -m ivas_processing_scripts $config; done +``` + +```batch +:: for cmd +for %f in (experiments\characterization\P800-1\config\*.yml) do python -m ivas_processing_scripts "%f" +``` + +## Follow up tasks + +After the processing is finished, the outputs will be present in the respective `proc_output` directories. + +### Item collection + +- For P.800 tests, these outputs need to be collected according to the test plan to assemble the final outputs required for P.800 test software. + + - This can be done using the scripts in [collection-scripts](collection-scripts/characterization/README.md) (click for README) by running: + + ```batch + python collection-scripts\characterization\p800_categorized_samples.py + python collection-scripts\characterization\p800_preliminaries.py + python collection-scripts\characterization\bs1534.py + ``` + + - These scripts collect items from each experiments `proc_output*` folder(s) and puts the needed files for the listening test into a `proc_final` folder. This folder needs to be uploaded for the dry run and the final delivery of the listening items to the labs. + +### Hash generation and checking for duplicates + +The hashes for the `proc_final` can be generated using the [get_md5.py](other/get_md5.py) script. +This script also checks for identical hashes and thus identifies duplicates in the output files which are reported in a printout. +When generating hashes one should check if duplicates are reported and if yes, what files are identical - note that there might be duplicates between the actual test and the preliminaries/training which is ok. +If there is a case with three or more items being the same or two items being the same inside the test or the preliminaries, the input files should be checked for duplicates. + +Script usage: + +```shell +> python other/get_md5.py --help +usage: get_md5.py [-h] output_dir out_file + +Cross-platform script for generating MD5 hashes of output files for the characterization testing experiments. + +positional arguments: + output_dir Path to the output directory of the respective experiment that you want to generate Hashes for. Can be proc_output or proc_final. + out_file Output text file with filenames and Hashes + +options: + -h, --help show this help message and exit +``` + +For example: + +```shell +python other/get_md5.py experiments/characterization/P800-1/proc_final p800-1_hashes.txt +``` + +## Directory structure + +### P.800 experiments + +#### Input structure for P.800 + +```bash +. +└── P800-1 + ├── background_noise + │ └── + ├── config + │ └── + └── proc_input + ├── cat1 + │ ├── [l]p[ee]a[y]s[zz].c[nn].wav + │ ├── [l]p[ee]a[y]s[zz].c[nn].wav.{0,1,2,3}.csv # for ISM metadata + │ └── [l]p[ee]a[y]s[zz].c[nn].wav.met # for MASA metadata + ├── cat2... + └── ...cat6 +``` + +#### Scripts outputs for P.800 + +```bash +. +└── P800-1 + │ # the below directories are created by the processing and collection scripts + ├── proc_final + │ ├── c01 + │ │ └── [l]p[ee]a[y]s[zz].c[nn].wav + │ ├── c02... + │ ├── ...c36 + │ └── preliminaries + │ └── [l]p[ee]a[y]s[zz].c[nn].wav + └── proc_output + ├── cat1 + │ ├── out_-16LKFS + │ │ ├── c01 + │ │ │ └── [l]p[ee]a[y]s[zz].c[nn].wav + │ │ ├── c02... + │ │ └── ...cXX + │ ├── out_-26LKFS + │ └── out_-36LKFS + ├── cat2... + └── ...cat6 +``` + +#### Output structure for P.800 + +The folders for upload to box.com and for delivery to the listeing labs should look like the structure below. +This is essentially the contents of the `proc_final` directory produced from the collection scripts. + +```bash +. +└── P800-1 + ├── c01 + │ └── [l]p[ee]a[y]s[zz].c[nn].wav + ├── c02... + ├── ...c36 + ├── preliminaries + │ └── [l]p[ee]a[y]s[zz].c[nn].wav + └── P800-1_hashes.txt +``` + +### BS.1534 experiments + +#### Input structure for BS.1534 + +```bash +. +└── BS1534-1 + ├── config + │ └── + ├── proc_input[_FMT] # for multiple input formats, suffix is present + │ ├── [l]m[ee]a[y]s[zz].c[nn].wav + │ ├── [l]m[ee]a[y]s[zz].c[nn].wav.{0,1,2,3}.csv # for ISM metadata + │ └── [l]m[ee]a[y]s[zz].c[nn].wav.met # for MASA metadata +``` + +#### Scripts outputs for BS.1534 + +```bash +. +└── BS1534-1 + │ # the below directories are created by the processing and collection scripts + ├── proc_final + │ ├── c01 + │ │ └── [l]m[ee]a[y]s[zz].c[nn].wav + │ ├── c02... + │ ├── ...c08 + │ └── preliminaries + │ └── [l]m[ee]a[y]s[zz].c[nn].wav + └── proc_output[_FMT] # for multiple input formats, suffix is present + ├── c01 + │ └── [l]m[ee]a[y]s[zz].c[nn].wav + ├── c02... + └── ...cXX +``` + +#### Output structure for BS.1534 + +The folders for upload to box.com and for delivery to the listeing labs should look like the structure below. +This is essentially the contents of the `proc_final` directory produced from the collection scripts. + +```bash +. +└── BS1534-1 + ├── c01 + │ └── [l]m[ee]a[y]s[zz].c[nn].wav + ├── c02... + ├── ...c08 + ├── preliminaries + │ └── [l]m[ee]a[y]s[zz].c[nn].wav + └── BS1534-1_hashes.txt +``` + +## Reporting issues + +If you encounter an issue while running the characterization tests, please follow the steps below depending on the type of issue you encounter. + +### Crash in fixed point codec + +Example output for a crash: + +```shell +SystemError: Command returned non-zero exit status (-6): ivas_processing_scripts/bin/IVAS_cod_fx -max_band SWB -q -stereo 24400 32 experiments/characterization/P800_ACR-1/proc_output/cat1/out_-26LKFS/tmp_c27/20ms_aligned_files_concatenated.cod_fmt.wav experiments/characterization/P800_ACR-1/proc_output/cat1/out_-26LKFS/tmp_c27/20ms_aligned_files_concatenated.ivas.192 +``` + +1. Copy the **entire traceback** to a text file for upload +2. Inspect the output for more information, and possibly the command that caused the crash, example: +3. Try to determine the output directory used, usually with the prefix `tmp_` in `proc_output`, in this case `tmp_c27` +4. Inspect the output files in the given directory, checking `.log` files for further info about commands that were run +5. Try to reproduce the crash outside of the scripts +6. Upload the required files to a new folder under [_EXTERNAL_IVAS_CHAR_MC/Issues](https://dolby.box.com/s/oc7k3ck8n04wbcknxu71t3wyvkq2cev4) +7. File an issue on the [BASOP repository](https://forge.3gpp.org/rep/sa4/audio/ivas-basop/-/issues) + - Report git SHA for float reference codec, fixed point codec and processing scripts! + +### Crash / unexpected behaviour in the scripts + +1. Copy the **entire traceback** to a text file for upload +2. Inspect the output for more information, and where the exception occurred +3. If it is related to a certain condition in the script identify the related `tmp_` folder in `proc_output` +4. Collect the following files for upload + - The `.yml` configuration file in **`proc_output`** - this is produced by the scripts and is NOT the one used to run the experiment + - The main log file for the experiment, named the same as the above file with suffix `.log` + - Any files in the related `tmp_` condition directory, if applicable. Use your discretion to choose pertinent files. +5. Upload the required files to a new folder under [_EXTERNAL_IVAS_CHAR_MC/Issues](https://dolby.box.com/s/oc7k3ck8n04wbcknxu71t3wyvkq2cev4) +6. File an issue on the [Processing scripts repository](https://forge.3gpp.org/rep/ivas-codec-pc/ivas-processing-scripts/-/issues) + - Report git SHA for float reference codec, fixed point codec and processing scripts! + # Quick guide: How to set up a listening test This section describes step by step how to set up a listening test according to the Processing Plan (IVAS-7) and Test Plan (IVAS-8). -In the following sections the only purpose of the curly brackets is to mark the variables that thave to be replaced with the actual values. +In the following sections the only purpose of the curly brackets is to mark the variables that have to be replaced with the actual values. ## P800 @@ -76,15 +327,17 @@ Each entry under `scenes:` describes one test item, specifying: - `input`: list of mono `.wav` files - `azimuth` / `elevation`: spatial placement (°) - `level`: loudness in dB -- `shift`: timing offsets in seconds - -Dynamic positioning (e.g., `"-20:1.0:360"`) means the source will move over time, stepping every 20 ms. +- `shift`: signal offset/overlap in seconds +- `background`: background noise file (applicable to STEREO and SBA only) +- `background_level`: level of the background noise (applicable to STEREO and SBA only) -The total duration of the output signal can be controlled using the `duration` field. The output signal may optionally be rendered to the BINAURAL format by specifying the `binaural_output` field. +Dynamic positioning (e.g., `"-20:1.0:360"`) means the source will move over time, stepping every 20 ms. The maximum total duration of the output signal can be controlled using the `duration` field. The output signal may optionally be rendered to the BINAURAL format by specifying the `binaural_output` field. The `shift` parameter ensures time adjustment (offset) of the input signal (positive value delays the signal). Aternatively, the notation `X(i_ref)` generates overlap by `X` seconds from the reference signal `i_ref` (0-based index) (positive value creates gap). Start by running a single scene to verify settings. Output includes both audio and optional metadata files. You can enable multiprocessing by setting `multiprocessing: true`. -### Item processing +The addition of custom background noise at specific level is supported for the STEREO and SBA formats only. For ISMs it's not applicable. For OMASA and OSBA formats, it is expected that the backround noise is provided in the FOA/HOA2/HOA3 format as the first item in the `input` list. + +### Item processing (selection) The input has to be in the folder `experiments/selection/P800-{X}/proc_input_{l}`. If item generation is performed previous to this step, the corresponding files are already in the right folder. If this step is performed independently of the previous one the input files have to be copied to the respective folder sorted by category. @@ -102,7 +355,7 @@ For more information about this processing step see The set up for the MUSHRA test only consists of the item processing. -### Item processing +### Item processing (Selection) To process a BS1534-{X}{x} (X = 1, 2, ...7, x = a, b) listening test, the input files have to be placed in the folder `experiments/selection/BS1534-{X}{x}/proc_input_{l}` and the command `python generate_test.py BS1534-{X}{x},{l}` has to be run from the root of the repository. 'l' stands for the listening lab designator: a (Force Technology), b (HEAD acoustics), c (MQ University), d (Mesaqin.com). @@ -218,18 +471,18 @@ output_path: "./tmp_output" ### If input format is ISM{1-4} a path for the metadata files can be specified; ### default = null (for ISM search for item_name.{wav, raw, pcm}.{0-3}.csv in input folder, otherise ignored) # metadata_path: - ### Path can be set for all items with the 'all_items' key (automatic search for item_name.{wav, raw, pcm}.{0-3}.csv within this folder) - # all_items: ".../metadata_folder" - ### Path can be set for all items individually with 'item{1-4}' keys - ### 'item{1-4}' keys can also be renamed to the input file names including extension {wav, raw, pcm} - ### Either list individual files for all objects or name folder for automatic search for one item - # item1: - # - ".../meta_all_obj" - # item2: - # - ".../meta_obj1.csv" - # - ".../meta_ob2.csv" - # noise.wav: - # - ".../metadata_folder_for_noise_item" +### Path can be set for all items with the 'all_items' key (automatic search for item_name.{wav, raw, pcm}.{0-3}.csv within this folder) +# all_items: ".../metadata_folder" +### Path can be set for all items individually with 'item{1-4}' keys +### 'item{1-4}' keys can also be renamed to the input file names including extension {wav, raw, pcm} +### Either list individual files for all objects or name folder for automatic search for one item +# item1: +# - ".../meta_all_obj" +# item2: +# - ".../meta_obj1.csv" +# - ".../meta_ob2.csv" +# noise.wav: +# - ".../metadata_folder_for_noise_item" ### Select only a subset of items ### searches for the specified substring in found filenames; default = null @@ -267,31 +520,31 @@ input: ### Pre-processing step performed prior to core processing for all conditions ### If not defined, preprocessing step is skipped # preprocessing: - ### Target format used in rendering from input format; default = null (no rendering) - # fmt: "7_1_4" - ### Define mask (HP50 or 20KBP) for input signal filtering; default = null - # mask: "HP50" - ### Gain factor to be applied BEFORE any other processing (linear, or add dB suffix) - # gain_pre: 10 dB - ### Gain factor to be applied AFTER any other processing (linear, or add dB suffix) - # gain_post: 3.1622776602 - ### Target sampling rate in Hz for resampling; default = null (no resampling) - # fs: 16000 - ### Target loudness in LKFS; default = null (no loudness change applied) - # loudness: -26 - ### Spatial audio format in which loudness is adjusted (only used if preprocessing loudness is not null); - ### default = null (uses postprocessing fmt) - # loudness_fmt: "BINAURAL" - ### Pre-/post-trim individual signal(s) (ms) (negative values pad silence); default = 0 - # trim: - # - 50 - # - -50 - ### Flag for using noise (amplitude +-4) instead of silence for padding; default = false (silence) - # pad_noise: true - ### Value for application of delay (ms) (negative values advance); default = 0 - # delay: 20 - ### Length of window used at start/end of signal (ms); default = 0 - # window: 100 +### Target format used in rendering from input format; default = null (no rendering) +# fmt: "7_1_4" +### Define mask (HP50 or 20KBP) for input signal filtering; default = null +# mask: "HP50" +### Gain factor to be applied BEFORE any other processing (linear, or add dB suffix) +# gain_pre: 10 dB +### Gain factor to be applied AFTER any other processing (linear, or add dB suffix) +# gain_post: 3.1622776602 +### Target sampling rate in Hz for resampling; default = null (no resampling) +# fs: 16000 +### Target loudness in LKFS; default = null (no loudness change applied) +# loudness: -26 +### Spatial audio format in which loudness is adjusted (only used if preprocessing loudness is not null); +### default = null (uses postprocessing fmt) +# loudness_fmt: "BINAURAL" +### Pre-/post-trim individual signal(s) (ms) (negative values pad silence); default = 0 +# trim: +# - 50 +# - -50 +### Flag for using noise (amplitude +-4) instead of silence for padding; default = false (silence) +# pad_noise: true +### Value for application of delay (ms) (negative values advance); default = 0 +# delay: 20 +### Length of window used at start/end of signal (ms); default = 0 +# window: 100 ``` @@ -303,29 +556,29 @@ input: ```yaml # preprocessing_2: - ### Options for processing of the concatenated item (concatenate_input: true) or - ### the individual items (concatenate_input: false) after previous pre-processing step - ### Horizontally concatenate input items into one long file; default = false - # concatenate_input: true - ### Specify the concatenation order in a list of strings. If not specified, the concatenation order would be - ### as per the filesystem on the users' device - ### Should only be used if concatenate_input = true - # concatenation_order: [] - ### Specify preamble duration in ms; default = 0 - # preamble: 10000 - ### Flag wheter to use noise (amplitude +-4) for the preamble or silence; default = false (silence) - # preamble_noise: true - ### Additive background noise - # background_noise: - ### SNR for background noise in dB; REQUIRED for prerecorded background noise and ignored for low level noise - # snr: 10 - ### REQUIRED: Either background noise path or low level noise flag - ### Path to background noise, must have same format and sampling rate as input signal(s); default = null - # background_noise_path: ".../noise.wav" - ### Flag for using low level [-4,+4] background noise; default = false - # low_level_noise: true - ### Flag for repeating the whole signal once and discarding the first half after processing - # repeat_signal: true +### Options for processing of the concatenated item (concatenate_input: true) or +### the individual items (concatenate_input: false) after previous pre-processing step +### Horizontally concatenate input items into one long file; default = false +# concatenate_input: true +### Specify the concatenation order in a list of strings. If not specified, the concatenation order would be +### as per the filesystem on the users' device +### Should only be used if concatenate_input = true +# concatenation_order: [] +### Specify preamble duration in ms; default = 0 +# preamble: 10000 +### Flag wheter to use noise (amplitude +-4) for the preamble or silence; default = false (silence) +# preamble_noise: true +### Additive background noise +# background_noise: +### SNR for background noise in dB; REQUIRED for prerecorded background noise and ignored for low level noise +# snr: 10 +### REQUIRED: Either background noise path or low level noise flag +### Path to background noise, must have same format and sampling rate as input signal(s); default = null +# background_noise_path: ".../noise.wav" +### Flag for using low level [-4,+4] background noise; default = false +# low_level_noise: true +### Flag for repeating the whole signal once and discarding the first half after processing +# repeat_signal: true ``` @@ -340,22 +593,22 @@ input: ### e.g. frame error insertion or transport simulation for JBM testing ### can be given globally or in individual conditions of type ivas or evs # tx: - ### REQUIRED: Type of bitstream processing; possible types: "JBM" or "FER" - #type: "JBM" - ### JBM - ### REQUIRED: either error_pattern or error_profile - ### delay error profile file - # error_pattern: ".../dly_error_profile.dat" - ### Index of one of the existing delay error profile files to use (1-11) - # error_profile: 5 - ## nFramesPerPacket parameter for the network simulator (optional); default = 1 - # n_frames_per_packet: 2 - ### FER - ### REQUIRED: either error_pattern or error_rate - ### Frame error pattern file - # error_pattern: "path/pattern.192" - ### Error rate in percent - # error_rate: 5 +### REQUIRED: Type of bitstream processing; possible types: "JBM" or "FER" +#type: "JBM" +### JBM +### REQUIRED: either error_pattern or error_profile +### delay error profile file +# error_pattern: ".../dly_error_profile.dat" +### Index of one of the existing delay error profile files to use (1-11) +# error_profile: 5 +## nFramesPerPacket parameter for the network simulator (optional); default = 1 +# n_frames_per_packet: 2 +### FER +### REQUIRED: either error_pattern or error_rate +### Frame error pattern file +# error_pattern: "path/pattern.192" +### Error rate in percent +# error_rate: 5 ``` @@ -418,6 +671,7 @@ conditions_to_generate: ### Encoder input sampling rate in Hz (resampling performed in case of mismatch); default = null (no resampling) # fs: 32000 ### Additional commandline options; default = null + ### NOTE: if using -stereo_dmx_evs ensure you specify dec:fmt as MONO to avoid errors # opts: ["-q", "-dtx", 4] ### Extended metadata flag for ISM > 64kbps, ignored otherwise; default = false # extended_metadata: true @@ -431,6 +685,13 @@ conditions_to_generate: # fs: 48000 ### Additional commandline options; default = null # opts: ["-q", "-no_delay_cmp"] + ### Per-item renderer configuration. Set to true to search for a file with suffix .cfg; default = false + # render_config: true + ### Head-tracking trajectory file for binaural output OR 'true' which will search for a file with the suffix .ht.csv next to the input; default = null + ### NOTE: this automatically configures the '-T' argument to the decoder, so may conflict if also specified in `opts` + # trajectory: "path/to/file" + ### Limit the trajectory to 3DoF via truncation; default = false + # only_3dof: false ### IVAS condition ############################### c07: @@ -516,8 +777,10 @@ postprocessing: # bin_lfe_gain: 1 ### Flag whether output should be limited to avoid clipping (can alter target loudness); default = true # limit: false - ### Head-tracking trajectory file for binaural output; default = null + ### Head-tracking trajectory file for binaural output OR 'true' which will search for a file with the suffix .ht.csv in the input dir; default = null # trajectory: "path/to/file" + ### Limit the trajectory to 3DoF via truncation; default = false + # only_3dof: false ``` @@ -553,7 +816,7 @@ No required arguments but the `type` key. #### MNRU and ESDRU The MNRU and ESDRU conditions each take one additional required argument. For MNRU the value `q`, which represents the ratio of speech power to modulated noise power in dB, -has to be specified. +has to be specified. For the ESDRU the spatial degradation value `alpha` in the range [0, 1] has to be defined. #### Mono downmix mono_dmx @@ -615,21 +878,7 @@ The processing chain is as follows: ## Additional Executables -The following additional executables are needed for the different processing steps: - -| Processing step | Executable | Where to find | -| ------------------------------------------------------------------------------------------- | -------------------------- | --------------------------------------------------------------------------------------------------------------- | -| Loudness measurement and adjustment | bs1770demo | (Note branch) | -| MNRU | p50fbmnru | | -| ESDRU | esdru | | -| Frame error pattern application | eid-xor | | -| Error pattern generation | gen-patt | (Note: Version in is buggy!) | -| Reverberation module | reverb | | -| Filtering, Resampling | filter | | -| Random offset/seed generation (necessary for background noise and FER bitstream processing) | random | | -| JBM network simulator | networkSimulator_g192 | | -| MASA rendering (also used in loudness measurement of MASA items) | masaRenderer, masaAnalyzer | | -| EVS reference conditions | EVS_cod, EVS_dec | | +Additional executables are needed for the different processing steps, please see the dedicated [README](ivas_processing_scripts/bin/README.md). The necessary binaries have to be either placed in the [ivas_processing_scripts/bin](./ivas_processing_scripts/bin) folder or the path has to be specified in [ivas_processing_scripts/binary_paths.yml](./ivas_processing_scripts/binary_paths.yml). diff --git a/characterization_tests.md b/characterization_tests.md new file mode 100644 index 0000000000000000000000000000000000000000..3a15f3d3be202c30d4c8a1ebabd9cd2fd2c5e380 --- /dev/null +++ b/characterization_tests.md @@ -0,0 +1,56 @@ +# Characterization experiments + +Each link in the table leads to the config directory of the respective experiment. + +## P.800 + +| Experiment | Format | +| ------------------------------------------------------- | -------------------- | +| [P800-1](experiments/characterization/P800-1/config/) | Stereo | +| [P800-2](experiments/characterization/P800-2/config/) | Stereo | +| [P800-3](experiments/characterization/P800-3/config/) | FOA | +| [P800-4](experiments/characterization/P800-4/config/) | HOA2 | +| [P800-5](experiments/characterization/P800-5/config/) | HOA3 | +| [P800-6](experiments/characterization/P800-6/config/) | MC 5.1, 7.1 | +| [P800-7](experiments/characterization/P800-7/config/) | MC 5.1+4, 7.1+4 | +| [P800-8](experiments/characterization/P800-8/config/) | MC - Mixed CICP | +| [P800-9](experiments/characterization/P800-9/config/) | 1-2 Objects | +| [P800-10](experiments/characterization/P800-10/config/) | 3-4 Objects | +| [P800-11](experiments/characterization/P800-11/config/) | 1-4 Objects | +| [P800-12](experiments/characterization/P800-12/config/) | MASA 1 TC | +| [P800-13](experiments/characterization/P800-13/config/) | MASA 2 TCs | +| [P800-14](experiments/characterization/P800-14/config/) | MASA 1-2 TC | +| [P800-15](experiments/characterization/P800-15/config/) | OSBA (1-2 objects) | +| [P800-16](experiments/characterization/P800-16/config/) | OSBA (3-4 objects) | +| [P800-17](experiments/characterization/P800-17/config/) | OSBA (1-4 objects) | +| [P800-18](experiments/characterization/P800-18/config/) | OMASA (1-2 objects) | +| [P800-19](experiments/characterization/P800-19/config/) | OMASA (3-4 objects) | +| [P800-20](experiments/characterization/P800-20/config/) | OMASA (1-4 objects) | +| [P800-21](experiments/characterization/P800-21/config/) | JBM with Stereo | +| [P800-22](experiments/characterization/P800-22/config/) | JBM with 1-2 objects | +| [P800-23](experiments/characterization/P800-23/config/) | JBM with FOA | + +## BS.1534 + +| Experiment | Format | +| ----------------------------------------------------------- | -------------------------- | +| [BS1534-1](experiments/characterization/BS1534-1/config/) | Stereo | +| [BS1534-2](experiments/characterization/BS1534-2/config/) | Stereo | +| [BS1534-3](experiments/characterization/BS1534-3/config/) | FOA | +| [BS1534-4](experiments/characterization/BS1534-4/config/) | FOA | +| [BS1534-5](experiments/characterization/BS1534-5/config/) | HOA3 | +| [BS1534-6](experiments/characterization/BS1534-6/config/) | Multichannel 5.1 | +| [BS1534-7](experiments/characterization/BS1534-7/config/) | Multi-channel 5.1, 7.1 | +| [BS1534-8](experiments/characterization/BS1534-8/config/) | Multi-channel 5.1+2, 5.1+4 | +| [BS1534-9](experiments/characterization/BS1534-9/config/) | Multi-channel 7.1+4 | +| [BS1534-10](experiments/characterization/BS1534-10/config/) | ISM 1-2 | +| [BS1534-11](experiments/characterization/BS1534-11/config/) | ISM 3-4 | +| [BS1534-12](experiments/characterization/BS1534-12/config/) | ISM 3-4 | +| [BS1534-13](experiments/characterization/BS1534-13/config/) | MASA (1TC) | +| [BS1534-14](experiments/characterization/BS1534-14/config/) | MASA (1TC) | +| [BS1534-15](experiments/characterization/BS1534-15/config/) | MASA (2TC) | +| [BS1534-16](experiments/characterization/BS1534-16/config/) | OSBA (1-4 obj.) | +| [BS1534-17](experiments/characterization/BS1534-17/config/) | OSBA (1-4 obj.) | +| [BS1534-18](experiments/characterization/BS1534-18/config/) | OMASA (1-4 obj.) | +| [BS1534-19](experiments/characterization/BS1534-19/config/) | Stereo downmix for EVS | +| [BS1534-20](experiments/characterization/BS1534-20/config/) | ISM 6 DoF (4 objects) | diff --git a/collection-scripts/characterization/README.md b/collection-scripts/characterization/README.md new file mode 100644 index 0000000000000000000000000000000000000000..8d60f132146fb65168c6c91d7bb5a96d2a23354b --- /dev/null +++ b/collection-scripts/characterization/README.md @@ -0,0 +1,36 @@ +# Characterization Collection Scripts + +These scripts collect the final listening test material from the `proc_output` directories every test generates into +a `proc_final` directory next to it. + + +## P.800 Quickstart + +First, install Python 3 on your computer. + +To collect the categorized samples and the preliminaries, run the following command from the repository root in a +terminal: + +```shell +# on Windows +python collection-scripts\characterization\p800_categorized_samples.py +python collection-scripts\characterization\p800_preliminaries.py + +# on Linux/macOS/... +python collection-scripts/characterization/p800_categorized_samples.py +python collection-scripts/characterization/p800_preliminaries.py +``` + +Some commands may support additional parameters or options. You can run them with `-h` or `--help` to print the help +text. See below for an example (which may be out of date). + +```shell +> python collection-scripts/characterization/p800_categorized_samples.py --help +usage: p800_categorized_samples.py [-h] [-v] + +Copy samples into proc_final/cXX directories for P.800 experiments. + +options: + -h, --help show this help message and exit + -v, --verbose +``` diff --git a/collection-scripts/characterization/bs1534.py b/collection-scripts/characterization/bs1534.py new file mode 100644 index 0000000000000000000000000000000000000000..a7c95bad59ff89726b07f66917a2a62c8c07c408 --- /dev/null +++ b/collection-scripts/characterization/bs1534.py @@ -0,0 +1,67 @@ +import argparse +import glob +import re +import shutil +from pathlib import Path + +PRELIMINARY_SUBSTRINGS = ["s13", "s14", "s15", "s16"] +PRELIMINARY_PATTERN = re.compile(r"[a-z]m[0-9]*a[1-9](s[0-9]*)\.c[0-1][0-9]\.wav") + + +def repo_root_dir() -> Path: + this_dir = Path(__file__).parent + return this_dir.parent.parent + + +def copy_final_items(verbose: bool = False): + files_copied = 0 + + for exp_dir in map( + Path, glob.glob(str(repo_root_dir() / "experiments/characterization/BS1534-*/")) + ): + exp_dir = Path(exp_dir) + + final_dir = exp_dir / "proc_final" + prelim_dir = final_dir / "preliminaries" + prelim_dir.mkdir(parents=True, exist_ok=True) + + for proc_output in exp_dir.glob("proc_output*"): + condition_dirs = proc_output.glob("c0?") + for condition_dir in condition_dirs: + target_dir = final_dir / condition_dir.name + target_dir.mkdir(parents=True, exist_ok=True) + + for item in condition_dir.glob("*.wav"): + item_target = target_dir / item.name + + m = re.search(PRELIMINARY_PATTERN, item.name) + assert m is not None + + item_number_substr = m.groups()[0] + if item_number_substr in PRELIMINARY_SUBSTRINGS: + item_target = prelim_dir / item.name + + print( + f"Copying {item.relative_to(Path.cwd())} to {item_target.relative_to(Path.cwd())}" + ) + + if item_target.is_file(): + print( + f"WARNING: item {item_target.name} already exists in target dir, overwriting" + ) + + shutil.copy(item, item_target) + files_copied += 1 + + print(f"Done. {files_copied} files copied.") + + +if __name__ == "__main__": + parser = argparse.ArgumentParser( + description="Copy samples into proc_final/cXX directories for BS1534 experiments." + ) + parser.add_argument("-v", "--verbose", action="store_true") + + parsed = parser.parse_args() + + copy_final_items(verbose=parsed.verbose) diff --git a/collection-scripts/characterization/p800_categorized_samples.py b/collection-scripts/characterization/p800_categorized_samples.py new file mode 100644 index 0000000000000000000000000000000000000000..fcbbe6cc3994c0c7efa3a2674886f1c38acc0609 --- /dev/null +++ b/collection-scripts/characterization/p800_categorized_samples.py @@ -0,0 +1,133 @@ +import argparse +import glob +import re +import shutil +from pathlib import Path + +# table 5 from IVAS-8b +TABLE_5 = { + "s01": { + "cat1": -16, + "cat2": -36, + "cat3": -36, + "cat4": -26, + "cat5": -26, + "cat6": -16, + }, + "s02": { + "cat1": -16, + "cat2": -16, + "cat3": -36, + "cat4": -36, + "cat5": -26, + "cat6": -26, + }, + "s03": { + "cat1": -26, + "cat2": -16, + "cat3": -16, + "cat4": -36, + "cat5": -36, + "cat6": -26, + }, + "s04": { + "cat1": -26, + "cat2": -26, + "cat3": -16, + "cat4": -16, + "cat5": -36, + "cat6": -36, + }, + "s05": { + "cat1": -36, + "cat2": -26, + "cat3": -26, + "cat4": -16, + "cat5": -16, + "cat6": -36, + }, + "s06": { + "cat1": -36, + "cat2": -36, + "cat3": -26, + "cat4": -26, + "cat5": -16, + "cat6": -16, + }, +} + + +def repo_root_dir() -> Path: + this_dir = Path(__file__).parent + return this_dir.parent.parent + + +def copy_final_items(verbose: bool = False): + files_copied = 0 + + for exp_dir in map( + Path, glob.glob(str(repo_root_dir() / "experiments/characterization/P800-*/")) + ): + exp_dir = Path(exp_dir) + + final_dir = exp_dir / "proc_final" + final_dir.mkdir(parents=True, exist_ok=True) + + proc_output = exp_dir / "proc_output" + + for sample, categories_map in TABLE_5.items(): + for category, loudness in categories_map.items(): + item_dir_pattern = ( + proc_output + / f"{glob.escape(category)}*" + / f"out_{glob.escape(str(loudness))}LKFS" + / "c*" + ) + item_filename_pattern = f"*{glob.escape(sample)}.c*.wav" + + items_to_copy = list( + map(Path, glob.glob(str(item_dir_pattern / item_filename_pattern))) + ) + + if not items_to_copy: + if verbose: + print( + f"Could not find processed item for {sample}, {category}, {loudness}LKFS, skipping" + ) + continue + + for item_to_copy in items_to_copy: + match = re.match( + r".*/c(\d+)/[^/]*s\d+\.c\d+\.wav$", str(item_to_copy.as_posix()) + ) + assert match, item_to_copy + condition = match.group(1) + + item_target_dir = final_dir / f"c{condition}" + item_target_dir.mkdir(parents=True, exist_ok=True) + + print( + f"Copying {item_to_copy.relative_to(Path.cwd())} to {item_target_dir.relative_to(Path.cwd())}" + ) + + if (item_target_dir / item_to_copy.name).is_file(): + print( + f"WARNING: item {item_to_copy.name} already exists in target dir, overwriting" + ) + + shutil.copy(item_to_copy, item_target_dir) + + files_copied += 1 + + print(f"Done. {files_copied} files copied.") + + +if __name__ == "__main__": + parser = argparse.ArgumentParser( + description="Copy samples into proc_final/cXX directories for P.800 experiments." + ) + parser.add_argument("-v", "--verbose", action="store_true") + + parsed = parser.parse_args() + + copy_final_items(verbose=parsed.verbose) diff --git a/collection-scripts/characterization/p800_preliminaries.py b/collection-scripts/characterization/p800_preliminaries.py new file mode 100644 index 0000000000000000000000000000000000000000..1671d68d85e9901236d0abdd078b324f4081886c --- /dev/null +++ b/collection-scripts/characterization/p800_preliminaries.py @@ -0,0 +1,94 @@ +import argparse +import glob +import shutil +import warnings +from pathlib import Path + +import yaml + + +def this_dir() -> Path: + return Path(__file__).parent + + +def repo_root_dir() -> Path: + return this_dir().parent.parent + + +def load_config(yaml_path): + with open(yaml_path, "r") as f: + return yaml.safe_load(f) + + +# TODO: temporary map as of 2025-09-05, waiting for final confirmation +LOUDNESS_MAP = { + "cat1": -16, + "cat2": -26, + "cat3": -36, + "cat4": -16, + "cat5": -26, + "cat6": -36, +} + + +def copy_preliminaries(root_dir, config_yaml): + config = load_config(config_yaml) + + for exp, exp_cfg in config.items(): + exp = Path(exp) + exp_dir = root_dir / exp + + # this is a list to handle multiple proc_outputs in P.800 + proc_out_list = [ + p for p in exp_dir.iterdir() if p.name.startswith("proc_output") + ] + + out_dir = root_dir / exp / "proc_final/preliminaries/" + + print(f"Processing experiment: {exp}") + + if out_dir.exists(): + warnings.warn(f"Preliminaries directory already exists for {exp}, removing") + shutil.rmtree(out_dir) + + out_dir.mkdir(parents=True, exist_ok=True) + + for item in exp_cfg["preliminaries"]: + cat = item["category"] + # need to copy the reference files for every condition as well + conds = ["c01", item["label"]] + + # Find the condition folder in proc_output + for proc_out in proc_out_list: + for cond in conds: + src = proc_out / f"{cat}*" / f"out_{LOUDNESS_MAP[cat]}LKFS" / cond / "*s07.c*.wav" + + for file in glob.glob(str(src), recursive=True): + print(f" Copying {file} -> {out_dir}") + + filename = Path(file).name + + if (out_dir / filename).is_file(): + if cond != "c01": + raise FileExistsError( + f"File {file} already exists in {out_dir}" + ) + else: + print(f" c01 condition already copied, skipping: {filename}") + + shutil.copy(file, out_dir) + + print("All done.") + + +if __name__ == "__main__": + parser = argparse.ArgumentParser( + description="Copy preliminaries into proc_final/preliminaries directory for P.800 experiments." + ) + + parsed = parser.parse_args() + + copy_preliminaries( + repo_root_dir() / "experiments" / "characterization", + this_dir() / "p800_preliminaries.yml", + ) diff --git a/collection-scripts/characterization/p800_preliminaries.yml b/collection-scripts/characterization/p800_preliminaries.yml new file mode 100644 index 0000000000000000000000000000000000000000..73d3dc5b6dadde0e276c88737243bdb3798efca5 --- /dev/null +++ b/collection-scripts/characterization/p800_preliminaries.yml @@ -0,0 +1,1760 @@ +P800-1: + preliminaries: + - trial_id: 1 + label: c19 + category: cat1 + condition: IVAS FL + bitrate: 13.2 + fer_profile: "No errors" + - trial_id: 2 + label: c26 + category: cat2 + condition: IVAS FL + bitrate: 96 + fer_profile: "No errors" + - trial_id: 3 + label: c06 + category: cat3 + condition: ESDRU α = 0.7 + bitrate: null + fer_profile: null + - trial_id: 4 + label: c20 + category: cat4 + condition: IVAS FL + bitrate: 16.4 + fer_profile: "No errors" + - trial_id: 5 + label: c09 + category: cat5 + condition: ESDRU α = 0.1 + bitrate: null + fer_profile: null + - trial_id: 6 + label: c22 + category: cat6 + condition: IVAS FL + bitrate: 32 + fer_profile: "No errors" + - trial_id: 7 + label: c02 + category: cat1 + condition: MNRU Q = 27 dB + bitrate: null + fer_profile: null + - trial_id: 8 + label: c01 + category: cat2 + condition: Reference + bitrate: null + fer_profile: null + - trial_id: 9 + label: c27 + category: cat3 + condition: IVAS FL + bitrate: 128 + fer_profile: "No errors" + - trial_id: 10 + label: c07 + category: cat4 + condition: ESDRU α = 0.5 + bitrate: null + fer_profile: null + - trial_id: 11 + label: c05 + category: cat5 + condition: MNRU Q = 12 dB + bitrate: null + fer_profile: null + - trial_id: 12 + label: c24 + category: cat6 + condition: IVAS FL + bitrate: 64 + fer_profile: "No errors" + +P800-2: + preliminaries: + - trial_id: 1 + label: c19 + category: cat1 + condition: IVAS FL + bitrate: 13.2 + fer_profile: "5%" + dtx: "on" + - trial_id: 2 + label: c26 + category: cat2 + condition: IVAS FL + bitrate: 96 + fer_profile: "5%" + dtx: "on" + - trial_id: 3 + label: c06 + category: cat3 + condition: ESDRU α = 0.7 + bitrate: null + fer_profile: null + dtx: null + - trial_id: 4 + label: c20 + category: cat4 + condition: IVAS FL + bitrate: 16.4 + fer_profile: "5%" + dtx: "on" + - trial_id: 5 + label: c09 + category: cat5 + condition: ESDRU α = 0.1 + bitrate: null + fer_profile: null + dtx: null + - trial_id: 6 + label: c22 + category: cat6 + condition: IVAS FL + bitrate: 32 + fer_profile: "5%" + dtx: "on" + - trial_id: 7 + label: c02 + category: cat1 + condition: MNRU Q = 27 dB + bitrate: null + fer_profile: null + dtx: null + - trial_id: 8 + label: c01 + category: cat2 + condition: Reference + bitrate: null + fer_profile: null + dtx: null + - trial_id: 9 + label: c27 + category: cat3 + condition: IVAS FL + bitrate: 128 + fer_profile: "5%" + dtx: "on" + - trial_id: 10 + label: c07 + category: cat4 + condition: ESDRU α = 0.5 + bitrate: null + fer_profile: null + dtx: null + - trial_id: 11 + label: c05 + category: cat5 + condition: MNRU Q = 12 dB + bitrate: null + fer_profile: null + dtx: null + - trial_id: 12 + label: c24 + category: cat6 + condition: IVAS FL + bitrate: 64 + fer_profile: "5%" + dtx: "on" + +P800-3: + preliminaries: + - trial_id: 1 + label: c20 + category: cat1 + condition: IVAS FL + bitrate: 16.4 + fer_profile: No errors + - trial_id: 2 + label: c25 + category: cat2 + condition: IVAS FL + bitrate: 96 + fer_profile: No errors + - trial_id: 3 + label: c06 + category: cat3 + condition: ESDRU α = 0.8 + bitrate: null + fer_profile: null + - trial_id: 4 + label: c21 + category: cat4 + condition: IVAS FL + bitrate: 24.4 + fer_profile: No errors + - trial_id: 5 + label: c09 + category: cat5 + condition: ESDRU α = 0.2 + bitrate: null + fer_profile: null + - trial_id: 6 + label: c22 + category: cat6 + condition: IVAS FL + bitrate: 32 + fer_profile: No errors + - trial_id: 7 + label: c02 + category: cat1 + condition: MNRU Q = 32 dB + bitrate: null + fer_profile: null + - trial_id: 8 + label: c01 + category: cat2 + condition: Reference + bitrate: null + fer_profile: null + - trial_id: 9 + label: c26 + category: cat3 + condition: IVAS FL + bitrate: 128 + fer_profile: No errors + - trial_id: 10 + label: c07 + category: cat4 + condition: ESDRU α = 0.6 + bitrate: null + fer_profile: null + - trial_id: 11 + label: c05 + category: cat5 + condition: MNRU Q = 17 dB + bitrate: null + fer_profile: null + - trial_id: 12 + label: c24 + category: cat6 + condition: IVAS FL + bitrate: 64 + fer_profile: No errors + +P800-4: + preliminaries: + - trial_id: 1 + label: c19 + category: cat1 + condition: IVAS FL + bitrate: 16.4 + fer_profile: "5%" + dtx: "on" + - trial_id: 2 + label: c26 + category: cat2 + condition: IVAS FL + bitrate: 256 + fer_profile: "5%" + dtx: "on" + - trial_id: 3 + label: c06 + category: cat3 + condition: ESDRU α = 0.8 + bitrate: null + fer_profile: null + dtx: null + - trial_id: 4 + label: c20 + category: cat4 + condition: IVAS FL + bitrate: 24.4 + fer_profile: "5%" + dtx: "on" + - trial_id: 5 + label: c09 + category: cat5 + condition: ESDRU α = 0.2 + bitrate: null + fer_profile: null + dtx: null + - trial_id: 6 + label: c22 + category: cat6 + condition: IVAS FL + bitrate: 48 + fer_profile: "5%" + dtx: "on" + - trial_id: 7 + label: c02 + category: cat1 + condition: MNRU Q = 32 dB + bitrate: null + fer_profile: null + dtx: null + - trial_id: 8 + label: c01 + category: cat2 + condition: Reference + bitrate: null + fer_profile: null + dtx: null + - trial_id: 9 + label: c27 + category: cat3 + condition: IVAS FL + bitrate: 384 + fer_profile: "5%" + dtx: "on" + - trial_id: 10 + label: c07 + category: cat4 + condition: ESDRU α = 0.6 + bitrate: null + fer_profile: null + dtx: null + - trial_id: 11 + label: c05 + category: cat5 + condition: MNRU Q = 17 dB + bitrate: null + fer_profile: null + dtx: null + - trial_id: 12 + label: c24 + category: cat6 + condition: IVAS FL + bitrate: 96 + fer_profile: "5%" + dtx: "on" + +P800-5: + preliminaries: + - trial_id: 1 + label: c19 + category: cat1 + condition: IVAS FL + bitrate: 32 + fer_profile: No errors + - trial_id: 2 + label: c26 + category: cat2 + condition: IVAS FL + bitrate: 384 + fer_profile: No errors + - trial_id: 3 + label: c06 + category: cat3 + condition: ESDRU α = 0.8 + bitrate: null + fer_profile: null + - trial_id: 4 + label: c20 + category: cat4 + condition: IVAS FL + bitrate: 48 + fer_profile: No errors + - trial_id: 5 + label: c09 + category: cat5 + condition: ESDRU α = 0.2 + bitrate: null + fer_profile: null + - trial_id: 6 + label: c22 + category: cat6 + condition: IVAS FL + bitrate: 96 + fer_profile: No errors + - trial_id: 7 + label: c02 + category: cat1 + condition: MNRU Q = 32 dB + bitrate: null + fer_profile: null + - trial_id: 8 + label: c01 + category: cat2 + condition: Reference + bitrate: null + fer_profile: null + - trial_id: 9 + label: c27 + category: cat3 + condition: IVAS FL + bitrate: 512 + fer_profile: No errors + - trial_id: 10 + label: c07 + category: cat4 + condition: ESDRU α = 0.6 + bitrate: null + fer_profile: null + - trial_id: 11 + label: c05 + category: cat5 + condition: MNRU Q = 17 dB + bitrate: null + fer_profile: null + - trial_id: 12 + label: c24 + category: cat6 + condition: IVAS FL + bitrate: 160 + fer_profile: No errors + +P800-6: + preliminaries: + - trial_id: 1 + label: c19 + category: cat1 + condition: IVAS FL + bitrate: 24.4 + fer_profile: No errors + - trial_id: 2 + label: c26 + category: cat2 + condition: IVAS FL + bitrate: 96 + fer_profile: No errors + - trial_id: 3 + label: c06 + category: cat3 + condition: ESDRU α = 0.8 + bitrate: null + fer_profile: null + - trial_id: 4 + label: c20 + category: cat4 + condition: IVAS FL + bitrate: 32 + fer_profile: No errors + - trial_id: 5 + label: c09 + category: cat5 + condition: ESDRU α = 0.2 + bitrate: null + fer_profile: null + - trial_id: 6 + label: c22 + category: cat6 + condition: IVAS FL + bitrate: 48 + fer_profile: No errors + - trial_id: 7 + label: c02 + category: cat1 + condition: MNRU Q = 32 dB + bitrate: null + fer_profile: null + - trial_id: 8 + label: c01 + category: cat2 + condition: Reference + bitrate: null + fer_profile: null + - trial_id: 9 + label: c27 + category: cat3 + condition: IVAS FL + bitrate: 128 + fer_profile: No errors + - trial_id: 10 + label: c07 + category: cat4 + condition: ESDRU α = 0.6 + bitrate: null + fer_profile: null + - trial_id: 11 + label: c05 + category: cat5 + condition: MNRU Q = 17 dB + bitrate: null + fer_profile: null + - trial_id: 12 + label: c24 + category: cat6 + condition: IVAS FL + bitrate: 64 + fer_profile: No errors + +P800-7: + preliminaries: + - trial_id: 1 + label: c19 + category: cat1 + condition: IVAS FL + bitrate: 32 + fer_profile: No errors + - trial_id: 2 + label: c26 + category: cat2 + condition: IVAS FL + bitrate: 96 + fer_profile: No errors + - trial_id: 3 + label: c06 + category: cat3 + condition: ESDRU α = 0.8 + bitrate: null + fer_profile: null + - trial_id: 4 + label: c20 + category: cat4 + condition: IVAS FL + bitrate: 48 + fer_profile: No errors + - trial_id: 5 + label: c09 + category: cat5 + condition: ESDRU α = 0.2 + bitrate: null + fer_profile: null + - trial_id: 6 + label: c22 + category: cat6 + condition: IVAS FL + bitrate: 32 + fer_profile: No errors + - trial_id: 7 + label: c02 + category: cat1 + condition: MNRU Q = 32 dB + bitrate: null + fer_profile: null + - trial_id: 8 + label: c01 + category: cat2 + condition: Reference + bitrate: null + fer_profile: null + - trial_id: 9 + label: c27 + category: cat3 + condition: IVAS FL + bitrate: 128 + fer_profile: No errors + - trial_id: 10 + label: c07 + category: cat4 + condition: ESDRU α = 0.6 + bitrate: null + fer_profile: null + - trial_id: 11 + label: c05 + category: cat5 + condition: MNRU Q = 17 dB + bitrate: null + fer_profile: null + - trial_id: 12 + label: c24 + category: cat6 + condition: IVAS FL + bitrate: 64 + fer_profile: No errors + +P800-8: + preliminaries: + - trial_id: 1 + label: c19 + category: cat1 + condition: IVAS FL + bitrate: 16.4 + fer_profile: 5% + - trial_id: 2 + label: c26 + category: cat2 + condition: IVAS FL + bitrate: 256 + fer_profile: 5% + - trial_id: 3 + label: c06 + category: cat3 + condition: ESDRU α = 0.8 + bitrate: null + fer_profile: null + - trial_id: 4 + label: c20 + category: cat4 + condition: IVAS FL + bitrate: 24.4 + fer_profile: 5% + - trial_id: 5 + label: c09 + category: cat5 + condition: ESDRU α = 0.2 + bitrate: null + fer_profile: null + - trial_id: 6 + label: c22 + category: cat6 + condition: IVAS FL + bitrate: 64 + fer_profile: 5% + - trial_id: 7 + label: c02 + category: cat1 + condition: MNRU Q = 32 dB + bitrate: null + fer_profile: null + - trial_id: 8 + label: c01 + category: cat2 + condition: Reference + bitrate: null + fer_profile: null + - trial_id: 9 + label: c27 + category: cat3 + condition: IVAS FL + bitrate: 384 + fer_profile: 5% + - trial_id: 10 + label: c07 + category: cat4 + condition: ESDRU α = 0.6 + bitrate: null + fer_profile: null + - trial_id: 11 + label: c05 + category: cat5 + condition: MNRU Q = 17 dB + bitrate: null + fer_profile: null + - trial_id: 12 + label: c24 + category: cat6 + condition: IVAS FL + bitrate: 128 + fer_profile: 5% + +P800-9: + preliminaries: + - trial_id: 1 + label: c19 + category: cat1 + condition: IVAS FL + bitrate: 13.2 + fer_profile: No errors + - trial_id: 2 + label: c26 + category: cat2 + condition: IVAS FL + bitrate: 96 + fer_profile: No errors + - trial_id: 3 + label: c06 + category: cat3 + condition: ESDRU α = 0.7 + bitrate: null + fer_profile: null + - trial_id: 4 + label: c20 + category: cat4 + condition: IVAS FL + bitrate: 16.4 + fer_profile: No errors + - trial_id: 5 + label: c09 + category: cat5 + condition: ESDRU α = 0.1 + bitrate: null + fer_profile: null + - trial_id: 6 + label: c22 + category: cat6 + condition: IVAS FL + bitrate: 32 + fer_profile: No errors + - trial_id: 7 + label: c02 + category: cat1 + condition: MNRU Q = 36 dB + bitrate: null + fer_profile: null + - trial_id: 8 + label: c01 + category: cat2 + condition: Reference + bitrate: null + fer_profile: null + - trial_id: 9 + label: c27 + category: cat3 + condition: IVAS FL + bitrate: 128 + fer_profile: No errors + - trial_id: 10 + label: c07 + category: cat4 + condition: ESDRU α = 0.5 + bitrate: null + fer_profile: null + - trial_id: 11 + label: c05 + category: cat5 + condition: MNRU Q = 18 dB + bitrate: null + fer_profile: null + - trial_id: 12 + label: c24 + category: cat6 + condition: IVAS FL + bitrate: 64 + fer_profile: No errors + +P800-10: + preliminaries: + - trial_id: 1 + label: c19 + category: cat1 + condition: IVAS FL + bitrate: 13.2 + fer_profile: No errors + - trial_id: 2 + label: c26 + category: cat2 + condition: IVAS FL + bitrate: 96 + fer_profile: No errors + - trial_id: 3 + label: c06 + category: cat3 + condition: ESDRU α = 0.7 + bitrate: null + fer_profile: null + - trial_id: 4 + label: c20 + category: cat4 + condition: IVAS FL + bitrate: 16.4 + fer_profile: No errors + - trial_id: 5 + label: c09 + category: cat5 + condition: ESDRU α = 0.1 + bitrate: null + fer_profile: null + - trial_id: 6 + label: c22 + category: cat6 + condition: IVAS FL + bitrate: 32 + fer_profile: No errors + - trial_id: 7 + label: c02 + category: cat1 + condition: MNRU Q = 36 dB + bitrate: null + fer_profile: null + - trial_id: 8 + label: c01 + category: cat2 + condition: Reference + bitrate: null + fer_profile: null + - trial_id: 9 + label: c27 + category: cat3 + condition: IVAS FL + bitrate: 128 + fer_profile: No errors + - trial_id: 10 + label: c07 + category: cat4 + condition: ESDRU α = 0.5 + bitrate: null + fer_profile: null + - trial_id: 11 + label: c05 + category: cat5 + condition: MNRU Q = 18 dB + bitrate: null + fer_profile: null + - trial_id: 12 + label: c24 + category: cat6 + condition: IVAS FL + bitrate: 64 + fer_profile: No errors + +P800-11: + preliminaries: + - trial_id: 1 + label: c19 + category: cat1 + condition: IVAS FL + bitrate: 13.2 + fer_profile: 5% + - trial_id: 2 + label: c26 + category: cat2 + condition: IVAS FL + bitrate: 96 + fer_profile: 5% + - trial_id: 3 + label: c06 + category: cat3 + condition: ESDRU α = 0.7 + bitrate: null + fer_profile: null + - trial_id: 4 + label: c20 + category: cat4 + condition: IVAS FL + bitrate: 16.4 + fer_profile: 5% + - trial_id: 5 + label: c09 + category: cat5 + condition: ESDRU α = 0.1 + bitrate: null + fer_profile: null + - trial_id: 6 + label: c22 + category: cat6 + condition: IVAS FL + bitrate: 32 + fer_profile: 5% + - trial_id: 7 + label: c02 + category: cat1 + condition: MNRU Q = 36 dB + bitrate: null + fer_profile: null + - trial_id: 8 + label: c01 + category: cat2 + condition: Reference + bitrate: null + fer_profile: null + - trial_id: 9 + label: c27 + category: cat3 + condition: IVAS FL + bitrate: 128 + fer_profile: 5% + - trial_id: 10 + label: c07 + category: cat4 + condition: ESDRU α = 0.5 + bitrate: null + fer_profile: null + - trial_id: 11 + label: c05 + category: cat5 + condition: MNRU Q = 18 dB + bitrate: null + fer_profile: null + - trial_id: 12 + label: c24 + category: cat6 + condition: IVAS FL + bitrate: 64 + fer_profile: 5% + +P800-12: + preliminaries: + - trial_id: 1 + label: c19 + category: cat1 + condition: IVAS FL + bitrate: 13.2 + fer_profile: No errors + - trial_id: 2 + label: c26 + category: cat2 + condition: IVAS FL + bitrate: 96 + fer_profile: No errors + - trial_id: 3 + label: c06 + category: cat3 + condition: ESDRU α = 0.8 + bitrate: null + fer_profile: null + - trial_id: 4 + label: c20 + category: cat4 + condition: IVAS FL + bitrate: 16.4 + fer_profile: No errors + - trial_id: 5 + label: c09 + category: cat5 + condition: ESDRU α = 0.2 + bitrate: null + fer_profile: null + - trial_id: 6 + label: c22 + category: cat6 + condition: IVAS FL + bitrate: 32 + fer_profile: No errors + - trial_id: 7 + label: c02 + category: cat1 + condition: MNRU Q = 32 dB + bitrate: null + fer_profile: null + - trial_id: 8 + label: c01 + category: cat2 + condition: Reference + bitrate: null + fer_profile: null + - trial_id: 9 + label: c27 + category: cat3 + condition: IVAS FL + bitrate: 128 + fer_profile: No errors + - trial_id: 10 + label: c07 + category: cat4 + condition: ESDRU α = 0.6 + bitrate: null + fer_profile: null + - trial_id: 11 + label: c05 + category: cat5 + condition: MNRU Q = 17 dB + bitrate: null + fer_profile: null + - trial_id: 12 + label: c24 + category: cat6 + condition: IVAS FL + bitrate: 64 + fer_profile: No errors + +P800-13: + preliminaries: + - trial_id: 1 + label: c19 + category: cat1 + condition: IVAS FL + bitrate: 16.4 + fer_profile: No errors + - trial_id: 2 + label: c26 + category: cat2 + condition: IVAS FL + bitrate: 192 + fer_profile: No errors + - trial_id: 3 + label: c06 + category: cat3 + condition: ESDRU α = 0.8 + bitrate: null + fer_profile: null + - trial_id: 4 + label: c20 + category: cat4 + condition: IVAS FL + bitrate: 24.4 + fer_profile: No errors + - trial_id: 5 + label: c09 + category: cat5 + condition: ESDRU α = 0.2 + bitrate: null + fer_profile: null + - trial_id: 6 + label: c22 + category: cat6 + condition: IVAS FL + bitrate: 48 + fer_profile: No errors + - trial_id: 7 + label: c02 + category: cat1 + condition: MNRU Q = 32 dB + bitrate: null + fer_profile: null + - trial_id: 8 + label: c01 + category: cat2 + condition: Reference + bitrate: null + fer_profile: null + - trial_id: 9 + label: c27 + category: cat3 + condition: IVAS FL + bitrate: 384 + fer_profile: No errors + - trial_id: 10 + label: c07 + category: cat4 + condition: ESDRU α = 0.6 + bitrate: null + fer_profile: null + - trial_id: 11 + label: c05 + category: cat5 + condition: MNRU Q = 17 dB + bitrate: null + fer_profile: null + - trial_id: 12 + label: c24 + category: cat6 + condition: IVAS FL + bitrate: 96 + fer_profile: No errors + +P800-14: + preliminaries: + - trial_id: 1 + label: c23 + category: cat1 + condition: IVAS FL 1TC + bitrate: 13.2 + fer_profile: 8% + dtx: on + - trial_id: 2 + label: c15 + category: cat2 + condition: IVAS FL 1TC + bitrate: 80 + fer_profile: 4% + dtx: on + - trial_id: 3 + label: c06 + category: cat3 + condition: ESDRU α = 0.8 + bitrate: null + fer_profile: null + dtx: null + - trial_id: 4 + label: c31 + category: cat4 + condition: IVAS FL 2TC + bitrate: 16.4 + fer_profile: 8% + dtx: on + - trial_id: 5 + label: c08 + category: cat5 + condition: ESDRU α = 0.4 + bitrate: null + fer_profile: null + dtx: null + - trial_id: 6 + label: c19 + category: cat6 + condition: IVAS FL 2TC + bitrate: 32 + fer_profile: 4% + dtx: on + - trial_id: 7 + label: c03 + category: cat1 + condition: MNRU Q = 32 dB + bitrate: null + fer_profile: null + dtx: null + - trial_id: 8 + label: c01 + category: cat2 + condition: Reference + bitrate: null + fer_profile: null + dtx: null + - trial_id: 9 + label: c35 + category: cat3 + condition: IVAS FL 2TC + bitrate: 64 + fer_profile: 8% + dtx: on + - trial_id: 10 + label: c07 + category: cat4 + condition: ESDRU α = 0.6 + bitrate: null + fer_profile: null + dtx: null + - trial_id: 11 + label: c05 + category: cat5 + condition: MNRU Q = 18 dB + bitrate: null + fer_profile: null + dtx: null + - trial_id: 12 + label: c11 + category: cat6 + condition: IVAS FL 1TC + bitrate: 24.4 + fer_profile: 4% + dtx: on + +P800-15: + preliminaries: + - trial_id: 1 + label: c19 + category: cat1 + condition: IVAS FL + bitrate: 32 + fer_profile: No errors + - trial_id: 2 + label: c26 + category: cat2 + condition: IVAS FL + bitrate: 384 + fer_profile: No errors + - trial_id: 3 + label: c06 + category: cat3 + condition: ESDRU α = 0.8 + bitrate: null + fer_profile: null + - trial_id: 4 + label: c20 + category: cat4 + condition: IVAS FL + bitrate: 48 + fer_profile: No errors + - trial_id: 5 + label: c09 + category: cat5 + condition: ESDRU α = 0.2 + bitrate: null + fer_profile: null + - trial_id: 6 + label: c22 + category: cat6 + condition: IVAS FL + bitrate: 96 + fer_profile: No errors + - trial_id: 7 + label: c02 + category: cat1 + condition: MNRU Q = 32 dB + bitrate: null + fer_profile: null + - trial_id: 8 + label: c01 + category: cat2 + condition: Reference + bitrate: null + fer_profile: null + - trial_id: 9 + label: c27 + category: cat3 + condition: IVAS FL + bitrate: 512 + fer_profile: No errors + - trial_id: 10 + label: c07 + category: cat4 + condition: ESDRU α = 0.6 + bitrate: null + fer_profile: null + - trial_id: 11 + label: c05 + category: cat5 + condition: MNRU Q = 17 dB + bitrate: null + fer_profile: null + - trial_id: 12 + label: c24 + category: cat6 + condition: IVAS FL + bitrate: 192 + fer_profile: No errors + +P800-16: + preliminaries: + - trial_id: 1 + label: c19 + category: cat1 + condition: IVAS FL + bitrate: 32 + fer_profile: No errors + - trial_id: 2 + label: c26 + category: cat2 + condition: IVAS FL + bitrate: 384 + fer_profile: No errors + - trial_id: 3 + label: c06 + category: cat3 + condition: ESDRU α = 0.8 + bitrate: null + fer_profile: null + - trial_id: 4 + label: c20 + category: cat4 + condition: IVAS FL + bitrate: 48 + fer_profile: No errors + - trial_id: 5 + label: c09 + category: cat5 + condition: ESDRU α = 0.2 + bitrate: null + fer_profile: null + - trial_id: 6 + label: c22 + category: cat6 + condition: IVAS FL + bitrate: 96 + fer_profile: No errors + - trial_id: 7 + label: c02 + category: cat1 + condition: MNRU Q = 32 dB + bitrate: null + fer_profile: null + - trial_id: 8 + label: c01 + category: cat2 + condition: Reference + bitrate: null + fer_profile: null + - trial_id: 9 + label: c27 + category: cat3 + condition: IVAS FL + bitrate: 512 + fer_profile: No errors + - trial_id: 10 + label: c07 + category: cat4 + condition: ESDRU α = 0.6 + bitrate: null + fer_profile: null + - trial_id: 11 + label: c05 + category: cat5 + condition: MNRU Q = 17 dB + bitrate: null + fer_profile: null + - trial_id: 12 + label: c24 + category: cat6 + condition: IVAS FL + bitrate: 192 + fer_profile: No errors + +P800-17: + preliminaries: + - trial_id: 1 + label: c18 + category: cat1 + condition: IVAS FL + bitrate: 16.4 + fer_profile: No errors + - trial_id: 2 + label: c16 + category: cat2 + condition: IVAS FL + bitrate: 256 + fer_profile: 5% + - trial_id: 3 + label: c06 + category: cat3 + condition: ESDRU α = 0.8 + bitrate: null + fer_profile: null + - trial_id: 4 + label: c17 + category: cat4 + condition: IVAS FL + bitrate: 13.2 + fer_profile: No errors + - trial_id: 5 + label: c09 + category: cat5 + condition: ESDRU α = 0.2 + bitrate: null + fer_profile: null + - trial_id: 6 + label: c12 + category: cat6 + condition: IVAS FL + bitrate: 128 + fer_profile: No errors + - trial_id: 7 + label: c02 + category: cat1 + condition: MNRU Q = 34 dB + bitrate: null + fer_profile: null + - trial_id: 8 + label: c01 + category: cat2 + condition: Reference + bitrate: null + fer_profile: null + - trial_id: 9 + label: c14 + category: cat3 + condition: IVAS FL + bitrate: 32 + fer_profile: 5% + - trial_id: 10 + label: c07 + category: cat4 + condition: ESDRU α = 0.6 + bitrate: null + fer_profile: null + - trial_id: 11 + label: c05 + category: cat5 + condition: MNRU Q = 22 dB + bitrate: null + fer_profile: null + - trial_id: 12 + label: c30 + category: cat6 + condition: IVAS FL + bitrate: 512 + fer_profile: No errors + +P800-18: + preliminaries: + - trial_id: 1 + label: c19 + category: cat1 + condition: IVAS FL + bitrate: 13.2 + fer_profile: No errors + - trial_id: 2 + label: c26 + category: cat2 + condition: IVAS FL + bitrate: 128 + fer_profile: No errors + - trial_id: 3 + label: c06 + category: cat3 + condition: ESDRU α = 0.8 + bitrate: null + fer_profile: null + - trial_id: 4 + label: c20 + category: cat4 + condition: IVAS FL + bitrate: 16.4 + fer_profile: No errors + - trial_id: 5 + label: c09 + category: cat5 + condition: ESDRU α = 0.2 + bitrate: null + fer_profile: null + - trial_id: 6 + label: c22 + category: cat6 + condition: IVAS FL + bitrate: 32 + fer_profile: No errors + - trial_id: 7 + label: c02 + category: cat1 + condition: MNRU Q = 32 dB + bitrate: null + fer_profile: null + - trial_id: 8 + label: c01 + category: cat2 + condition: Reference + bitrate: null + fer_profile: null + - trial_id: 9 + label: c27 + category: cat3 + condition: IVAS FL + bitrate: 256 + fer_profile: No errors + - trial_id: 10 + label: c07 + category: cat4 + condition: ESDRU α = 0.6 + bitrate: null + fer_profile: null + - trial_id: 11 + label: c05 + category: cat5 + condition: MNRU Q = 17 dB + bitrate: null + fer_profile: null + - trial_id: 12 + label: c24 + category: cat6 + condition: IVAS FL + bitrate: 64 + fer_profile: No errors + +P800-19: + preliminaries: + - trial_id: 1 + label: c19 + category: cat1 + condition: IVAS FL + bitrate: 16.4 + fer_profile: No errors + - trial_id: 2 + label: c26 + category: cat2 + condition: IVAS FL + bitrate: 256 + fer_profile: No errors + - trial_id: 3 + label: c06 + category: cat3 + condition: ESDRU α = 0.8 + bitrate: null + fer_profile: null + - trial_id: 4 + label: c20 + category: cat4 + condition: IVAS FL + bitrate: 24.4 + fer_profile: No errors + - trial_id: 5 + label: c09 + category: cat5 + condition: ESDRU α = 0.2 + bitrate: null + fer_profile: null + - trial_id: 6 + label: c22 + category: cat6 + condition: IVAS FL + bitrate: 64 + fer_profile: No errors + - trial_id: 7 + label: c02 + category: cat1 + condition: MNRU Q = 32 dB + bitrate: null + fer_profile: null + - trial_id: 8 + label: c01 + category: cat2 + condition: Reference + bitrate: null + fer_profile: null + - trial_id: 9 + label: c27 + category: cat3 + condition: IVAS FL + bitrate: 512 + fer_profile: No errors + - trial_id: 10 + label: c07 + category: cat4 + condition: ESDRU α = 0.6 + bitrate: null + fer_profile: null + - trial_id: 11 + label: c05 + category: cat5 + condition: MNRU Q = 17 dB + bitrate: null + fer_profile: null + - trial_id: 12 + label: c24 + category: cat6 + condition: IVAS FL + bitrate: 96 + fer_profile: No errors + +P800-20: + preliminaries: + - trial_id: 1 + label: c18 + category: cat1 + condition: IVAS FL + bitrate: 16.4 + fer_profile: No errors + - trial_id: 2 + label: c16 + category: cat2 + condition: IVAS FL + bitrate: 256 + fer_profile: No errors + - trial_id: 3 + label: c06 + category: cat3 + condition: ESDRU α = 0.8 + bitrate: null + fer_profile: null + - trial_id: 4 + label: c17 + category: cat4 + condition: IVAS FL + bitrate: 13.2 + fer_profile: No errors + - trial_id: 5 + label: c09 + category: cat5 + condition: ESDRU α = 0.2 + bitrate: null + fer_profile: null + - trial_id: 6 + label: c12 + category: cat6 + condition: IVAS FL + bitrate: 128 + fer_profile: No errors + - trial_id: 7 + label: c02 + category: cat1 + condition: MNRU Q = 34 dB + bitrate: null + fer_profile: null + - trial_id: 8 + label: c01 + category: cat2 + condition: Reference + bitrate: null + fer_profile: null + - trial_id: 9 + label: c14 + category: cat3 + condition: IVAS FL + bitrate: 32 + fer_profile: No errors + - trial_id: 10 + label: c07 + category: cat4 + condition: ESDRU α = 0.6 + bitrate: null + fer_profile: null + - trial_id: 11 + label: c05 + category: cat5 + condition: MNRU Q = 22 dB + bitrate: null + fer_profile: null + - trial_id: 12 + label: c30 + category: cat6 + condition: IVAS FL + bitrate: 512 + fer_profile: No errors + +P800-21: + preliminaries: + - trial_id: 1 + label: c31 + category: cat1 + condition: IVAS FL + bitrate: 24.4 + fer_profile: I1.O1 + - trial_id: 2 + label: c24 + category: cat2 + condition: IVAS FL + bitrate: 48 + fer_profile: no error + - trial_id: 3 + label: c06 + category: cat3 + condition: ESDRU α = 0.7 + bitrate: null + fer_profile: null + - trial_id: 4 + label: c30 + category: cat4 + condition: IVAS FL + bitrate: 96 + fer_profile: Error I1.O2 + - trial_id: 5 + label: c09 + category: cat5 + condition: ESDRU α = 0.1 + bitrate: null + fer_profile: null + - trial_id: 6 + label: c35 + category: cat6 + condition: IVAS FL + bitrate: 48 + fer_profile: I1.O2 + - trial_id: 7 + label: c02 + category: cat1 + condition: MNRU Q = 27 dB + bitrate: null + fer_profile: null + - trial_id: 8 + label: c01 + category: cat2 + condition: Reference + bitrate: null + fer_profile: null + - trial_id: 9 + label: c26 + category: cat3 + condition: IVAS FL + bitrate: 24.4 + fer_profile: Error I1.O1 + - trial_id: 10 + label: c07 + category: cat4 + condition: ESDRU α = 0.5 + bitrate: null + fer_profile: null + - trial_id: 11 + label: c05 + category: cat5 + condition: MNRU Q = 12 dB + bitrate: null + fer_profile: null + - trial_id: 12 + label: c25 + category: cat6 + condition: IVAS FL + bitrate: 96 + fer_profile: no error + +P800-22: + preliminaries: + - trial_id: 1 + label: c31 + category: cat1 + condition: IVAS FL + bitrate: 24.4 + fer_profile: I1.O1 + - trial_id: 2 + label: c24 + category: cat2 + condition: IVAS FL + bitrate: 48 + fer_profile: no error + - trial_id: 3 + label: c06 + category: cat3 + condition: ESDRU α = 0.7 + bitrate: null + fer_profile: null + - trial_id: 4 + label: c30 + category: cat4 + condition: IVAS FL + bitrate: 96 + fer_profile: Error I1.O2 + - trial_id: 5 + label: c09 + category: cat5 + condition: ESDRU α = 0.1 + bitrate: null + fer_profile: null + - trial_id: 6 + label: c35 + category: cat6 + condition: IVAS FL + bitrate: 48 + fer_profile: I1.O2 + - trial_id: 7 + label: c02 + category: cat1 + condition: MNRU Q = 36 dB + bitrate: null + fer_profile: null + - trial_id: 8 + label: c01 + category: cat2 + condition: Reference + bitrate: null + fer_profile: null + - trial_id: 9 + label: c26 + category: cat3 + condition: IVAS FL + bitrate: 24.4 + fer_profile: Error I1.O1 + - trial_id: 10 + label: c07 + category: cat4 + condition: ESDRU α = 0.5 + bitrate: null + fer_profile: null + - trial_id: 11 + label: c05 + category: cat5 + condition: MNRU Q = 18 dB + bitrate: null + fer_profile: null + - trial_id: 12 + label: c25 + category: cat6 + condition: IVAS FL + bitrate: 96 + fer_profile: no error + +P800-23: + preliminaries: + - trial_id: 1 + label: c31 + category: cat1 + condition: IVAS FL + bitrate: 24.4 + fer_profile: I1.O1 + - trial_id: 2 + label: c24 + category: cat2 + condition: IVAS FL + bitrate: 48 + fer_profile: no error + - trial_id: 3 + label: c06 + category: cat3 + condition: ESDRU α = 0.8 + bitrate: null + fer_profile: null + - trial_id: 4 + label: c30 + category: cat4 + condition: IVAS FL + bitrate: 96 + fer_profile: Error I1.O2 + - trial_id: 5 + label: c09 + category: cat5 + condition: ESDRU α = 0.2 + bitrate: null + fer_profile: null + - trial_id: 6 + label: c35 + category: cat6 + condition: IVAS FL + bitrate: 48 + fer_profile: I1.O2 + - trial_id: 7 + label: c02 + category: cat1 + condition: MNRU Q = 32 dB + bitrate: null + fer_profile: null + - trial_id: 8 + label: c01 + category: cat2 + condition: Reference + bitrate: null + fer_profile: null + - trial_id: 9 + label: c26 + category: cat3 + condition: IVAS FL + bitrate: 24.4 + fer_profile: Error I1.O1 + - trial_id: 10 + label: c07 + category: cat4 + condition: ESDRU α = 0.6 + bitrate: null + fer_profile: null + - trial_id: 11 + label: c05 + category: cat5 + condition: MNRU Q = 17 dB + bitrate: null + fer_profile: null + - trial_id: 12 + label: c25 + category: cat6 + condition: IVAS FL + bitrate: 96 + fer_profile: no error diff --git a/examples/ITEM_GENERATION_3ISM.yml b/examples/ITEM_GENERATION_3ISM.yml index e770cadf706b775682b8339677f64e863b0849b2..53dd0dedf501393b4ac35b7f19fbcd39686e23d7 100644 --- a/examples/ITEM_GENERATION_3ISM.yml +++ b/examples/ITEM_GENERATION_3ISM.yml @@ -37,7 +37,7 @@ duration: 8 add_low_level_random_noise: true ### Process with parallel streams -multiprocessing: False +multiprocessing: false ################################################ ### Item generation - Filename conventions @@ -93,7 +93,10 @@ provider: "va" ### input: input filename(s) ### azimuth: azimuth in the range [-180,180]; positive values point to the left ### elevation: elevation in the range [-90,90]; positive values indicate up -### shift: time adjustment of the input signal (negative value delays the signal) +### shift: time adjustment of the input signal (positive value delays the signal) +### alternatively, the notation X(i_ref) generates overlap by X seconds from the reference signal i_ref (0-based index) (positive value creates gap) +### background: background noise filename (if used, the 'add_low_level_random_noise' parameter is ignored) +### background_level: normalized background noise loudness to X dB LKFS ### ### Note 0: you can use relative paths in filenames (the program assumes that the root directory is the parent directory of the ivas_processing_scripts subfolder) ### Note 1: use brackets [val1, val2, ...] when specifying multiple values diff --git a/examples/ITEM_GENERATION_5_1_4.yml b/examples/ITEM_GENERATION_5_1_4.yml new file mode 100644 index 0000000000000000000000000000000000000000..2a0dbd278315dfff0deac6e9fcdcc587d5286ed4 --- /dev/null +++ b/examples/ITEM_GENERATION_5_1_4.yml @@ -0,0 +1,178 @@ +--- +################################################ +# Item generation - General configuration +################################################ + +### Any relative paths will be interpreted relative to the working directory the script is called from! +### Usage of absolute paths is recommended. +### Do not use file names with dots "." in them! This is not supported, use "_" instead +### For Windows users: please use double back slash '\\' in paths and add '.exe' to executable definitions + +### Output format +format: "5_1_4" +# masa_tc: 1 # applicable only to MASA/OMASA format +# masa_dirs: 1 # applicable only to MASA/OMASA format +# sba_order: 2 # applicable only to OSBA format + +### Output sampling rate in Hz +fs: 48000 + +### Generate BINAURAL output (_BINAURAL will be appended to the output filename) +binaural_output: true + +### Normalize target loudness to X LKFS +loudness: -26 + +### Apply pre-amble and post-amble in X seconds +preamble: 0.0 +postamble: 0.0 + +### Apply fade-in and fade-out of X seconds +fade_in_out: 0.5 + +### Trim the output such that the total duration is X seconds +duration: 8 + +### Add low-level random background noise (amplitude +-4) instead of silence; default = false (silence) +add_low_level_random_noise: false + +### Process with parallel streams +multiprocessing: false + +################################################ +### Item generation - Filename conventions +################################################ + +### Naming convention for the input mono files +### The input filenames are represented by: +### lLLeeettszz.wav +### where: +### l stands for the listening lab designator: a (Force Technology), b (HEAD acoustics), c (MQ University), d (Mesaqin.com) +### LL stands for the language: JP, FR, GE, MA, DA, EN +### eee stands for the experiment designator: p01, p02, p04, p05, p06, p07, p08, p09 +### tt stands for the talker ID: f1, f2, f3, m1, m2, m3 +### s stands for 'sample' and zz is the sample number; 01, ..., 14 + +### Naming convention for the generated output files +### The output filenames are represented by: +### leeeayszz.wav +### The filenames of the accompanying output metadata files (applicable to metadata-assisted spatial audio, object-based audio) are represented by: +### leeeayszz.met for metadata-assisted spatial audio +### leeeayszz.wav.o.csv for object-based audio +### where: +### l stands for the listening lab designator: a (Force Technology), b (HEAD acoustics), c (MQ University), d (Mesaqin.com) +### eee stands for the experiment designator: p01, p02, p04, p05, p06, p07, p08, p09 +### a stands 'audio' +### y is the per-experiment category according to IVAS-8a: 01, 02, 03, 04, 05, 06 +### s stands for sample and zz is the sample number; 01, 02, 03, 04, 05, 06, 07 (07 is the preliminary sample) +### o stands for the object number; 0, 1, 2, 3 + +### File designators, default is "l" for listening lab, "EN" for language, "p07" for experiment and "g" for company +listening_lab: "l" +language: "EN" +exp: "p01" +provider: "va" + +### Insert prefix for all input filenames (default: "") +### l stands for the 'listening_lab' designator, L stands for the 'language', e stands for the 'experiment' +### the number of consecutive letters define the length of each field +# use_input_prefix: "lLLeee" + +### Insert prefix for all output filenames (default: "") +### l stands for the 'listening_lab' designator, L stands for the 'language', e stands for the 'experiment' +### the number of consecutive letters define the length of each field +# use_output_prefix: "leee" + +################################################ +### Item generation - Scene description +################################################ + +### Each scene shall de described using the following parameters/properties: +### output: output filename +### description: textual description of the scene +### input: input filename(s) +### IR: filenames(s) of the input IRs +### azimuth: azimuth in the range [-180,180]; positive values point to the left +### elevation: elevation in the range [-90,90]; positive values indicate up +### shift: time adjustment of the input signal (positive value delays the signal) +### alternatively, the notation X(i_ref) generates overlap by X seconds from the reference signal i_ref (0-based index) (positive value creates gap) +### background: background noise filename (if used, the 'add_low_level_random_noise' parameter is ignored) +### background_level: normalized background noise loudness to X dB LKFS +### +### Note 0: you can use relative paths in filenames (the program assumes that the root directory is the parent directory of the ivas_processing_scripts subfolder) +### Note 1: use brackets [val1, val2, ...] when specifying multiple values +### Note 2: use the "start:step:stop" notation for moving sources, where step will be applied in 20ms frames +### Note 3: we're using right-handed coordinate system with azimuth = 0 pointing from the nose to the screen + +scenes: + "01": + output: "out/s01.wav" + description: "Car with AB microphone pickup, no overlap between the talkers, car noise." + input: ["items_mono/untrimmed/f1s4b_Talker2.wav", "items_mono/untrimmed/f2s1a_Talker1.wav"] + IR: ["IRs/IR_do_p04_e_01_01_FOA.wav", "IRs/IR_do_p04_e_02_01_FOA.wav"] + shift: [0.0, -1.0] + background: "items_background/Dolby_BG_do_p05_a_01_FOA.wav" + background_level: -46 + + "02": + output: "out/s02.wav" + description: "Car with AB microphone pickup, overlap between the talkers, car noise." + input: ["items_mono/untrimmed/f1s6a_Talker2.wav", "items_mono/untrimmed/f2s3b_Talker1.wav"] + IR: ["IRs/IR_do_p04_e_03_01_FOA.wav", "IRs/IR_do_p04_e_04_01_FOA.wav"] + shift: [0.0, +1.0] + background: "items_background/Dolby_BG_do_p05_a_01_FOA.wav" + background_level: -46 + + "03": + output: "out/s03.wav" + description: "Car with AB microphone pickup, no overlap between the talkers, car noise." + input: ["items_mono/untrimmed/f3s3a_Talker2.wav", "items_mono/untrimmed/f3s10b_Talker2.wav"] + IR: ["IRs/IR_do_p04_e_05_01_FOA.wav", "IRs/IR_do_p04_e_06_01_FOA.wav"] + shift: [0.0, -1.0] + background: "items_background/Dolby_BG_do_p05_a_01_FOA.wav" + background_level: -46 + + "04": + output: "out/s04.wav" + description: "Car with AB microphone pickup, no overlap between the talkers, car noise." + input: ["items_mono/untrimmed/f2s7b_Talker1.wav", "items_mono/untrimmed/f5s15a_Talker1.wav"] + IR: ["IRs/IR_do_p04_e_07_01_FOA.wav", "IRs/IR_do_p04_e_08_01_FOA.wav"] + shift: [0.0, -1.0] + background: "items_background/Dolby_BG_do_p05_a_01_FOA.wav" + background_level: -46 + + "05": + output: "out/s05.wav" + description: "Car with AB microphone pickup, no overlap between the talkers, car noise." + input: ["items_mono/untrimmed/m2s15a_Talker2.wav", "items_mono/untrimmed/m1s4a_Talker1.wav"] + IR: ["IRs/IR_do_p04_e_07_01_FOA.wav", "IRs/IR_do_p04_e_01_01_FOA.wav"] + shift: [0.0, -1.0] + background: "items_background/Dolby_BG_do_p05_a_01_FOA.wav" + background_level: -46 + + "06": + output: "out/s06.wav" + description: "Car with AB microphone pickup, no overlap between the talkers." + input: ["items_mono/untrimmed/m3s8a_Talker2.wav", "items_mono/untrimmed/m4s13a_Talker1.wav"] + IR: ["IRs/IR_do_p04_e_03_01_FOA.wav", "IRs/IR_do_p04_e_01_01_FOA.wav"] + shift: [0.0, -1.0] + background: "items_background/Dolby_BG_do_p05_a_01_FOA.wav" + background_level: -46 + + "07": + output: "out/s07.wav" + description: "Preliminary: Car with AB microphone pickup, no overlap between the talkers." + input: ["items_mono/untrimmed/f1s20a_Talker2.wav", "items_mono/untrimmed/f5s15b_Talker1.wav"] + IR: ["IRs/IR_do_p04_e_02_01_FOA.wav", "IRs/IR_do_p04_e_07_01_FOA.wav"] + shift: [0.0, -1.0] + background: "items_background/Dolby_BG_do_p05_a_01_FOA.wav" + background_level: -46 + + "08": + output: "out/s08.wav" + description: "Car with AB microphone pickup, overlap between the talkers." + input: ["items_mono/untrimmed/m2s6b_Talker2.wav", "items_mono/untrimmed/f5s14a_Talker1.wav"] + IR: ["IRs/IR_do_p04_e_08_01_FOA.wav", "IRs/IR_do_p04_e_04_01_FOA.wav"] + shift: [0.0, +1.0] + background: "items_background/Dolby_BG_do_p05_a_01_FOA.wav" + background_level: -46 diff --git a/examples/ITEM_GENERATION_FOA.yml b/examples/ITEM_GENERATION_FOA.yml index 2287af4c67e7be64c7a7928d9a68afcd87e8d467..016c5fcfa268ca657667c0a18473eeec98aca06a 100644 --- a/examples/ITEM_GENERATION_FOA.yml +++ b/examples/ITEM_GENERATION_FOA.yml @@ -34,10 +34,10 @@ fade_in_out: 0.5 duration: 8 ### Add low-level random background noise (amplitude +-4) instead of silence; default = false (silence) -add_low_level_random_noise: False +add_low_level_random_noise: false ### Process with parallel streams -multiprocessing: False +multiprocessing: false ################################################ ### Item generation - Filename conventions @@ -94,7 +94,10 @@ use_output_prefix: "leee" ### IR: filenames(s) of the input IRs ### azimuth: azimuth in the range [-180,180]; positive values point to the left ### elevation: elevation in the range [-90,90]; positive values indicate up -### shift: time adjustment of the input signal (negative value delays the signal) +### shift: time adjustment of the input signal (positive value delays the signal) +### alternatively, the notation X(i_ref) generates overlap by X seconds from the reference signal i_ref (0-based index) (positive value creates gap) +### background: background noise filename (if used, the 'add_low_level_random_noise' parameter is ignored) +### background_level: normalized background noise loudness to X dB LKFS ### ### Note 0: you can use relative paths in filenames (the program assumes that the root directory is the parent directory of the ivas_processing_scripts subfolder) ### Note 1: use brackets [val1, val2, ...] when specifying multiple values @@ -109,13 +112,17 @@ scenes: input: ["items_mono/untrimmed/f1s4b_Talker2.wav", "items_mono/untrimmed/f2s1a_Talker1.wav"] IR: ["IRs/IR_do_p04_e_01_01_FOA.wav", "IRs/IR_do_p04_e_02_01_FOA.wav"] shift: [0.0, -1.0] - + background: "items_background/Dolby_BG_do_p05_a_01_FOA.wav" + background_level: -46 + "02": output: "out/s02.wav" description: "Car with AB microphone pickup, overlap between the talkers, car noise." input: ["items_mono/untrimmed/f1s6a_Talker2.wav", "items_mono/untrimmed/f2s3b_Talker1.wav"] IR: ["IRs/IR_do_p04_e_03_01_FOA.wav", "IRs/IR_do_p04_e_04_01_FOA.wav"] shift: [0.0, +1.0] + background: "items_background/Dolby_BG_do_p05_a_01_FOA.wav" + background_level: -46 "03": output: "out/s03.wav" @@ -130,6 +137,8 @@ scenes: input: ["items_mono/untrimmed/f2s7b_Talker1.wav", "items_mono/untrimmed/f5s15a_Talker1.wav"] IR: ["IRs/IR_do_p04_e_07_01_FOA.wav", "IRs/IR_do_p04_e_08_01_FOA.wav"] shift: [0.0, -1.0] + background: "items_background/Dolby_BG_do_p05_a_01_FOA.wav" + background_level: -46 "05": output: "out/s05.wav" @@ -137,6 +146,8 @@ scenes: input: ["items_mono/untrimmed/m2s15a_Talker2.wav", "items_mono/untrimmed/m1s4a_Talker1.wav"] IR: ["IRs/IR_do_p04_e_07_01_FOA.wav", "IRs/IR_do_p04_e_01_01_FOA.wav"] shift: [0.0, -1.0] + background: "items_background/Dolby_BG_do_p05_a_01_FOA.wav" + background_level: -46 "06": output: "out/s06.wav" diff --git a/examples/ITEM_GENERATION_MASA.yml b/examples/ITEM_GENERATION_MASA.yml new file mode 100644 index 0000000000000000000000000000000000000000..715b20c4932eb6b21ebcd9642b55d4b8c4805bae --- /dev/null +++ b/examples/ITEM_GENERATION_MASA.yml @@ -0,0 +1,178 @@ +--- +################################################ +# Item generation - General configuration +################################################ + +### Any relative paths will be interpreted relative to the working directory the script is called from! +### Usage of absolute paths is recommended. +### Do not use file names with dots "." in them! This is not supported, use "_" instead +### For Windows users: please use double back slash '\\' in paths and add '.exe' to executable definitions + +### Output format +format: "MASA" +masa_tc: 1 # applicable only to MASA/OMASA format +masa_dirs: 1 # applicable only to MASA/OMASA format +# sba_order: 2 # applicable only to OSBA format + +### Output sampling rate in Hz +fs: 48000 + +### Generate BINAURAL output (_BINAURAL will be appended to the output filename) +binaural_output: true + +### Normalize target loudness to X LKFS +loudness: -26 + +### Apply pre-amble and post-amble in X seconds +preamble: 0.0 +postamble: 0.0 + +### Apply fade-in and fade-out of X seconds +fade_in_out: 0.5 + +### Trim the output such that the total duration is X seconds +duration: 8 + +### Add low-level random background noise (amplitude +-4) instead of silence; default = false (silence) +add_low_level_random_noise: false + +### Process with parallel streams +multiprocessing: false + +################################################ +### Item generation - Filename conventions +################################################ + +### Naming convention for the input mono files +### The input filenames are represented by: +### lLLeeettszz.wav +### where: +### l stands for the listening lab designator: a (Force Technology), b (HEAD acoustics), c (MQ University), d (Mesaqin.com) +### LL stands for the language: JP, FR, GE, MA, DA, EN +### eee stands for the experiment designator: p01, p02, p04, p05, p06, p07, p08, p09 +### tt stands for the talker ID: f1, f2, f3, m1, m2, m3 +### s stands for 'sample' and zz is the sample number; 01, ..., 14 + +### Naming convention for the generated output files +### The output filenames are represented by: +### leeeayszz.wav +### The filenames of the accompanying output metadata files (applicable to metadata-assisted spatial audio, object-based audio) are represented by: +### leeeayszz.met for metadata-assisted spatial audio +### leeeayszz.wav.o.csv for object-based audio +### where: +### l stands for the listening lab designator: a (Force Technology), b (HEAD acoustics), c (MQ University), d (Mesaqin.com) +### eee stands for the experiment designator: p01, p02, p04, p05, p06, p07, p08, p09 +### a stands 'audio' +### y is the per-experiment category according to IVAS-8a: 01, 02, 03, 04, 05, 06 +### s stands for sample and zz is the sample number; 01, 02, 03, 04, 05, 06, 07 (07 is the preliminary sample) +### o stands for the object number; 0, 1, 2, 3 + +### File designators, default is "l" for listening lab, "EN" for language, "p07" for experiment and "g" for company +listening_lab: "l" +language: "EN" +exp: "p01" +provider: "va" + +### Insert prefix for all input filenames (default: "") +### l stands for the 'listening_lab' designator, L stands for the 'language', e stands for the 'experiment' +### the number of consecutive letters define the length of each field +# use_input_prefix: "lLLeee" + +### Insert prefix for all output filenames (default: "") +### l stands for the 'listening_lab' designator, L stands for the 'language', e stands for the 'experiment' +### the number of consecutive letters define the length of each field +# use_output_prefix: "leee" + +################################################ +### Item generation - Scene description +################################################ + +### Each scene shall de described using the following parameters/properties: +### output: output filename +### description: textual description of the scene +### input: input filename(s) +### IR: filenames(s) of the input IRs +### azimuth: azimuth in the range [-180,180]; positive values point to the left +### elevation: elevation in the range [-90,90]; positive values indicate up +### shift: time adjustment of the input signal (positive value delays the signal) +### alternatively, the notation X(i_ref) generates overlap by X seconds from the reference signal i_ref (0-based index) (positive value creates gap) +### background: background noise filename (if used, the 'add_low_level_random_noise' parameter is ignored) +### background_level: normalized background noise loudness to X dB LKFS +### +### Note 0: you can use relative paths in filenames (the program assumes that the root directory is the parent directory of the ivas_processing_scripts subfolder) +### Note 1: use brackets [val1, val2, ...] when specifying multiple values +### Note 2: use the "start:step:stop" notation for moving sources, where step will be applied in 20ms frames +### Note 3: we're using right-handed coordinate system with azimuth = 0 pointing from the nose to the screen + +scenes: + "01": + output: "out/s01.wav" + description: "Car with AB microphone pickup, no overlap between the talkers, car noise." + input: ["items_mono/untrimmed/f1s4b_Talker2.wav", "items_mono/untrimmed/f2s1a_Talker1.wav"] + IR: ["IRs/IR_do_p04_e_01_01_FOA.wav", "IRs/IR_do_p04_e_02_01_FOA.wav"] + shift: [0.0, -1.0] + background: "items_background/Dolby_BG_do_p05_a_01_FOA.wav" + background_level: -46 + + "02": + output: "out/s02.wav" + description: "Car with AB microphone pickup, overlap between the talkers, car noise." + input: ["items_mono/untrimmed/f1s6a_Talker2.wav", "items_mono/untrimmed/f2s3b_Talker1.wav"] + IR: ["IRs/IR_do_p04_e_03_01_FOA.wav", "IRs/IR_do_p04_e_04_01_FOA.wav"] + shift: [0.0, +1.0] + background: "items_background/Dolby_BG_do_p05_a_01_FOA.wav" + background_level: -46 + + "03": + output: "out/s03.wav" + description: "Car with AB microphone pickup, no overlap between the talkers, car noise." + input: ["items_mono/untrimmed/f3s3a_Talker2.wav", "items_mono/untrimmed/f3s10b_Talker2.wav"] + IR: ["IRs/IR_do_p04_e_05_01_FOA.wav", "IRs/IR_do_p04_e_06_01_FOA.wav"] + shift: [0.0, -1.0] + background: "items_background/Dolby_BG_do_p05_a_01_FOA.wav" + background_level: -46 + + "04": + output: "out/s04.wav" + description: "Car with AB microphone pickup, no overlap between the talkers, car noise." + input: ["items_mono/untrimmed/f2s7b_Talker1.wav", "items_mono/untrimmed/f5s15a_Talker1.wav"] + IR: ["IRs/IR_do_p04_e_07_01_FOA.wav", "IRs/IR_do_p04_e_08_01_FOA.wav"] + shift: [0.0, -1.0] + background: "items_background/Dolby_BG_do_p05_a_01_FOA.wav" + background_level: -46 + + "05": + output: "out/s05.wav" + description: "Car with AB microphone pickup, no overlap between the talkers, car noise." + input: ["items_mono/untrimmed/m2s15a_Talker2.wav", "items_mono/untrimmed/m1s4a_Talker1.wav"] + IR: ["IRs/IR_do_p04_e_07_01_FOA.wav", "IRs/IR_do_p04_e_01_01_FOA.wav"] + shift: [0.0, -1.0] + background: "items_background/Dolby_BG_do_p05_a_01_FOA.wav" + background_level: -46 + + "06": + output: "out/s06.wav" + description: "Car with AB microphone pickup, no overlap between the talkers." + input: ["items_mono/untrimmed/m3s8a_Talker2.wav", "items_mono/untrimmed/m4s13a_Talker1.wav"] + IR: ["IRs/IR_do_p04_e_03_01_FOA.wav", "IRs/IR_do_p04_e_01_01_FOA.wav"] + shift: [0.0, -1.0] + background: "items_background/Dolby_BG_do_p05_a_01_FOA.wav" + background_level: -46 + + "07": + output: "out/s07.wav" + description: "Preliminary: Car with AB microphone pickup, no overlap between the talkers." + input: ["items_mono/untrimmed/f1s20a_Talker2.wav", "items_mono/untrimmed/f5s15b_Talker1.wav"] + IR: ["IRs/IR_do_p04_e_02_01_FOA.wav", "IRs/IR_do_p04_e_07_01_FOA.wav"] + shift: [0.0, -1.0] + background: "items_background/Dolby_BG_do_p05_a_01_FOA.wav" + background_level: -46 + + "08": + output: "out/s08.wav" + description: "Car with AB microphone pickup, overlap between the talkers." + input: ["items_mono/untrimmed/m2s6b_Talker2.wav", "items_mono/untrimmed/f5s14a_Talker1.wav"] + IR: ["IRs/IR_do_p04_e_08_01_FOA.wav", "IRs/IR_do_p04_e_04_01_FOA.wav"] + shift: [0.0, +1.0] + background: "items_background/Dolby_BG_do_p05_a_01_FOA.wav" + background_level: -46 diff --git a/examples/ITEM_GENERATION_OMASA.yml b/examples/ITEM_GENERATION_OMASA.yml index 1f631f3f372da3c59e4aa2c3687fdb6c10a3322e..462bc54e116c8a73869d7b79206435f97e024009 100644 --- a/examples/ITEM_GENERATION_OMASA.yml +++ b/examples/ITEM_GENERATION_OMASA.yml @@ -10,8 +10,8 @@ ### Output format format: "OMASA" -masa_tc: 2 # applicable only to OMASA format -masa_dirs: 2 # applicable only to OMASA format +masa_tc: 2 # applicable only to MASA/OMASA format +masa_dirs: 2 # applicable only to MASA/OMASA format # sba_order: 2 # applicable only to OSBA format ### Output sampling rate in Hz @@ -37,7 +37,7 @@ duration: 8 add_low_level_random_noise: true ### Process with parallel streams -multiprocessing: False +multiprocessing: false ################################################ ### Item generation - Filename conventions @@ -93,7 +93,10 @@ provider: "va" ### input: input filename(s) ### azimuth: azimuth in the range [-180,180]; positive values point to the left ### elevation: elevation in the range [-90,90]; positive values indicate up -### shift: time adjustment of the input signal (negative value delays the signal) +### shift: time adjustment of the input signal (positive value delays the signal) +### alternatively, the notation X(i_ref) generates overlap by X seconds from the reference signal i_ref (0-based index) (positive value creates gap) +### background: background noise filename (if used, the 'add_low_level_random_noise' parameter is ignored) +### background_level: normalized background noise loudness to X dB LKFS ### ### Note 0: you can use relative paths in filenames (the program assumes that the root directory is the parent directory of the ivas_processing_scripts subfolder) ### Note 1: use brackets [val1, val2, ...] when specifying multiple values diff --git a/examples/ITEM_GENERATION_OSBA.yml b/examples/ITEM_GENERATION_OSBA.yml index f7c33b490f6edd62ffa2d1e1faf0b582bf614b88..3b6968381d205f73bdcf9bef3b83ceae830da258 100644 --- a/examples/ITEM_GENERATION_OSBA.yml +++ b/examples/ITEM_GENERATION_OSBA.yml @@ -37,7 +37,7 @@ duration: 8 add_low_level_random_noise: true ### Process with parallel streams -multiprocessing: False +multiprocessing: false ################################################ ### Item generation - Filename conventions @@ -93,7 +93,10 @@ provider: "va" ### input: input filename(s) ### azimuth: azimuth in the range [-180,180]; positive values point to the left ### elevation: elevation in the range [-90,90]; positive values indicate up -### shift: time adjustment of the input signal (negative value delays the signal) +### shift: time adjustment of the input signal (positive value delays the signal) +### alternatively, the notation X(i_ref) generates overlap by X seconds from the reference signal i_ref (0-based index) (positive value creates gap) +### background: background noise filename (if used, the 'add_low_level_random_noise' parameter is ignored) +### background_level: normalized background noise loudness to X dB LKFS ### ### Note 0: you can use relative paths in filenames (the program assumes that the root directory is the parent directory of the ivas_processing_scripts subfolder) ### Note 1: use brackets [val1, val2, ...] when specifying multiple values diff --git a/examples/ITEM_GENERATION_STEREO.yml b/examples/ITEM_GENERATION_STEREO.yml index 14731b4b65858f5ab78fce3dfbe0178aede95fea..784263588b4f5390f3081799f93cad533b13b91f 100644 --- a/examples/ITEM_GENERATION_STEREO.yml +++ b/examples/ITEM_GENERATION_STEREO.yml @@ -37,7 +37,7 @@ duration: 8 add_low_level_random_noise: true ### Process with parallel streams -multiprocessing: False +multiprocessing: false ################################################ ### Item generation - Filename conventions @@ -94,7 +94,10 @@ provider: "g" ### IR: filenames(s) of the input IRs ### azimuth: azimuth in the range [-180,180]; positive values point to the left ### elevation: elevation in the range [-90,90]; positive values indicate up -### shift: time adjustment of the input signal (negative value delays the signal) +### shift: time adjustment of the input signal (positive value delays the signal) +### alternatively, the notation X(i_ref) generates overlap by X seconds from the reference signal i_ref (0-based index) (positive value creates gap) +### background: background noise filename (if used, the 'add_low_level_random_noise' parameter is ignored) +### background_level: normalized background noise loudness to X dB LKFS ### ### Note 0: you can use relative paths in filenames (the program assumes that the root directory is the parent directory of the ivas_processing_scripts subfolder) ### Note 1: use brackets [val1, val2, ...] when specifying multiple values @@ -109,6 +112,8 @@ scenes: input: ["items_mono/untrimmed/f1s4b_Talker2.wav", "items_mono/untrimmed/f2s1a_Talker1.wav"] IR: ["IRs/Car_TalkPos1_Stereo_M5_SinSweep_2chn.wav", "IRs/Car_TalkPos2_Stereo_M5_SinSweep_2chn.wav"] shift: [0.0, -1.0] + background: "items_mono/347224__rayjensen__ambience-in-car_stereo.wav" + background_level: -66 "02": output: "out/a1s02.wav" @@ -116,6 +121,8 @@ scenes: input: ["items_mono/untrimmed/f1s6a_Talker2.wav", "items_mono/untrimmed/f2s3b_Talker1.wav"] IR: ["IRs/Car_TalkPos3_Stereo_M5_SinSweep_2chn.wav", "IRs/Car_TalkPos4_Stereo_M5_SinSweep_2chn.wav"] shift: [0.0, +1.0] + background: "items_mono/347224__rayjensen__ambience-in-car_stereo.wav" + background_level: -66 "03": output: "out/a1s03.wav" @@ -123,6 +130,8 @@ scenes: input: ["items_mono/untrimmed/f3s3a_Talker2.wav", "items_mono/untrimmed/f3s10b_Talker2.wav"] IR: ["IRs/Car_TalkPos1_Stereo_M5_SinSweep_2chn.wav", "IRs/Car_TalkPos1_Stereo_M5_SinSweep_2chn.wav"] shift: [0.0, -1.0] + background: "items_mono/347224__rayjensen__ambience-in-car_stereo.wav" + background_level: -66 "04": output: "out/a1s04.wav" @@ -130,13 +139,17 @@ scenes: input: ["items_mono/untrimmed/f2s7b_Talker1.wav", "items_mono/untrimmed/f5s15a_Talker1.wav"] IR: ["IRs/FreeField_IR_Python_AB_20cm_Pos1.wav", "IRs/FreeField_IR_Python_AB_20cm_Pos2.wav"] shift: [0.0, -1.0] - + background: "items_mono/347224__rayjensen__ambience-in-car_stereo.wav" + background_level: -66 + "05": output: "out/a1s05.wav" description: "Car with AB microphone pickup, no overlap between the talkers, car noise." input: ["items_mono/untrimmed/m2s15a_Talker2.wav", "items_mono/untrimmed/m1s4a_Talker1.wav"] IR: ["IRs/FreeField_IR_Python_AB_20cm_Pos3.wav", "IRs/FreeField_IR_Python_AB_20cm_Pos4.wav"] shift: [0.0, -1.0] + background: "items_mono/347224__rayjensen__ambience-in-car_stereo.wav" + background_level: -66 "06": output: "out/a1s06.wav" diff --git a/examples/TEMPLATE.yml b/examples/TEMPLATE.yml index 72fcd82ce898597aa7b64c62a7e5e7a33c89650e..37509a8b4995a6d691ef5099bcce474aab9d6f32 100755 --- a/examples/TEMPLATE.yml +++ b/examples/TEMPLATE.yml @@ -37,7 +37,7 @@ input_path: ".../ivas/items/HOA3" output_path: ".../temp_output" ### Metadata path or file(s) ### If input format is ISM{1-4} a path for the metadata files can be specified; -### default = null (for ISM search for item_name.{wav, raw, pcm}.{0-3}.csv in input folder, otherise ignored) +### default = null (for ISM search for item_name.{wav, raw, pcm}.{0-3}.csv in input folder, otherwise ignored) # metadata_path: ### Path can be set for all items with the 'all_items' key (automatic search for item_name.{wav, raw, pcm}.{0-3}.csv within this folder) # all_items: ".../metadata_folder" @@ -115,7 +115,7 @@ input: ### Horizontally concatenate input items into one long file; default = false # concatenate_input: true ### if concatenation is applied, the following two keys can be used to add zeros before or after the items - ### duration is specified in miliseconds + ### duration is specified in milliseconds # silence_pre: 2000 # silence_post: 2000 ### Specify the concatenation order in a list of strings. If not specified, the concatenation order would be @@ -126,7 +126,7 @@ input: # concatenation_order: [] ### Specify preamble duration in ms; default = 0 # preamble: 10000 - ### Flag wheter to use noise (amplitude +-4) for the preamble or silence; default = false (silence) + ### Flag whether to use noise (amplitude +-4) for the preamble or silence; default = false (silence) # preamble_noise: true ### Additive background noise # background_noise: @@ -147,14 +147,14 @@ input: ### e.g. frame error insertion or transport simulation for JBM testing ### can be given globally here or in individual conditions of type ivas or evs # tx: - ### REQUIRED: Type of bitstream processing; possible types: "JBM" or "FER" + ### REQUIRED: Type of bitstream processing; possible types: "JBM" or "FER" or "JBM2FER" # type: "JBM" - ### JBM - ### REQUIRED: either error_pattern (and errpatt_late_loss_rate or errpatt_delay) or error_profile + ### JBM or JBM2FER + ### REQUIRED: either error_pattern (and errpatt_late_loss_rate or errpatt_delay for EVS or JBM2FER ) or error_profile ### delay error profile file # error_pattern: ".../dly_error_profile.dat" - ### Late loss rate in precent for EVS + ### Late loss rate in percent for EVS # errpatt_late_loss_rate: 1 ### Constant JBM delay in milliseconds for EVS # errpatt_delay: 200 @@ -239,7 +239,12 @@ conditions_to_generate: ### Encoder input sampling rate in Hz (resampling performed in case of mismatch); default = null (no resampling) # fs: 32000 ### Additional commandline options; default = null + ### NOTE: if using -stereo_dmx_evs ensure you specify dec:fmt as MONO to avoid errors # opts: ["-q", "-dtx", 4] + ### Input format conversion, if encoding a different format + # fmt: "FOA" + ### Optional use of IVAS_rend for prerendering; can be True (default search) or a path to the binary + # ivas_prerend: false ### Decoder options dec: ### Path to decoder binary; default search for IVAS_dec in bin folder (primary) and PATH (secondary) @@ -290,6 +295,13 @@ conditions_to_generate: # fs: 48000 ### Additional commandline options; default = null # opts: ["-q", "-no_delay_cmp"] + ### Per-item renderer configuration. Set to true to search for a file with suffix .cfg in the input dir; default = false + # render_config: true + ### Head-tracking trajectory file for binaural output OR 'true' which will search for a file with the suffix .ht.csv in the input dir; default = null + ### NOTE: this automatically configures the '-T' argument to the decoder, so may conflict if also specified in `opts` + # trajectory: "path/to/file" + ### Limit the trajectory to 3DoF via truncation; default = false + # only_3dof: false ### Bitstream options # tx: ### For possible arguments see overall bitstream modification @@ -339,18 +351,20 @@ postprocessing: ### Gain factor to be applied AFTER any other processing (linear, or add dB suffix) # gain_post: 3.1622776602 ### Low-pass cut-off frequency in Hz; default = null (no filtering) - # lp_cutoff: 24000 - ### Target loudness in LKFS; default = null (no loudness change applied) - # loudness: -26 - ### Spatial audio format in which loudness is adjusted (only used if preprocessing loudness is not null); - ### 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) - # bin_dataset: SADIE - ### Render LFE to binaural output with the specified gain (only valid for channel-based input); default = null - # bin_lfe_gain: 1 - ### Flag whether output should be limited to avoid clipping (can alter target loudness); default = false - # limit: true - ### Head-tracking trajectory file for binaural output; default = null - # trajectory: "path/to/file" +# lp_cutoff: 24000 +### Target loudness in LKFS; default = null (no loudness change applied) +# loudness: -26 +### Spatial audio format in which loudness is adjusted (only used if preprocessing loudness is not null); +### 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) +# bin_dataset: SADIE +### Render LFE to binaural output with the specified gain (only valid for channel-based input); default = null +# bin_lfe_gain: 1 +### Flag whether output should be limited to avoid clipping (can alter target loudness); default = false +# limit: true +### Head-tracking trajectory file for binaural output OR 'true' which will search for a file with the suffix .ht.csv in the input dir; default = null +# trajectory: "path/to/file" +### Limit the trajectory to 3DoF via truncation; default = false +# only_3dof: false diff --git a/experiments/characterization/BS1534-1/config/BS1534-1.yml b/experiments/characterization/BS1534-1/config/BS1534-1.yml new file mode 100644 index 0000000000000000000000000000000000000000..f874c77a49a5b7bb92d7ea47aba16917fb43a896 --- /dev/null +++ b/experiments/characterization/BS1534-1/config/BS1534-1.yml @@ -0,0 +1,120 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: BS1534-1 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/BS1534-1/proc_input" +output_path: "experiments/characterization/BS1534-1/proc_output" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + c02: + type: lp3k5 + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### EVS conditions ### + c03: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + c04: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + ### IVAS FX conditions ### + c05: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c06: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c07: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c08: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/BS1534-1/proc_input/.gitkeep b/experiments/characterization/BS1534-1/proc_input/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-1/proc_output/.gitkeep b/experiments/characterization/BS1534-1/proc_output/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-10/config/BS1534-10-ISM1.yml b/experiments/characterization/BS1534-10/config/BS1534-10-ISM1.yml new file mode 100644 index 0000000000000000000000000000000000000000..701b495671b0ddcaa1f08ea29f3fbd65b3dc02e4 --- /dev/null +++ b/experiments/characterization/BS1534-10/config/BS1534-10-ISM1.yml @@ -0,0 +1,120 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: BS1534-10 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/BS1534-10/proc_input_ISM1" +output_path: "experiments/characterization/BS1534-10/proc_output_ISM1" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + c02: + type: lp3k5 + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### EVS conditions ### + c03: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + c04: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + ### IVAS FX conditions ### + c05: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c06: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c07: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c08: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/BS1534-10/config/BS1534-10-ISM2.yml b/experiments/characterization/BS1534-10/config/BS1534-10-ISM2.yml new file mode 100644 index 0000000000000000000000000000000000000000..c63b15f8d83b1ca13d952997cb9f7e2d276a0ef4 --- /dev/null +++ b/experiments/characterization/BS1534-10/config/BS1534-10-ISM2.yml @@ -0,0 +1,120 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: BS1534-10 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/BS1534-10/proc_input_ISM2" +output_path: "experiments/characterization/BS1534-10/proc_output_ISM2" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + c02: + type: lp3k5 + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### EVS conditions ### + c03: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + c04: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + ### IVAS FX conditions ### + c05: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c06: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c07: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c08: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/BS1534-10/proc_input_ISM1/.gitkeep b/experiments/characterization/BS1534-10/proc_input_ISM1/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-10/proc_input_ISM2/.gitkeep b/experiments/characterization/BS1534-10/proc_input_ISM2/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-10/proc_output_ISM1/.gitkeep b/experiments/characterization/BS1534-10/proc_output_ISM1/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-10/proc_output_ISM2/.gitkeep b/experiments/characterization/BS1534-10/proc_output_ISM2/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-11/config/BS1534-11-ISM3.yml b/experiments/characterization/BS1534-11/config/BS1534-11-ISM3.yml new file mode 100644 index 0000000000000000000000000000000000000000..c3b42ae601751a73cf73162c214f38b39ac26ef6 --- /dev/null +++ b/experiments/characterization/BS1534-11/config/BS1534-11-ISM3.yml @@ -0,0 +1,120 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: BS1534-11 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/BS1534-11/proc_input_ISM3" +output_path: "experiments/characterization/BS1534-11/proc_output_ISM3" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + c02: + type: lp3k5 + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### EVS conditions ### + c03: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + c04: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + ### IVAS FX conditions ### + c05: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c06: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c07: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c08: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/BS1534-11/config/BS1534-11-ISM4.yml b/experiments/characterization/BS1534-11/config/BS1534-11-ISM4.yml new file mode 100644 index 0000000000000000000000000000000000000000..3a49662f4cd2a7377ba8183ab01c3620408bd8e2 --- /dev/null +++ b/experiments/characterization/BS1534-11/config/BS1534-11-ISM4.yml @@ -0,0 +1,120 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: BS1534-11 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/BS1534-11/proc_input_ISM4" +output_path: "experiments/characterization/BS1534-11/proc_output_ISM4" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM4" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + c02: + type: lp3k5 + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### EVS conditions ### + c03: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + c04: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + ### IVAS FX conditions ### + c05: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c06: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c07: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c08: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/BS1534-11/proc_input_ISM3/.gitkeep b/experiments/characterization/BS1534-11/proc_input_ISM3/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-11/proc_input_ISM4/.gitkeep b/experiments/characterization/BS1534-11/proc_input_ISM4/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-11/proc_output_ISM3/.gitkeep b/experiments/characterization/BS1534-11/proc_output_ISM3/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-11/proc_output_ISM4/.gitkeep b/experiments/characterization/BS1534-11/proc_output_ISM4/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-12/config/BS1534-12-ISM3.yml b/experiments/characterization/BS1534-12/config/BS1534-12-ISM3.yml new file mode 100644 index 0000000000000000000000000000000000000000..1db8df6e4ab8121d33ab7871c542b0fdc3e8b811 --- /dev/null +++ b/experiments/characterization/BS1534-12/config/BS1534-12-ISM3.yml @@ -0,0 +1,120 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: BS1534-12 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/BS1534-12/proc_input_ISM3" +output_path: "experiments/characterization/BS1534-12/proc_output_ISM3" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + c02: + type: lp3k5 + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### EVS conditions ### + c03: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + c04: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + ### IVAS FX conditions ### + c05: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c06: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c07: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c08: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/BS1534-12/config/BS1534-12-ISM4.yml b/experiments/characterization/BS1534-12/config/BS1534-12-ISM4.yml new file mode 100644 index 0000000000000000000000000000000000000000..72fe060a0680ef76658b89641b6835651b8c52f4 --- /dev/null +++ b/experiments/characterization/BS1534-12/config/BS1534-12-ISM4.yml @@ -0,0 +1,120 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: BS1534-12 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/BS1534-12/proc_input_ISM4" +output_path: "experiments/characterization/BS1534-12/proc_output_ISM4" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM4" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + c02: + type: lp3k5 + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### EVS conditions ### + c03: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + c04: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + ### IVAS FX conditions ### + c05: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c06: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c07: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c08: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/BS1534-12/proc_input_ISM3/.gitkeep b/experiments/characterization/BS1534-12/proc_input_ISM3/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-12/proc_input_ISM4/.gitkeep b/experiments/characterization/BS1534-12/proc_input_ISM4/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-12/proc_output_ISM3/.gitkeep b/experiments/characterization/BS1534-12/proc_output_ISM3/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-12/proc_output_ISM4/.gitkeep b/experiments/characterization/BS1534-12/proc_output_ISM4/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-13/config/BS1534-13.yml b/experiments/characterization/BS1534-13/config/BS1534-13.yml new file mode 100644 index 0000000000000000000000000000000000000000..dc7cea26c74b6e8d8bb02dfcb31555a110a485f1 --- /dev/null +++ b/experiments/characterization/BS1534-13/config/BS1534-13.yml @@ -0,0 +1,120 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: BS1534-13 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/BS1534-13/proc_input" +output_path: "experiments/characterization/BS1534-13/proc_output" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "MASA1DIR1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + c02: + type: lp3k5 + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### EVS conditions ### + c03: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + c04: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + ### IVAS FX conditions ### + c05: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c06: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c07: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c08: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/BS1534-13/proc_input/.gitkeep b/experiments/characterization/BS1534-13/proc_input/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-13/proc_output/.gitkeep b/experiments/characterization/BS1534-13/proc_output/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-14/config/BS1534-14.yml b/experiments/characterization/BS1534-14/config/BS1534-14.yml new file mode 100644 index 0000000000000000000000000000000000000000..44cd408418a55b911ec0bf5d9e94f7477a3d4510 --- /dev/null +++ b/experiments/characterization/BS1534-14/config/BS1534-14.yml @@ -0,0 +1,120 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: BS1534-14 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/BS1534-14/proc_input" +output_path: "experiments/characterization/BS1534-14/proc_output" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "MASA1DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + c02: + type: lp3k5 + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### EVS conditions ### + c03: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + c04: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + ### IVAS FX conditions ### + c05: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c06: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c07: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c08: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/BS1534-14/proc_input/.gitkeep b/experiments/characterization/BS1534-14/proc_input/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-14/proc_output/.gitkeep b/experiments/characterization/BS1534-14/proc_output/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-15/config/BS1534-15.yml b/experiments/characterization/BS1534-15/config/BS1534-15.yml new file mode 100644 index 0000000000000000000000000000000000000000..ff0b62be764bb3cad8df0362e86e7290f1c476b8 --- /dev/null +++ b/experiments/characterization/BS1534-15/config/BS1534-15.yml @@ -0,0 +1,120 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: BS1534-15 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/BS1534-15/proc_input" +output_path: "experiments/characterization/BS1534-15/proc_output" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + c02: + type: lp3k5 + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### EVS conditions ### + c03: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + c04: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + ### IVAS FX conditions ### + c05: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c06: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c07: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c08: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/BS1534-15/proc_input/.gitkeep b/experiments/characterization/BS1534-15/proc_input/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-15/proc_output/.gitkeep b/experiments/characterization/BS1534-15/proc_output/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-16/config/BS1534-16-ISM1SBA3.yml b/experiments/characterization/BS1534-16/config/BS1534-16-ISM1SBA3.yml new file mode 100644 index 0000000000000000000000000000000000000000..7e110ca7f926854c55b9af46086d8b2f2d1317ae --- /dev/null +++ b/experiments/characterization/BS1534-16/config/BS1534-16-ISM1SBA3.yml @@ -0,0 +1,120 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: BS1534-16 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/BS1534-16/proc_input_ISM1SBA3" +output_path: "experiments/characterization/BS1534-16/proc_output_ISM1SBA3" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM1SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + c02: + type: lp3k5 + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### EVS conditions ### + c03: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + c04: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + ### IVAS FX conditions ### + c05: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c06: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c07: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c08: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/BS1534-16/config/BS1534-16-ISM2SBA3.yml b/experiments/characterization/BS1534-16/config/BS1534-16-ISM2SBA3.yml new file mode 100644 index 0000000000000000000000000000000000000000..f3f78a035127aa1a7b1c6ca61ca15b5cc697414c --- /dev/null +++ b/experiments/characterization/BS1534-16/config/BS1534-16-ISM2SBA3.yml @@ -0,0 +1,120 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: BS1534-16 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/BS1534-16/proc_input_ISM2SBA3" +output_path: "experiments/characterization/BS1534-16/proc_output_ISM2SBA3" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + c02: + type: lp3k5 + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### EVS conditions ### + c03: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + c04: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + ### IVAS FX conditions ### + c05: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c06: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c07: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c08: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/BS1534-16/config/BS1534-16-ISM3SBA3.yml b/experiments/characterization/BS1534-16/config/BS1534-16-ISM3SBA3.yml new file mode 100644 index 0000000000000000000000000000000000000000..c88edd266a134ad2a7a69b2eeb66d615a445e18d --- /dev/null +++ b/experiments/characterization/BS1534-16/config/BS1534-16-ISM3SBA3.yml @@ -0,0 +1,120 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: BS1534-16 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/BS1534-16/proc_input_ISM3SBA3" +output_path: "experiments/characterization/BS1534-16/proc_output_ISM3SBA3" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM3SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + c02: + type: lp3k5 + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### EVS conditions ### + c03: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + c04: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + ### IVAS FX conditions ### + c05: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c06: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c07: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c08: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/BS1534-16/config/BS1534-16-ISM4SBA3.yml b/experiments/characterization/BS1534-16/config/BS1534-16-ISM4SBA3.yml new file mode 100644 index 0000000000000000000000000000000000000000..29250caebe1e2706285833a99bdfeb5f465e0d52 --- /dev/null +++ b/experiments/characterization/BS1534-16/config/BS1534-16-ISM4SBA3.yml @@ -0,0 +1,120 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: BS1534-16 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/BS1534-16/proc_input_ISM4SBA3" +output_path: "experiments/characterization/BS1534-16/proc_output_ISM4SBA3" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM4SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + c02: + type: lp3k5 + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### EVS conditions ### + c03: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + c04: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + ### IVAS FX conditions ### + c05: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c06: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c07: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c08: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/BS1534-16/proc_input_ISM1SBA3/.gitkeep b/experiments/characterization/BS1534-16/proc_input_ISM1SBA3/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-16/proc_input_ISM2SBA3/.gitkeep b/experiments/characterization/BS1534-16/proc_input_ISM2SBA3/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-16/proc_input_ISM3SBA3/.gitkeep b/experiments/characterization/BS1534-16/proc_input_ISM3SBA3/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-16/proc_input_ISM4SBA3/.gitkeep b/experiments/characterization/BS1534-16/proc_input_ISM4SBA3/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-16/proc_output_ISM1SBA3/.gitkeep b/experiments/characterization/BS1534-16/proc_output_ISM1SBA3/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-16/proc_output_ISM2SBA3/.gitkeep b/experiments/characterization/BS1534-16/proc_output_ISM2SBA3/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-16/proc_output_ISM3SBA3/.gitkeep b/experiments/characterization/BS1534-16/proc_output_ISM3SBA3/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-16/proc_output_ISM4SBA3/.gitkeep b/experiments/characterization/BS1534-16/proc_output_ISM4SBA3/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-17/config/BS1534-17-ISM1SBA3.yml b/experiments/characterization/BS1534-17/config/BS1534-17-ISM1SBA3.yml new file mode 100644 index 0000000000000000000000000000000000000000..3e260e05fe5effe3948440209541f4437ef1ec49 --- /dev/null +++ b/experiments/characterization/BS1534-17/config/BS1534-17-ISM1SBA3.yml @@ -0,0 +1,120 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: BS1534-17 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/BS1534-17/proc_input_ISM1SBA3" +output_path: "experiments/characterization/BS1534-17/proc_output_ISM1SBA3" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM1SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + c02: + type: lp3k5 + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### EVS conditions ### + c03: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + c04: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + ### IVAS FX conditions ### + c05: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c06: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c07: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c08: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/BS1534-17/config/BS1534-17-ISM2SBA3.yml b/experiments/characterization/BS1534-17/config/BS1534-17-ISM2SBA3.yml new file mode 100644 index 0000000000000000000000000000000000000000..fd6d5cdd1ce742f9c8bd31d01aa05710fd3fe463 --- /dev/null +++ b/experiments/characterization/BS1534-17/config/BS1534-17-ISM2SBA3.yml @@ -0,0 +1,120 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: BS1534-17 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/BS1534-17/proc_input_ISM2SBA3" +output_path: "experiments/characterization/BS1534-17/proc_output_ISM2SBA3" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + c02: + type: lp3k5 + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### EVS conditions ### + c03: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + c04: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + ### IVAS FX conditions ### + c05: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c06: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c07: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c08: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/BS1534-17/config/BS1534-17-ISM3SBA3.yml b/experiments/characterization/BS1534-17/config/BS1534-17-ISM3SBA3.yml new file mode 100644 index 0000000000000000000000000000000000000000..e8ae0b4ab6458743c1b3202ee4a0e4230cd74813 --- /dev/null +++ b/experiments/characterization/BS1534-17/config/BS1534-17-ISM3SBA3.yml @@ -0,0 +1,120 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: BS1534-17 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/BS1534-17/proc_input_ISM3SBA3" +output_path: "experiments/characterization/BS1534-17/proc_output_ISM3SBA3" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM3SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + c02: + type: lp3k5 + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### EVS conditions ### + c03: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + c04: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + ### IVAS FX conditions ### + c05: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c06: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c07: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c08: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/BS1534-17/config/BS1534-17-ISM4SBA3.yml b/experiments/characterization/BS1534-17/config/BS1534-17-ISM4SBA3.yml new file mode 100644 index 0000000000000000000000000000000000000000..c11f2d7288c6b40e053147aee76d87b3dbc215f4 --- /dev/null +++ b/experiments/characterization/BS1534-17/config/BS1534-17-ISM4SBA3.yml @@ -0,0 +1,120 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: BS1534-17 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/BS1534-17/proc_input_ISM4SBA3" +output_path: "experiments/characterization/BS1534-17/proc_output_ISM4SBA3" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM4SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + c02: + type: lp3k5 + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### EVS conditions ### + c03: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + c04: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + ### IVAS FX conditions ### + c05: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c06: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c07: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c08: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/BS1534-17/proc_input_ISM1SBA3/.gitkeep b/experiments/characterization/BS1534-17/proc_input_ISM1SBA3/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-17/proc_input_ISM2SBA3/.gitkeep b/experiments/characterization/BS1534-17/proc_input_ISM2SBA3/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-17/proc_input_ISM3SBA3/.gitkeep b/experiments/characterization/BS1534-17/proc_input_ISM3SBA3/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-17/proc_input_ISM4SBA3/.gitkeep b/experiments/characterization/BS1534-17/proc_input_ISM4SBA3/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-17/proc_output_ISM1SBA3/.gitkeep b/experiments/characterization/BS1534-17/proc_output_ISM1SBA3/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-17/proc_output_ISM2SBA3/.gitkeep b/experiments/characterization/BS1534-17/proc_output_ISM2SBA3/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-17/proc_output_ISM3SBA3/.gitkeep b/experiments/characterization/BS1534-17/proc_output_ISM3SBA3/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-17/proc_output_ISM4SBA3/.gitkeep b/experiments/characterization/BS1534-17/proc_output_ISM4SBA3/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-18/config/BS1534-18-ISM1MASA2DIR2.yml b/experiments/characterization/BS1534-18/config/BS1534-18-ISM1MASA2DIR2.yml new file mode 100644 index 0000000000000000000000000000000000000000..142d43a323d2c1444a90437c46c9a27fbd5d61b4 --- /dev/null +++ b/experiments/characterization/BS1534-18/config/BS1534-18-ISM1MASA2DIR2.yml @@ -0,0 +1,120 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: BS1534-18 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/BS1534-18/proc_input_ISM1MASA2DIR2" +output_path: "experiments/characterization/BS1534-18/proc_output_ISM1MASA2DIR2" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM1MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + c02: + type: lp3k5 + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### EVS conditions ### + c03: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + c04: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + ### IVAS FX conditions ### + c05: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c06: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c07: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c08: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/BS1534-18/config/BS1534-18-ISM2MASA2DIR2.yml b/experiments/characterization/BS1534-18/config/BS1534-18-ISM2MASA2DIR2.yml new file mode 100644 index 0000000000000000000000000000000000000000..5619a38ac6c3de529d5c39a27413bae78878825d --- /dev/null +++ b/experiments/characterization/BS1534-18/config/BS1534-18-ISM2MASA2DIR2.yml @@ -0,0 +1,120 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: BS1534-18 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/BS1534-18/proc_input_ISM2MASA2DIR2" +output_path: "experiments/characterization/BS1534-18/proc_output_ISM2MASA2DIR2" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + c02: + type: lp3k5 + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### EVS conditions ### + c03: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + c04: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + ### IVAS FX conditions ### + c05: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c06: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c07: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c08: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/BS1534-18/config/BS1534-18-ISM3MASA2DIR2.yml b/experiments/characterization/BS1534-18/config/BS1534-18-ISM3MASA2DIR2.yml new file mode 100644 index 0000000000000000000000000000000000000000..2ee2bc6a5551120912f1f78db8bce6b75d1a5703 --- /dev/null +++ b/experiments/characterization/BS1534-18/config/BS1534-18-ISM3MASA2DIR2.yml @@ -0,0 +1,120 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: BS1534-18 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/BS1534-18/proc_input_ISM3MASA2DIR2" +output_path: "experiments/characterization/BS1534-18/proc_output_ISM3MASA2DIR2" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM3MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + c02: + type: lp3k5 + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### EVS conditions ### + c03: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + c04: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + ### IVAS FX conditions ### + c05: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c06: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c07: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c08: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/BS1534-18/config/BS1534-18-ISM4MASA2DIR2.yml b/experiments/characterization/BS1534-18/config/BS1534-18-ISM4MASA2DIR2.yml new file mode 100644 index 0000000000000000000000000000000000000000..e0f82ef13ddef7d623b6bddf4eca2ce8f59a58d9 --- /dev/null +++ b/experiments/characterization/BS1534-18/config/BS1534-18-ISM4MASA2DIR2.yml @@ -0,0 +1,120 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: BS1534-18 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/BS1534-18/proc_input_ISM4MASA2DIR2" +output_path: "experiments/characterization/BS1534-18/proc_output_ISM4MASA2DIR2" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM4MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + c02: + type: lp3k5 + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### EVS conditions ### + c03: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + c04: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + ### IVAS FX conditions ### + c05: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c06: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c07: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c08: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/BS1534-18/proc_input_ISM1MASA2DIR2/.gitkeep b/experiments/characterization/BS1534-18/proc_input_ISM1MASA2DIR2/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-18/proc_input_ISM2MASA2DIR2/.gitkeep b/experiments/characterization/BS1534-18/proc_input_ISM2MASA2DIR2/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-18/proc_input_ISM3MASA2DIR2/.gitkeep b/experiments/characterization/BS1534-18/proc_input_ISM3MASA2DIR2/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-18/proc_input_ISM4MASA2DIR2/.gitkeep b/experiments/characterization/BS1534-18/proc_input_ISM4MASA2DIR2/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-18/proc_output_ISM1MASA2DIR2/.gitkeep b/experiments/characterization/BS1534-18/proc_output_ISM1MASA2DIR2/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-18/proc_output_ISM2MASA2DIR2/.gitkeep b/experiments/characterization/BS1534-18/proc_output_ISM2MASA2DIR2/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-18/proc_output_ISM3MASA2DIR2/.gitkeep b/experiments/characterization/BS1534-18/proc_output_ISM3MASA2DIR2/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-18/proc_output_ISM4MASA2DIR2/.gitkeep b/experiments/characterization/BS1534-18/proc_output_ISM4MASA2DIR2/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-19/config/BS1534-19.yml b/experiments/characterization/BS1534-19/config/BS1534-19.yml new file mode 100644 index 0000000000000000000000000000000000000000..df5e010fe00d1030c657d84511c44f172289f138 --- /dev/null +++ b/experiments/characterization/BS1534-19/config/BS1534-19.yml @@ -0,0 +1,141 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: BS1534-19 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/BS1534-19/proc_input" +output_path: "experiments/characterization/BS1534-19/proc_output" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + c02: + type: lp3k5 + ivas_rend: + fmt: MONO + bin: ivas_processing_scripts/bin/IVAS_rend + ### Dual EVS + static dmx ### + c03: + type: evs + ivas_rend: + fmt: MONO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - - 7200 + - 7200 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + c04: + type: evs + ivas_rend: + fmt: MONO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - - 13200 + - 13200 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + ### Static dmx + EVS ### + c05: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + c06: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + ### CuT (dynamic dmx + EVS) ### + c07: + type: ivas + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -stereo_dmx_evs + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + fmt: MONO + c08: + type: ivas + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -stereo_dmx_evs + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + fmt: MONO + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/BS1534-19/proc_input/.gitkeep b/experiments/characterization/BS1534-19/proc_input/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-19/proc_output/.gitkeep b/experiments/characterization/BS1534-19/proc_output/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-2/config/BS1534-2.yml b/experiments/characterization/BS1534-2/config/BS1534-2.yml new file mode 100644 index 0000000000000000000000000000000000000000..44149bbbf759687ab1511977a7f1a26e9534e669 --- /dev/null +++ b/experiments/characterization/BS1534-2/config/BS1534-2.yml @@ -0,0 +1,120 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: BS1534-2 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/BS1534-2/proc_input" +output_path: "experiments/characterization/BS1534-2/proc_output" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + c02: + type: lp3k5 + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### EVS conditions ### + c03: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + c04: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + ### IVAS FX conditions ### + c05: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c06: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c07: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c08: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/BS1534-2/proc_input/.gitkeep b/experiments/characterization/BS1534-2/proc_input/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-2/proc_output/.gitkeep b/experiments/characterization/BS1534-2/proc_output/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-20/config/BS1534-20.yml b/experiments/characterization/BS1534-20/config/BS1534-20.yml new file mode 100644 index 0000000000000000000000000000000000000000..c482af97e6bfbfe9576bb83d298d86ec4f156283 --- /dev/null +++ b/experiments/characterization/BS1534-20/config/BS1534-20.yml @@ -0,0 +1,131 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: BS1534-20 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/BS1534-20/proc_input" +output_path: "experiments/characterization/BS1534-20/proc_output" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM4" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + opts: + - -dpid + - '0' + - '1' + - '2' + - '3' + bin: ivas_processing_scripts/bin/IVAS_rend + render_config: true + trajectory: true + c02: + type: lp3k5 + ivas_rend: + fmt: BINAURAL + opts: + - -dpid + - '0' + - '1' + - '2' + - '3' + bin: ivas_processing_scripts/bin/IVAS_rend + render_config: true + trajectory: true + ### IVAS, no ext. metadata ### + c03: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + only_3dof: true + trajectory: true + c04: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + only_3dof: true + trajectory: true + ### IVAS, extended metadata ### + c05: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + extended_metadata: true + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -dpid + - '0' + - '1' + - '2' + - '3' + render_config: true + trajectory: true + c06: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + extended_metadata: true + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -dpid + - '0' + - '1' + - '2' + - '3' + render_config: true + trajectory: true + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 diff --git a/experiments/characterization/BS1534-20/proc_input/.gitkeep b/experiments/characterization/BS1534-20/proc_input/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-20/proc_output/.gitkeep b/experiments/characterization/BS1534-20/proc_output/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-3/config/BS1534-3.yml b/experiments/characterization/BS1534-3/config/BS1534-3.yml new file mode 100644 index 0000000000000000000000000000000000000000..5ad334855442ad5120fcfe6dbb9ec24f8033b69d --- /dev/null +++ b/experiments/characterization/BS1534-3/config/BS1534-3.yml @@ -0,0 +1,120 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: BS1534-3 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/BS1534-3/proc_input" +output_path: "experiments/characterization/BS1534-3/proc_output" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + c02: + type: lp3k5 + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### EVS conditions ### + c03: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + c04: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + ### IVAS FX conditions ### + c05: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c06: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c07: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c08: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/BS1534-3/proc_input/.gitkeep b/experiments/characterization/BS1534-3/proc_input/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-3/proc_output/.gitkeep b/experiments/characterization/BS1534-3/proc_output/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-4/config/BS1534-4.yml b/experiments/characterization/BS1534-4/config/BS1534-4.yml new file mode 100644 index 0000000000000000000000000000000000000000..d74eddbe587d9f1aa8b56e0be2272aa1e9e6ed83 --- /dev/null +++ b/experiments/characterization/BS1534-4/config/BS1534-4.yml @@ -0,0 +1,120 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: BS1534-4 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/BS1534-4/proc_input" +output_path: "experiments/characterization/BS1534-4/proc_output" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + c02: + type: lp3k5 + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### EVS conditions ### + c03: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + c04: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + ### IVAS FX conditions ### + c05: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c06: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c07: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c08: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/BS1534-4/proc_input/.gitkeep b/experiments/characterization/BS1534-4/proc_input/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-4/proc_output/.gitkeep b/experiments/characterization/BS1534-4/proc_output/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-5/config/BS1534-5.yml b/experiments/characterization/BS1534-5/config/BS1534-5.yml new file mode 100644 index 0000000000000000000000000000000000000000..df99113ea630f2d26dce5cd16fff644d9196b19d --- /dev/null +++ b/experiments/characterization/BS1534-5/config/BS1534-5.yml @@ -0,0 +1,120 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: BS1534-5 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/BS1534-5/proc_input" +output_path: "experiments/characterization/BS1534-5/proc_output" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "HOA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: '7_1_4' + bin: ivas_processing_scripts/bin/IVAS_rend + c02: + type: lp3k5 + ivas_rend: + fmt: '7_1_4' + bin: ivas_processing_scripts/bin/IVAS_rend + ### EVS conditions ### + c03: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + c04: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + ### IVAS FX conditions ### + c05: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c06: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c07: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c08: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "7_1_4" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/BS1534-5/proc_input/.gitkeep b/experiments/characterization/BS1534-5/proc_input/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-5/proc_output/.gitkeep b/experiments/characterization/BS1534-5/proc_output/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-6/config/BS1534-6.yml b/experiments/characterization/BS1534-6/config/BS1534-6.yml new file mode 100644 index 0000000000000000000000000000000000000000..2b07b3f5f854334a2f48b93413f7b644c6f342ad --- /dev/null +++ b/experiments/characterization/BS1534-6/config/BS1534-6.yml @@ -0,0 +1,120 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: BS1534-6 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/BS1534-6/proc_input" +output_path: "experiments/characterization/BS1534-6/proc_output" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "5_1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: '5_1' + bin: ivas_processing_scripts/bin/IVAS_rend + c02: + type: lp3k5 + ivas_rend: + fmt: '5_1' + bin: ivas_processing_scripts/bin/IVAS_rend + ### EVS conditions ### + c03: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + c04: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + ### IVAS FX conditions ### + c05: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c06: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c07: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c08: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "5_1" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/BS1534-6/proc_input/.gitkeep b/experiments/characterization/BS1534-6/proc_input/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-6/proc_output/.gitkeep b/experiments/characterization/BS1534-6/proc_output/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-7/config/BS1534-7-5_1.yml b/experiments/characterization/BS1534-7/config/BS1534-7-5_1.yml new file mode 100644 index 0000000000000000000000000000000000000000..138f82d0a27f48b82c8a974441bc6ca4351d5fa3 --- /dev/null +++ b/experiments/characterization/BS1534-7/config/BS1534-7-5_1.yml @@ -0,0 +1,120 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: BS1534-7 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/BS1534-7/proc_input_5_1" +output_path: "experiments/characterization/BS1534-7/proc_output_5_1" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "5_1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + c02: + type: lp3k5 + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### EVS conditions ### + c03: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + c04: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + ### IVAS FX conditions ### + c05: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c06: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c07: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c08: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/BS1534-7/config/BS1534-7-7_1.yml b/experiments/characterization/BS1534-7/config/BS1534-7-7_1.yml new file mode 100644 index 0000000000000000000000000000000000000000..602165f96b5d37cf918ff6a771460883c2b3ad3a --- /dev/null +++ b/experiments/characterization/BS1534-7/config/BS1534-7-7_1.yml @@ -0,0 +1,120 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: BS1534-7 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/BS1534-7/proc_input_7_1" +output_path: "experiments/characterization/BS1534-7/proc_output_7_1" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "7_1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + c02: + type: lp3k5 + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### EVS conditions ### + c03: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + c04: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + ### IVAS FX conditions ### + c05: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c06: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c07: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c08: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/BS1534-7/proc_input_5_1/.gitkeep b/experiments/characterization/BS1534-7/proc_input_5_1/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-7/proc_input_7_1/.gitkeep b/experiments/characterization/BS1534-7/proc_input_7_1/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-7/proc_output_5_1/.gitkeep b/experiments/characterization/BS1534-7/proc_output_5_1/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-7/proc_output_7_1/.gitkeep b/experiments/characterization/BS1534-7/proc_output_7_1/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-8/config/BS1534-8-5_1_2.yml b/experiments/characterization/BS1534-8/config/BS1534-8-5_1_2.yml new file mode 100644 index 0000000000000000000000000000000000000000..26b7f1b6ed2349500767e4741f3a27573833445b --- /dev/null +++ b/experiments/characterization/BS1534-8/config/BS1534-8-5_1_2.yml @@ -0,0 +1,120 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: BS1534-8 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/BS1534-8/proc_input_5_1_2" +output_path: "experiments/characterization/BS1534-8/proc_output_5_1_2" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "5_1_2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + c02: + type: lp3k5 + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### EVS conditions ### + c03: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + c04: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + ### IVAS FX conditions ### + c05: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c06: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c07: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c08: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/BS1534-8/config/BS1534-8-5_1_4.yml b/experiments/characterization/BS1534-8/config/BS1534-8-5_1_4.yml new file mode 100644 index 0000000000000000000000000000000000000000..54624de4052453ce6272f536e76e966ee1594138 --- /dev/null +++ b/experiments/characterization/BS1534-8/config/BS1534-8-5_1_4.yml @@ -0,0 +1,120 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: BS1534-8 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/BS1534-8/proc_input_5_1_4" +output_path: "experiments/characterization/BS1534-8/proc_output_5_1_4" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "5_1_4" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + c02: + type: lp3k5 + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### EVS conditions ### + c03: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + c04: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + ### IVAS FX conditions ### + c05: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c06: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c07: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c08: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/BS1534-8/proc_input_5_1_2/.gitkeep b/experiments/characterization/BS1534-8/proc_input_5_1_2/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-8/proc_input_5_1_4/.gitkeep b/experiments/characterization/BS1534-8/proc_input_5_1_4/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-8/proc_output_5_1_2/.gitkeep b/experiments/characterization/BS1534-8/proc_output_5_1_2/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-8/proc_output_5_1_4/.gitkeep b/experiments/characterization/BS1534-8/proc_output_5_1_4/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-9/config/BS1534-9.yml b/experiments/characterization/BS1534-9/config/BS1534-9.yml new file mode 100644 index 0000000000000000000000000000000000000000..7a1e2d4cd9f3d34a9744ba5681565839468ce045 --- /dev/null +++ b/experiments/characterization/BS1534-9/config/BS1534-9.yml @@ -0,0 +1,120 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: BS1534-9 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/BS1534-9/proc_input" +output_path: "experiments/characterization/BS1534-9/proc_output" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "7_1_4" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: '7_1_4' + bin: ivas_processing_scripts/bin/IVAS_rend + c02: + type: lp3k5 + ivas_rend: + fmt: '7_1_4' + bin: ivas_processing_scripts/bin/IVAS_rend + ### EVS conditions ### + c03: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + c04: + type: evs + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/EVS_cod_fx + fmt: MONO + ivas_prerend: true + dec: + bin: ivas_processing_scripts/bin/EVS_dec_fx + ### IVAS FX conditions ### + c05: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c06: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c07: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c08: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "7_1_4" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/BS1534-9/proc_input/.gitkeep b/experiments/characterization/BS1534-9/proc_input/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/BS1534-9/proc_output/.gitkeep b/experiments/characterization/BS1534-9/proc_output/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-1/background_noise/.gitkeep b/experiments/characterization/P800-1/background_noise/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-1/config/P800-1_cat1_STEREO-16LKFS.yml b/experiments/characterization/P800-1/config/P800-1_cat1_STEREO-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..41bba25501197d36b6e76df3552b49a18787089d --- /dev/null +++ b/experiments/characterization/P800-1/config/P800-1_cat1_STEREO-16LKFS.yml @@ -0,0 +1,411 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-1 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-1/proc_input/cat1" +output_path: "experiments/characterization/P800-1/proc_output/cat1/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-1/background_noise/mp01n1.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-1/config/P800-1_cat1_STEREO-26LKFS.yml b/experiments/characterization/P800-1/config/P800-1_cat1_STEREO-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..37a7c98f07dc6b03bd4bb473ffb9d389a216e285 --- /dev/null +++ b/experiments/characterization/P800-1/config/P800-1_cat1_STEREO-26LKFS.yml @@ -0,0 +1,411 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-1 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-1/proc_input/cat1" +output_path: "experiments/characterization/P800-1/proc_output/cat1/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-1/background_noise/mp01n1.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-1/config/P800-1_cat1_STEREO-36LKFS.yml b/experiments/characterization/P800-1/config/P800-1_cat1_STEREO-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..2be5acdede5d9bed7c36f322ca15bd21da03c8c2 --- /dev/null +++ b/experiments/characterization/P800-1/config/P800-1_cat1_STEREO-36LKFS.yml @@ -0,0 +1,411 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-1 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-1/proc_input/cat1" +output_path: "experiments/characterization/P800-1/proc_output/cat1/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-1/background_noise/mp01n1.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-1/config/P800-1_cat2_STEREO-16LKFS.yml b/experiments/characterization/P800-1/config/P800-1_cat2_STEREO-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..f7c88f883efef72b182c2be130db35ff7c2f37a8 --- /dev/null +++ b/experiments/characterization/P800-1/config/P800-1_cat2_STEREO-16LKFS.yml @@ -0,0 +1,411 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-1 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-1/proc_input/cat2" +output_path: "experiments/characterization/P800-1/proc_output/cat2/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-1/background_noise/mp01n2.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-1/config/P800-1_cat2_STEREO-26LKFS.yml b/experiments/characterization/P800-1/config/P800-1_cat2_STEREO-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..f01957a23259c87101a71f7945f620a05ec6ccf4 --- /dev/null +++ b/experiments/characterization/P800-1/config/P800-1_cat2_STEREO-26LKFS.yml @@ -0,0 +1,411 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-1 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-1/proc_input/cat2" +output_path: "experiments/characterization/P800-1/proc_output/cat2/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-1/background_noise/mp01n2.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-1/config/P800-1_cat2_STEREO-36LKFS.yml b/experiments/characterization/P800-1/config/P800-1_cat2_STEREO-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..32ffda236a1aae9118ed9212563b98a4cf3df4ba --- /dev/null +++ b/experiments/characterization/P800-1/config/P800-1_cat2_STEREO-36LKFS.yml @@ -0,0 +1,411 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-1 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-1/proc_input/cat2" +output_path: "experiments/characterization/P800-1/proc_output/cat2/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-1/background_noise/mp01n2.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-1/config/P800-1_cat3_STEREO-16LKFS.yml b/experiments/characterization/P800-1/config/P800-1_cat3_STEREO-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..2729e38ef1cecc4650895bc5f21651321fa4c59c --- /dev/null +++ b/experiments/characterization/P800-1/config/P800-1_cat3_STEREO-16LKFS.yml @@ -0,0 +1,411 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-1 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-1/proc_input/cat3" +output_path: "experiments/characterization/P800-1/proc_output/cat3/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-1/background_noise/mp01n3.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-1/config/P800-1_cat3_STEREO-26LKFS.yml b/experiments/characterization/P800-1/config/P800-1_cat3_STEREO-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..d8a2ec86a6ebcb7f4bb7510917b8e7af16c4ffcf --- /dev/null +++ b/experiments/characterization/P800-1/config/P800-1_cat3_STEREO-26LKFS.yml @@ -0,0 +1,411 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-1 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-1/proc_input/cat3" +output_path: "experiments/characterization/P800-1/proc_output/cat3/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-1/background_noise/mp01n3.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-1/config/P800-1_cat3_STEREO-36LKFS.yml b/experiments/characterization/P800-1/config/P800-1_cat3_STEREO-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..d6e2cd3f3adbbcbfb9a3c303233be695909341c8 --- /dev/null +++ b/experiments/characterization/P800-1/config/P800-1_cat3_STEREO-36LKFS.yml @@ -0,0 +1,411 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-1 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-1/proc_input/cat3" +output_path: "experiments/characterization/P800-1/proc_output/cat3/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-1/background_noise/mp01n3.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-1/config/P800-1_cat4_STEREO-16LKFS.yml b/experiments/characterization/P800-1/config/P800-1_cat4_STEREO-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..a37c0831af389c6ad01aebdac9e6ea961b69a69f --- /dev/null +++ b/experiments/characterization/P800-1/config/P800-1_cat4_STEREO-16LKFS.yml @@ -0,0 +1,411 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-1 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-1/proc_input/cat4" +output_path: "experiments/characterization/P800-1/proc_output/cat4/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-1/background_noise/mp01n4.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-1/config/P800-1_cat4_STEREO-26LKFS.yml b/experiments/characterization/P800-1/config/P800-1_cat4_STEREO-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..27c3e3262c4aea70be4f0c459b9c21f0974845c7 --- /dev/null +++ b/experiments/characterization/P800-1/config/P800-1_cat4_STEREO-26LKFS.yml @@ -0,0 +1,411 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-1 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-1/proc_input/cat4" +output_path: "experiments/characterization/P800-1/proc_output/cat4/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-1/background_noise/mp01n4.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-1/config/P800-1_cat4_STEREO-36LKFS.yml b/experiments/characterization/P800-1/config/P800-1_cat4_STEREO-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..ae5c3123047200db10d2e03ab5bedcbd52ef501a --- /dev/null +++ b/experiments/characterization/P800-1/config/P800-1_cat4_STEREO-36LKFS.yml @@ -0,0 +1,411 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-1 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-1/proc_input/cat4" +output_path: "experiments/characterization/P800-1/proc_output/cat4/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-1/background_noise/mp01n4.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-1/config/P800-1_cat5_STEREO-16LKFS.yml b/experiments/characterization/P800-1/config/P800-1_cat5_STEREO-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..2ca613f652e669cd4952080f0babfaa5b0860fd5 --- /dev/null +++ b/experiments/characterization/P800-1/config/P800-1_cat5_STEREO-16LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-1 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-1/proc_input/cat5" +output_path: "experiments/characterization/P800-1/proc_output/cat5/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-1/config/P800-1_cat5_STEREO-26LKFS.yml b/experiments/characterization/P800-1/config/P800-1_cat5_STEREO-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..950f08044095e63a55819af1950c8cad3bb2da42 --- /dev/null +++ b/experiments/characterization/P800-1/config/P800-1_cat5_STEREO-26LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-1 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-1/proc_input/cat5" +output_path: "experiments/characterization/P800-1/proc_output/cat5/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-1/config/P800-1_cat5_STEREO-36LKFS.yml b/experiments/characterization/P800-1/config/P800-1_cat5_STEREO-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..d278c8dc24f060d6d89a3929b2fe36752d19a9c7 --- /dev/null +++ b/experiments/characterization/P800-1/config/P800-1_cat5_STEREO-36LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-1 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-1/proc_input/cat5" +output_path: "experiments/characterization/P800-1/proc_output/cat5/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-1/config/P800-1_cat6_STEREO-16LKFS.yml b/experiments/characterization/P800-1/config/P800-1_cat6_STEREO-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..a8529a53c0e607c4ef45359947a9211c8b7b9792 --- /dev/null +++ b/experiments/characterization/P800-1/config/P800-1_cat6_STEREO-16LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-1 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-1/proc_input/cat6" +output_path: "experiments/characterization/P800-1/proc_output/cat6/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-1/config/P800-1_cat6_STEREO-26LKFS.yml b/experiments/characterization/P800-1/config/P800-1_cat6_STEREO-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..5c352a8a51d9e7b791f119cf22258b374105b413 --- /dev/null +++ b/experiments/characterization/P800-1/config/P800-1_cat6_STEREO-26LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-1 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-1/proc_input/cat6" +output_path: "experiments/characterization/P800-1/proc_output/cat6/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-1/config/P800-1_cat6_STEREO-36LKFS.yml b/experiments/characterization/P800-1/config/P800-1_cat6_STEREO-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..55edee8bc54b059e5f3b7394f0f6032e8a07137f --- /dev/null +++ b/experiments/characterization/P800-1/config/P800-1_cat6_STEREO-36LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-1 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-1/proc_input/cat6" +output_path: "experiments/characterization/P800-1/proc_output/cat6/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-1/proc_input/cat1/.gitkeep b/experiments/characterization/P800-1/proc_input/cat1/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-1/proc_input/cat2/.gitkeep b/experiments/characterization/P800-1/proc_input/cat2/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-1/proc_input/cat3/.gitkeep b/experiments/characterization/P800-1/proc_input/cat3/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-1/proc_input/cat4/.gitkeep b/experiments/characterization/P800-1/proc_input/cat4/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-1/proc_input/cat5/.gitkeep b/experiments/characterization/P800-1/proc_input/cat5/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-1/proc_input/cat6/.gitkeep b/experiments/characterization/P800-1/proc_input/cat6/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-1/proc_output/cat1/out_-16LKFS/.gitkeep b/experiments/characterization/P800-1/proc_output/cat1/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-1/proc_output/cat1/out_-26LKFS/.gitkeep b/experiments/characterization/P800-1/proc_output/cat1/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-1/proc_output/cat1/out_-36LKFS/.gitkeep b/experiments/characterization/P800-1/proc_output/cat1/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-1/proc_output/cat2/out_-16LKFS/.gitkeep b/experiments/characterization/P800-1/proc_output/cat2/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-1/proc_output/cat2/out_-26LKFS/.gitkeep b/experiments/characterization/P800-1/proc_output/cat2/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-1/proc_output/cat2/out_-36LKFS/.gitkeep b/experiments/characterization/P800-1/proc_output/cat2/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-1/proc_output/cat3/out_-16LKFS/.gitkeep b/experiments/characterization/P800-1/proc_output/cat3/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-1/proc_output/cat3/out_-26LKFS/.gitkeep b/experiments/characterization/P800-1/proc_output/cat3/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-1/proc_output/cat3/out_-36LKFS/.gitkeep b/experiments/characterization/P800-1/proc_output/cat3/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-1/proc_output/cat4/out_-16LKFS/.gitkeep b/experiments/characterization/P800-1/proc_output/cat4/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-1/proc_output/cat4/out_-26LKFS/.gitkeep b/experiments/characterization/P800-1/proc_output/cat4/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-1/proc_output/cat4/out_-36LKFS/.gitkeep b/experiments/characterization/P800-1/proc_output/cat4/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-1/proc_output/cat5/out_-16LKFS/.gitkeep b/experiments/characterization/P800-1/proc_output/cat5/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-1/proc_output/cat5/out_-26LKFS/.gitkeep b/experiments/characterization/P800-1/proc_output/cat5/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-1/proc_output/cat5/out_-36LKFS/.gitkeep b/experiments/characterization/P800-1/proc_output/cat5/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-1/proc_output/cat6/out_-16LKFS/.gitkeep b/experiments/characterization/P800-1/proc_output/cat6/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-1/proc_output/cat6/out_-26LKFS/.gitkeep b/experiments/characterization/P800-1/proc_output/cat6/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-1/proc_output/cat6/out_-36LKFS/.gitkeep b/experiments/characterization/P800-1/proc_output/cat6/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-10/config/P800-10_cat1_ISM3-16LKFS.yml b/experiments/characterization/P800-10/config/P800-10_cat1_ISM3-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..5db8a8d5ff31a0c66c0f11e6c572ca8b5364ce0c --- /dev/null +++ b/experiments/characterization/P800-10/config/P800-10_cat1_ISM3-16LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-10 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-10/proc_input/cat1" +output_path: "experiments/characterization/P800-10/proc_output/cat1/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-10/config/P800-10_cat1_ISM3-26LKFS.yml b/experiments/characterization/P800-10/config/P800-10_cat1_ISM3-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..5d3f5f67ad4bce5330d09657d099cb142baa79dc --- /dev/null +++ b/experiments/characterization/P800-10/config/P800-10_cat1_ISM3-26LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-10 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-10/proc_input/cat1" +output_path: "experiments/characterization/P800-10/proc_output/cat1/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-10/config/P800-10_cat1_ISM3-36LKFS.yml b/experiments/characterization/P800-10/config/P800-10_cat1_ISM3-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..c0ade04e4acabd0fd3b7bfde7d4651223da6e755 --- /dev/null +++ b/experiments/characterization/P800-10/config/P800-10_cat1_ISM3-36LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-10 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-10/proc_input/cat1" +output_path: "experiments/characterization/P800-10/proc_output/cat1/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-10/config/P800-10_cat2_ISM3-16LKFS.yml b/experiments/characterization/P800-10/config/P800-10_cat2_ISM3-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..c425c9f8aaee6e5503d84f724de7c6818a4029f8 --- /dev/null +++ b/experiments/characterization/P800-10/config/P800-10_cat2_ISM3-16LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-10 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-10/proc_input/cat2" +output_path: "experiments/characterization/P800-10/proc_output/cat2/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-10/config/P800-10_cat2_ISM3-26LKFS.yml b/experiments/characterization/P800-10/config/P800-10_cat2_ISM3-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..0ed16503dbc53585412428f7498498a70b92bf76 --- /dev/null +++ b/experiments/characterization/P800-10/config/P800-10_cat2_ISM3-26LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-10 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-10/proc_input/cat2" +output_path: "experiments/characterization/P800-10/proc_output/cat2/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-10/config/P800-10_cat2_ISM3-36LKFS.yml b/experiments/characterization/P800-10/config/P800-10_cat2_ISM3-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..02e97d01e383c42c412d6e199151cf399648a911 --- /dev/null +++ b/experiments/characterization/P800-10/config/P800-10_cat2_ISM3-36LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-10 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-10/proc_input/cat2" +output_path: "experiments/characterization/P800-10/proc_output/cat2/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-10/config/P800-10_cat3_ISM3-16LKFS.yml b/experiments/characterization/P800-10/config/P800-10_cat3_ISM3-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..5f71a7f06f02001803a520ac1767455efe9f20ed --- /dev/null +++ b/experiments/characterization/P800-10/config/P800-10_cat3_ISM3-16LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-10 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-10/proc_input/cat3" +output_path: "experiments/characterization/P800-10/proc_output/cat3/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-10/config/P800-10_cat3_ISM3-26LKFS.yml b/experiments/characterization/P800-10/config/P800-10_cat3_ISM3-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..7c8e633b3c4be9c6edacdf136bac64d8bd5079e5 --- /dev/null +++ b/experiments/characterization/P800-10/config/P800-10_cat3_ISM3-26LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-10 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-10/proc_input/cat3" +output_path: "experiments/characterization/P800-10/proc_output/cat3/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-10/config/P800-10_cat3_ISM3-36LKFS.yml b/experiments/characterization/P800-10/config/P800-10_cat3_ISM3-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..3f30009506c075865c5a74677d89130b70bd2562 --- /dev/null +++ b/experiments/characterization/P800-10/config/P800-10_cat3_ISM3-36LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-10 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-10/proc_input/cat3" +output_path: "experiments/characterization/P800-10/proc_output/cat3/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-10/config/P800-10_cat4_ISM4-16LKFS.yml b/experiments/characterization/P800-10/config/P800-10_cat4_ISM4-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..681d6299ef0245b4fe6d7692d41b5e86ed1d316b --- /dev/null +++ b/experiments/characterization/P800-10/config/P800-10_cat4_ISM4-16LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-10 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-10/proc_input/cat4" +output_path: "experiments/characterization/P800-10/proc_output/cat4/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM4" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-10/config/P800-10_cat4_ISM4-26LKFS.yml b/experiments/characterization/P800-10/config/P800-10_cat4_ISM4-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..cb52f83463d7b5b13e4731b69a079f2aa48931fd --- /dev/null +++ b/experiments/characterization/P800-10/config/P800-10_cat4_ISM4-26LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-10 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-10/proc_input/cat4" +output_path: "experiments/characterization/P800-10/proc_output/cat4/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM4" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-10/config/P800-10_cat4_ISM4-36LKFS.yml b/experiments/characterization/P800-10/config/P800-10_cat4_ISM4-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..8230aee4b08e8c49e62fc02dc90cd17540cc2873 --- /dev/null +++ b/experiments/characterization/P800-10/config/P800-10_cat4_ISM4-36LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-10 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-10/proc_input/cat4" +output_path: "experiments/characterization/P800-10/proc_output/cat4/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM4" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-10/config/P800-10_cat5_ISM4-16LKFS.yml b/experiments/characterization/P800-10/config/P800-10_cat5_ISM4-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..8086bf2f9aa113abcf3f4933414b349e30a9f8da --- /dev/null +++ b/experiments/characterization/P800-10/config/P800-10_cat5_ISM4-16LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-10 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-10/proc_input/cat5" +output_path: "experiments/characterization/P800-10/proc_output/cat5/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM4" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-10/config/P800-10_cat5_ISM4-26LKFS.yml b/experiments/characterization/P800-10/config/P800-10_cat5_ISM4-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..b1261f737923d9d607494b33a4f85ed93d8854a9 --- /dev/null +++ b/experiments/characterization/P800-10/config/P800-10_cat5_ISM4-26LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-10 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-10/proc_input/cat5" +output_path: "experiments/characterization/P800-10/proc_output/cat5/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM4" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-10/config/P800-10_cat5_ISM4-36LKFS.yml b/experiments/characterization/P800-10/config/P800-10_cat5_ISM4-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..c7dea63734411580073ab5b8bc5a793df0717ed1 --- /dev/null +++ b/experiments/characterization/P800-10/config/P800-10_cat5_ISM4-36LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-10 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-10/proc_input/cat5" +output_path: "experiments/characterization/P800-10/proc_output/cat5/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM4" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-10/config/P800-10_cat6_ISM4-16LKFS.yml b/experiments/characterization/P800-10/config/P800-10_cat6_ISM4-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..59e2983cfe6c8e4efa6743a2c096612c34ab0b92 --- /dev/null +++ b/experiments/characterization/P800-10/config/P800-10_cat6_ISM4-16LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-10 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-10/proc_input/cat6" +output_path: "experiments/characterization/P800-10/proc_output/cat6/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM4" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-10/config/P800-10_cat6_ISM4-26LKFS.yml b/experiments/characterization/P800-10/config/P800-10_cat6_ISM4-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..cae09cdd2595d97bca3ace913e39c8b2423d830e --- /dev/null +++ b/experiments/characterization/P800-10/config/P800-10_cat6_ISM4-26LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-10 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-10/proc_input/cat6" +output_path: "experiments/characterization/P800-10/proc_output/cat6/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM4" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-10/config/P800-10_cat6_ISM4-36LKFS.yml b/experiments/characterization/P800-10/config/P800-10_cat6_ISM4-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..971532b03f1fa50b65a545c4894def227c781217 --- /dev/null +++ b/experiments/characterization/P800-10/config/P800-10_cat6_ISM4-36LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-10 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-10/proc_input/cat6" +output_path: "experiments/characterization/P800-10/proc_output/cat6/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM4" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-10/proc_input/cat1/.gitkeep b/experiments/characterization/P800-10/proc_input/cat1/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-10/proc_input/cat2/.gitkeep b/experiments/characterization/P800-10/proc_input/cat2/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-10/proc_input/cat3/.gitkeep b/experiments/characterization/P800-10/proc_input/cat3/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-10/proc_input/cat4/.gitkeep b/experiments/characterization/P800-10/proc_input/cat4/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-10/proc_input/cat5/.gitkeep b/experiments/characterization/P800-10/proc_input/cat5/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-10/proc_input/cat6/.gitkeep b/experiments/characterization/P800-10/proc_input/cat6/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-10/proc_output/cat1/out_-16LKFS/.gitkeep b/experiments/characterization/P800-10/proc_output/cat1/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-10/proc_output/cat1/out_-26LKFS/.gitkeep b/experiments/characterization/P800-10/proc_output/cat1/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-10/proc_output/cat1/out_-36LKFS/.gitkeep b/experiments/characterization/P800-10/proc_output/cat1/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-10/proc_output/cat2/out_-16LKFS/.gitkeep b/experiments/characterization/P800-10/proc_output/cat2/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-10/proc_output/cat2/out_-26LKFS/.gitkeep b/experiments/characterization/P800-10/proc_output/cat2/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-10/proc_output/cat2/out_-36LKFS/.gitkeep b/experiments/characterization/P800-10/proc_output/cat2/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-10/proc_output/cat3/out_-16LKFS/.gitkeep b/experiments/characterization/P800-10/proc_output/cat3/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-10/proc_output/cat3/out_-26LKFS/.gitkeep b/experiments/characterization/P800-10/proc_output/cat3/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-10/proc_output/cat3/out_-36LKFS/.gitkeep b/experiments/characterization/P800-10/proc_output/cat3/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-10/proc_output/cat4/out_-16LKFS/.gitkeep b/experiments/characterization/P800-10/proc_output/cat4/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-10/proc_output/cat4/out_-26LKFS/.gitkeep b/experiments/characterization/P800-10/proc_output/cat4/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-10/proc_output/cat4/out_-36LKFS/.gitkeep b/experiments/characterization/P800-10/proc_output/cat4/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-10/proc_output/cat5/out_-16LKFS/.gitkeep b/experiments/characterization/P800-10/proc_output/cat5/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-10/proc_output/cat5/out_-26LKFS/.gitkeep b/experiments/characterization/P800-10/proc_output/cat5/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-10/proc_output/cat5/out_-36LKFS/.gitkeep b/experiments/characterization/P800-10/proc_output/cat5/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-10/proc_output/cat6/out_-16LKFS/.gitkeep b/experiments/characterization/P800-10/proc_output/cat6/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-10/proc_output/cat6/out_-26LKFS/.gitkeep b/experiments/characterization/P800-10/proc_output/cat6/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-10/proc_output/cat6/out_-36LKFS/.gitkeep b/experiments/characterization/P800-10/proc_output/cat6/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-11/config/P800-11_cat1_ISM1-16LKFS.yml b/experiments/characterization/P800-11/config/P800-11_cat1_ISM1-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..8c04fba0ea878744c6806480941064478341066a --- /dev/null +++ b/experiments/characterization/P800-11/config/P800-11_cat1_ISM1-16LKFS.yml @@ -0,0 +1,462 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-11 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-11/proc_input/cat1" +output_path: "experiments/characterization/P800-11/proc_output/cat1/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-11/config/P800-11_cat1_ISM1-26LKFS.yml b/experiments/characterization/P800-11/config/P800-11_cat1_ISM1-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..21807b6d9007aa78f306237175a7733bb88cb2f4 --- /dev/null +++ b/experiments/characterization/P800-11/config/P800-11_cat1_ISM1-26LKFS.yml @@ -0,0 +1,462 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-11 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-11/proc_input/cat1" +output_path: "experiments/characterization/P800-11/proc_output/cat1/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-11/config/P800-11_cat1_ISM1-36LKFS.yml b/experiments/characterization/P800-11/config/P800-11_cat1_ISM1-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..85f142f473aee71f904cfeafb19169e0017039f5 --- /dev/null +++ b/experiments/characterization/P800-11/config/P800-11_cat1_ISM1-36LKFS.yml @@ -0,0 +1,462 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-11 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-11/proc_input/cat1" +output_path: "experiments/characterization/P800-11/proc_output/cat1/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-11/config/P800-11_cat2_ISM1-16LKFS.yml b/experiments/characterization/P800-11/config/P800-11_cat2_ISM1-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..80f1f2c0482e6347b43a7c8a14a15218aad1a469 --- /dev/null +++ b/experiments/characterization/P800-11/config/P800-11_cat2_ISM1-16LKFS.yml @@ -0,0 +1,462 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-11 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-11/proc_input/cat2" +output_path: "experiments/characterization/P800-11/proc_output/cat2/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-11/config/P800-11_cat2_ISM1-26LKFS.yml b/experiments/characterization/P800-11/config/P800-11_cat2_ISM1-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..d63e8e45706ab9fb8c18aa5ec30f24692364cb11 --- /dev/null +++ b/experiments/characterization/P800-11/config/P800-11_cat2_ISM1-26LKFS.yml @@ -0,0 +1,462 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-11 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-11/proc_input/cat2" +output_path: "experiments/characterization/P800-11/proc_output/cat2/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-11/config/P800-11_cat2_ISM1-36LKFS.yml b/experiments/characterization/P800-11/config/P800-11_cat2_ISM1-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..04202868f5e5789e4e22b186a79b837bf268ae1f --- /dev/null +++ b/experiments/characterization/P800-11/config/P800-11_cat2_ISM1-36LKFS.yml @@ -0,0 +1,462 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-11 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-11/proc_input/cat2" +output_path: "experiments/characterization/P800-11/proc_output/cat2/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-11/config/P800-11_cat3_ISM2-16LKFS.yml b/experiments/characterization/P800-11/config/P800-11_cat3_ISM2-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..036c3a7d10d3c9d2cdf44315fd79c965c697340e --- /dev/null +++ b/experiments/characterization/P800-11/config/P800-11_cat3_ISM2-16LKFS.yml @@ -0,0 +1,462 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-11 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-11/proc_input/cat3" +output_path: "experiments/characterization/P800-11/proc_output/cat3/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-11/config/P800-11_cat3_ISM2-26LKFS.yml b/experiments/characterization/P800-11/config/P800-11_cat3_ISM2-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..f62e633863865a612299dd6fbdd65170e7541eb6 --- /dev/null +++ b/experiments/characterization/P800-11/config/P800-11_cat3_ISM2-26LKFS.yml @@ -0,0 +1,462 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-11 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-11/proc_input/cat3" +output_path: "experiments/characterization/P800-11/proc_output/cat3/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-11/config/P800-11_cat3_ISM2-36LKFS.yml b/experiments/characterization/P800-11/config/P800-11_cat3_ISM2-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..bd114d1e6b6f09fa02308bc0e4ec8997cd280253 --- /dev/null +++ b/experiments/characterization/P800-11/config/P800-11_cat3_ISM2-36LKFS.yml @@ -0,0 +1,462 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-11 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-11/proc_input/cat3" +output_path: "experiments/characterization/P800-11/proc_output/cat3/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-11/config/P800-11_cat4_ISM2-16LKFS.yml b/experiments/characterization/P800-11/config/P800-11_cat4_ISM2-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..b96b600235018cc38e1d25f493f741f763ee043c --- /dev/null +++ b/experiments/characterization/P800-11/config/P800-11_cat4_ISM2-16LKFS.yml @@ -0,0 +1,462 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-11 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-11/proc_input/cat4" +output_path: "experiments/characterization/P800-11/proc_output/cat4/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-11/config/P800-11_cat4_ISM2-26LKFS.yml b/experiments/characterization/P800-11/config/P800-11_cat4_ISM2-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..b4ad6c660bd1da89779426cb54fcd3b86cfb139d --- /dev/null +++ b/experiments/characterization/P800-11/config/P800-11_cat4_ISM2-26LKFS.yml @@ -0,0 +1,462 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-11 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-11/proc_input/cat4" +output_path: "experiments/characterization/P800-11/proc_output/cat4/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-11/config/P800-11_cat4_ISM2-36LKFS.yml b/experiments/characterization/P800-11/config/P800-11_cat4_ISM2-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..ef6c122c14429a5caff5afeb8f06204aac2d9511 --- /dev/null +++ b/experiments/characterization/P800-11/config/P800-11_cat4_ISM2-36LKFS.yml @@ -0,0 +1,462 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-11 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-11/proc_input/cat4" +output_path: "experiments/characterization/P800-11/proc_output/cat4/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-11/config/P800-11_cat5_ISM3-16LKFS.yml b/experiments/characterization/P800-11/config/P800-11_cat5_ISM3-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..63535eaa2b7a17b1646226ff7363601fe561023b --- /dev/null +++ b/experiments/characterization/P800-11/config/P800-11_cat5_ISM3-16LKFS.yml @@ -0,0 +1,462 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-11 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-11/proc_input/cat5" +output_path: "experiments/characterization/P800-11/proc_output/cat5/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-11/config/P800-11_cat5_ISM3-26LKFS.yml b/experiments/characterization/P800-11/config/P800-11_cat5_ISM3-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..6fef9102cc23000bf88c4c19104a1ad26ec86f29 --- /dev/null +++ b/experiments/characterization/P800-11/config/P800-11_cat5_ISM3-26LKFS.yml @@ -0,0 +1,462 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-11 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-11/proc_input/cat5" +output_path: "experiments/characterization/P800-11/proc_output/cat5/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-11/config/P800-11_cat5_ISM3-36LKFS.yml b/experiments/characterization/P800-11/config/P800-11_cat5_ISM3-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..ac2d6ce92cc00984d535b445af008ab5163be8cc --- /dev/null +++ b/experiments/characterization/P800-11/config/P800-11_cat5_ISM3-36LKFS.yml @@ -0,0 +1,462 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-11 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-11/proc_input/cat5" +output_path: "experiments/characterization/P800-11/proc_output/cat5/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-11/config/P800-11_cat6_ISM4-16LKFS.yml b/experiments/characterization/P800-11/config/P800-11_cat6_ISM4-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..959861b6858250952d7963f94d86ee2964d7e887 --- /dev/null +++ b/experiments/characterization/P800-11/config/P800-11_cat6_ISM4-16LKFS.yml @@ -0,0 +1,462 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-11 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-11/proc_input/cat6" +output_path: "experiments/characterization/P800-11/proc_output/cat6/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM4" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-11/config/P800-11_cat6_ISM4-26LKFS.yml b/experiments/characterization/P800-11/config/P800-11_cat6_ISM4-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..6d4e94420da1b77304bc38fe69094a0c42bf38ea --- /dev/null +++ b/experiments/characterization/P800-11/config/P800-11_cat6_ISM4-26LKFS.yml @@ -0,0 +1,462 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-11 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-11/proc_input/cat6" +output_path: "experiments/characterization/P800-11/proc_output/cat6/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM4" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-11/config/P800-11_cat6_ISM4-36LKFS.yml b/experiments/characterization/P800-11/config/P800-11_cat6_ISM4-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..a1003796f3d1bbad30e2d1dc1a19784e7b0f47d0 --- /dev/null +++ b/experiments/characterization/P800-11/config/P800-11_cat6_ISM4-36LKFS.yml @@ -0,0 +1,462 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-11 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-11/proc_input/cat6" +output_path: "experiments/characterization/P800-11/proc_output/cat6/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM4" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-11/proc_input/cat1/.gitkeep b/experiments/characterization/P800-11/proc_input/cat1/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-11/proc_input/cat2/.gitkeep b/experiments/characterization/P800-11/proc_input/cat2/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-11/proc_input/cat3/.gitkeep b/experiments/characterization/P800-11/proc_input/cat3/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-11/proc_input/cat4/.gitkeep b/experiments/characterization/P800-11/proc_input/cat4/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-11/proc_input/cat5/.gitkeep b/experiments/characterization/P800-11/proc_input/cat5/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-11/proc_input/cat6/.gitkeep b/experiments/characterization/P800-11/proc_input/cat6/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-11/proc_output/cat1/out_-16LKFS/.gitkeep b/experiments/characterization/P800-11/proc_output/cat1/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-11/proc_output/cat1/out_-26LKFS/.gitkeep b/experiments/characterization/P800-11/proc_output/cat1/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-11/proc_output/cat1/out_-36LKFS/.gitkeep b/experiments/characterization/P800-11/proc_output/cat1/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-11/proc_output/cat2/out_-16LKFS/.gitkeep b/experiments/characterization/P800-11/proc_output/cat2/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-11/proc_output/cat2/out_-26LKFS/.gitkeep b/experiments/characterization/P800-11/proc_output/cat2/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-11/proc_output/cat2/out_-36LKFS/.gitkeep b/experiments/characterization/P800-11/proc_output/cat2/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-11/proc_output/cat3/out_-16LKFS/.gitkeep b/experiments/characterization/P800-11/proc_output/cat3/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-11/proc_output/cat3/out_-26LKFS/.gitkeep b/experiments/characterization/P800-11/proc_output/cat3/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-11/proc_output/cat3/out_-36LKFS/.gitkeep b/experiments/characterization/P800-11/proc_output/cat3/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-11/proc_output/cat4/out_-16LKFS/.gitkeep b/experiments/characterization/P800-11/proc_output/cat4/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-11/proc_output/cat4/out_-26LKFS/.gitkeep b/experiments/characterization/P800-11/proc_output/cat4/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-11/proc_output/cat4/out_-36LKFS/.gitkeep b/experiments/characterization/P800-11/proc_output/cat4/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-12/background_noise/.gitkeep b/experiments/characterization/P800-12/background_noise/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-12/config/P800-12_cat1_HOA2-16LKFS.yml b/experiments/characterization/P800-12/config/P800-12_cat1_HOA2-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..1d4b412a0e8a4c7b7b40f827c06296dbedb5a76b --- /dev/null +++ b/experiments/characterization/P800-12/config/P800-12_cat1_HOA2-16LKFS.yml @@ -0,0 +1,357 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-12 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-12/proc_input/cat1" +output_path: "experiments/characterization/P800-12/proc_output/cat1/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "HOA2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-12/background_noise/fp12n1.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-12/config/P800-12_cat1_HOA2-26LKFS.yml b/experiments/characterization/P800-12/config/P800-12_cat1_HOA2-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..bff30a75d6e7c7e23bb74195485a2e5d8535cf05 --- /dev/null +++ b/experiments/characterization/P800-12/config/P800-12_cat1_HOA2-26LKFS.yml @@ -0,0 +1,357 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-12 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-12/proc_input/cat1" +output_path: "experiments/characterization/P800-12/proc_output/cat1/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "HOA2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-12/background_noise/fp12n1.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-12/config/P800-12_cat1_HOA2-36LKFS.yml b/experiments/characterization/P800-12/config/P800-12_cat1_HOA2-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..2775ef1da8a00f3c05c60adc069b6e86ee82cec1 --- /dev/null +++ b/experiments/characterization/P800-12/config/P800-12_cat1_HOA2-36LKFS.yml @@ -0,0 +1,357 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-12 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-12/proc_input/cat1" +output_path: "experiments/characterization/P800-12/proc_output/cat1/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "HOA2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-12/background_noise/fp12n1.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-12/config/P800-12_cat2_FOA-16LKFS.yml b/experiments/characterization/P800-12/config/P800-12_cat2_FOA-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..f5d481dfe92e45274f15dd8fca8fe13b14f883b9 --- /dev/null +++ b/experiments/characterization/P800-12/config/P800-12_cat2_FOA-16LKFS.yml @@ -0,0 +1,357 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-12 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-12/proc_input/cat2" +output_path: "experiments/characterization/P800-12/proc_output/cat2/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-12/background_noise/fp12n2.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-12/config/P800-12_cat2_FOA-26LKFS.yml b/experiments/characterization/P800-12/config/P800-12_cat2_FOA-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..ac457e83497d578c9fdd366f2fedc376d4214775 --- /dev/null +++ b/experiments/characterization/P800-12/config/P800-12_cat2_FOA-26LKFS.yml @@ -0,0 +1,357 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-12 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-12/proc_input/cat2" +output_path: "experiments/characterization/P800-12/proc_output/cat2/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-12/background_noise/fp12n2.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-12/config/P800-12_cat2_FOA-36LKFS.yml b/experiments/characterization/P800-12/config/P800-12_cat2_FOA-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..6ecd21d535fba9ee82a0a06679102b9786efcb8c --- /dev/null +++ b/experiments/characterization/P800-12/config/P800-12_cat2_FOA-36LKFS.yml @@ -0,0 +1,357 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-12 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-12/proc_input/cat2" +output_path: "experiments/characterization/P800-12/proc_output/cat2/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-12/background_noise/fp12n2.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-12/config/P800-12_cat3_FOA-16LKFS.yml b/experiments/characterization/P800-12/config/P800-12_cat3_FOA-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..8bb279b5d1f9101ea68a3eb9eebabe5e229172a8 --- /dev/null +++ b/experiments/characterization/P800-12/config/P800-12_cat3_FOA-16LKFS.yml @@ -0,0 +1,357 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-12 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-12/proc_input/cat3" +output_path: "experiments/characterization/P800-12/proc_output/cat3/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-12/background_noise/fp12n3.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-12/config/P800-12_cat3_FOA-26LKFS.yml b/experiments/characterization/P800-12/config/P800-12_cat3_FOA-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..538e80716305ae6faf993dae854ecc6556c472eb --- /dev/null +++ b/experiments/characterization/P800-12/config/P800-12_cat3_FOA-26LKFS.yml @@ -0,0 +1,357 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-12 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-12/proc_input/cat3" +output_path: "experiments/characterization/P800-12/proc_output/cat3/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-12/background_noise/fp12n3.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-12/config/P800-12_cat3_FOA-36LKFS.yml b/experiments/characterization/P800-12/config/P800-12_cat3_FOA-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..f9a75409759881f27cfeb2204d609d9bb3683cc3 --- /dev/null +++ b/experiments/characterization/P800-12/config/P800-12_cat3_FOA-36LKFS.yml @@ -0,0 +1,357 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-12 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-12/proc_input/cat3" +output_path: "experiments/characterization/P800-12/proc_output/cat3/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-12/background_noise/fp12n3.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-12/config/P800-12_cat4_FOA-16LKFS.yml b/experiments/characterization/P800-12/config/P800-12_cat4_FOA-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..ac74bc28b79604fc6521ac285947be62a6737eab --- /dev/null +++ b/experiments/characterization/P800-12/config/P800-12_cat4_FOA-16LKFS.yml @@ -0,0 +1,357 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-12 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-12/proc_input/cat4" +output_path: "experiments/characterization/P800-12/proc_output/cat4/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-12/background_noise/fp12n4.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-12/config/P800-12_cat4_FOA-26LKFS.yml b/experiments/characterization/P800-12/config/P800-12_cat4_FOA-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..71d4e414edefa581c4178055ff270b6ac21c4b9f --- /dev/null +++ b/experiments/characterization/P800-12/config/P800-12_cat4_FOA-26LKFS.yml @@ -0,0 +1,357 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-12 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-12/proc_input/cat4" +output_path: "experiments/characterization/P800-12/proc_output/cat4/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-12/background_noise/fp12n4.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-12/config/P800-12_cat4_FOA-36LKFS.yml b/experiments/characterization/P800-12/config/P800-12_cat4_FOA-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..68b539eec2c4bdb1dcb296209414f0280f311bd8 --- /dev/null +++ b/experiments/characterization/P800-12/config/P800-12_cat4_FOA-36LKFS.yml @@ -0,0 +1,357 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-12 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-12/proc_input/cat4" +output_path: "experiments/characterization/P800-12/proc_output/cat4/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-12/background_noise/fp12n4.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-12/config/P800-12_cat5_MASA1DIR1-16LKFS.yml b/experiments/characterization/P800-12/config/P800-12_cat5_MASA1DIR1-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..594cd3d3e226d20b0feecfcb050f7fd83b542774 --- /dev/null +++ b/experiments/characterization/P800-12/config/P800-12_cat5_MASA1DIR1-16LKFS.yml @@ -0,0 +1,354 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-12 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-12/proc_input/cat5" +output_path: "experiments/characterization/P800-12/proc_output/cat5/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "MASA1DIR1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-12/config/P800-12_cat5_MASA1DIR1-26LKFS.yml b/experiments/characterization/P800-12/config/P800-12_cat5_MASA1DIR1-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..b44e6e8539d67894b538c94e6deee122a87e424c --- /dev/null +++ b/experiments/characterization/P800-12/config/P800-12_cat5_MASA1DIR1-26LKFS.yml @@ -0,0 +1,354 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-12 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-12/proc_input/cat5" +output_path: "experiments/characterization/P800-12/proc_output/cat5/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "MASA1DIR1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-12/config/P800-12_cat5_MASA1DIR1-36LKFS.yml b/experiments/characterization/P800-12/config/P800-12_cat5_MASA1DIR1-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..f318c5384ef6421c3ea92201a5d488d240bacf97 --- /dev/null +++ b/experiments/characterization/P800-12/config/P800-12_cat5_MASA1DIR1-36LKFS.yml @@ -0,0 +1,354 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-12 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-12/proc_input/cat5" +output_path: "experiments/characterization/P800-12/proc_output/cat5/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "MASA1DIR1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-12/config/P800-12_cat6_MASA1DIR2-16LKFS.yml b/experiments/characterization/P800-12/config/P800-12_cat6_MASA1DIR2-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..e9cf4332622b5a7420ff365d3450d69e227df7ba --- /dev/null +++ b/experiments/characterization/P800-12/config/P800-12_cat6_MASA1DIR2-16LKFS.yml @@ -0,0 +1,354 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-12 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-12/proc_input/cat6" +output_path: "experiments/characterization/P800-12/proc_output/cat6/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "MASA1DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-12/config/P800-12_cat6_MASA1DIR2-26LKFS.yml b/experiments/characterization/P800-12/config/P800-12_cat6_MASA1DIR2-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..eb89656cde5f2a7dd47c0c1f7c7240d65086c4c0 --- /dev/null +++ b/experiments/characterization/P800-12/config/P800-12_cat6_MASA1DIR2-26LKFS.yml @@ -0,0 +1,354 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-12 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-12/proc_input/cat6" +output_path: "experiments/characterization/P800-12/proc_output/cat6/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "MASA1DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-12/config/P800-12_cat6_MASA1DIR2-36LKFS.yml b/experiments/characterization/P800-12/config/P800-12_cat6_MASA1DIR2-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..86eba5f585559a1d85fa70db8e16883a053e1ff4 --- /dev/null +++ b/experiments/characterization/P800-12/config/P800-12_cat6_MASA1DIR2-36LKFS.yml @@ -0,0 +1,354 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-12 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-12/proc_input/cat6" +output_path: "experiments/characterization/P800-12/proc_output/cat6/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "MASA1DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-12/proc_input/cat1/.gitkeep b/experiments/characterization/P800-12/proc_input/cat1/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-12/proc_input/cat2/.gitkeep b/experiments/characterization/P800-12/proc_input/cat2/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-12/proc_input/cat3/.gitkeep b/experiments/characterization/P800-12/proc_input/cat3/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-12/proc_input/cat4/.gitkeep b/experiments/characterization/P800-12/proc_input/cat4/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-12/proc_input/cat5/.gitkeep b/experiments/characterization/P800-12/proc_input/cat5/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-12/proc_input/cat6/.gitkeep b/experiments/characterization/P800-12/proc_input/cat6/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-12/proc_output/cat1/out_-16LKFS/.gitkeep b/experiments/characterization/P800-12/proc_output/cat1/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-12/proc_output/cat1/out_-26LKFS/.gitkeep b/experiments/characterization/P800-12/proc_output/cat1/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-12/proc_output/cat1/out_-36LKFS/.gitkeep b/experiments/characterization/P800-12/proc_output/cat1/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-12/proc_output/cat2/out_-16LKFS/.gitkeep b/experiments/characterization/P800-12/proc_output/cat2/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-12/proc_output/cat2/out_-26LKFS/.gitkeep b/experiments/characterization/P800-12/proc_output/cat2/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-12/proc_output/cat2/out_-36LKFS/.gitkeep b/experiments/characterization/P800-12/proc_output/cat2/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-12/proc_output/cat3/out_-16LKFS/.gitkeep b/experiments/characterization/P800-12/proc_output/cat3/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-12/proc_output/cat3/out_-26LKFS/.gitkeep b/experiments/characterization/P800-12/proc_output/cat3/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-12/proc_output/cat3/out_-36LKFS/.gitkeep b/experiments/characterization/P800-12/proc_output/cat3/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-12/proc_output/cat4/out_-16LKFS/.gitkeep b/experiments/characterization/P800-12/proc_output/cat4/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-12/proc_output/cat4/out_-26LKFS/.gitkeep b/experiments/characterization/P800-12/proc_output/cat4/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-12/proc_output/cat4/out_-36LKFS/.gitkeep b/experiments/characterization/P800-12/proc_output/cat4/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-12/proc_output/cat5/out_-16LKFS/.gitkeep b/experiments/characterization/P800-12/proc_output/cat5/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-12/proc_output/cat5/out_-26LKFS/.gitkeep b/experiments/characterization/P800-12/proc_output/cat5/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-12/proc_output/cat5/out_-36LKFS/.gitkeep b/experiments/characterization/P800-12/proc_output/cat5/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-12/proc_output/cat6/out_-16LKFS/.gitkeep b/experiments/characterization/P800-12/proc_output/cat6/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-12/proc_output/cat6/out_-26LKFS/.gitkeep b/experiments/characterization/P800-12/proc_output/cat6/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-12/proc_output/cat6/out_-36LKFS/.gitkeep b/experiments/characterization/P800-12/proc_output/cat6/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-13/background_noise/.gitkeep b/experiments/characterization/P800-13/background_noise/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-13/config/P800-13_cat1_HOA2-16LKFS.yml b/experiments/characterization/P800-13/config/P800-13_cat1_HOA2-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..4795fd342d42bee8ef36ebfa6c2ee50d42aa9d0a --- /dev/null +++ b/experiments/characterization/P800-13/config/P800-13_cat1_HOA2-16LKFS.yml @@ -0,0 +1,357 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-13 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-13/proc_input/cat1" +output_path: "experiments/characterization/P800-13/proc_output/cat1/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "HOA2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-13/background_noise/cp13n1.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-13/config/P800-13_cat1_HOA2-26LKFS.yml b/experiments/characterization/P800-13/config/P800-13_cat1_HOA2-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..3edbbfd823abc4d450916855d1d3048cf47c3a12 --- /dev/null +++ b/experiments/characterization/P800-13/config/P800-13_cat1_HOA2-26LKFS.yml @@ -0,0 +1,357 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-13 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-13/proc_input/cat1" +output_path: "experiments/characterization/P800-13/proc_output/cat1/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "HOA2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-13/background_noise/cp13n1.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-13/config/P800-13_cat1_HOA2-36LKFS.yml b/experiments/characterization/P800-13/config/P800-13_cat1_HOA2-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..7fdf7cbf0446de3f5b5bef91a5bac8dd9521e86b --- /dev/null +++ b/experiments/characterization/P800-13/config/P800-13_cat1_HOA2-36LKFS.yml @@ -0,0 +1,357 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-13 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-13/proc_input/cat1" +output_path: "experiments/characterization/P800-13/proc_output/cat1/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "HOA2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-13/background_noise/cp13n1.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-13/config/P800-13_cat2_FOA-16LKFS.yml b/experiments/characterization/P800-13/config/P800-13_cat2_FOA-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..f07c9f21de69c05720906afc610fb388843bacab --- /dev/null +++ b/experiments/characterization/P800-13/config/P800-13_cat2_FOA-16LKFS.yml @@ -0,0 +1,357 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-13 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-13/proc_input/cat2" +output_path: "experiments/characterization/P800-13/proc_output/cat2/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-13/background_noise/cp13n2.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-13/config/P800-13_cat2_FOA-26LKFS.yml b/experiments/characterization/P800-13/config/P800-13_cat2_FOA-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..f2e15516b8acde4b037c720ce1a5c98d676089c7 --- /dev/null +++ b/experiments/characterization/P800-13/config/P800-13_cat2_FOA-26LKFS.yml @@ -0,0 +1,357 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-13 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-13/proc_input/cat2" +output_path: "experiments/characterization/P800-13/proc_output/cat2/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-13/background_noise/cp13n2.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-13/config/P800-13_cat2_FOA-36LKFS.yml b/experiments/characterization/P800-13/config/P800-13_cat2_FOA-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..f2d6322d04ea558019e829b35ca88b94e7125670 --- /dev/null +++ b/experiments/characterization/P800-13/config/P800-13_cat2_FOA-36LKFS.yml @@ -0,0 +1,357 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-13 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-13/proc_input/cat2" +output_path: "experiments/characterization/P800-13/proc_output/cat2/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-13/background_noise/cp13n2.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-13/config/P800-13_cat3_FOA-16LKFS.yml b/experiments/characterization/P800-13/config/P800-13_cat3_FOA-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..e9147d0a5d24fc14605521fee4ff71bb95fc92d7 --- /dev/null +++ b/experiments/characterization/P800-13/config/P800-13_cat3_FOA-16LKFS.yml @@ -0,0 +1,357 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-13 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-13/proc_input/cat3" +output_path: "experiments/characterization/P800-13/proc_output/cat3/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-13/background_noise/cp13n3.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-13/config/P800-13_cat3_FOA-26LKFS.yml b/experiments/characterization/P800-13/config/P800-13_cat3_FOA-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..a3d475221a483fe9cf017c4be936c1a992807c7f --- /dev/null +++ b/experiments/characterization/P800-13/config/P800-13_cat3_FOA-26LKFS.yml @@ -0,0 +1,357 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-13 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-13/proc_input/cat3" +output_path: "experiments/characterization/P800-13/proc_output/cat3/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-13/background_noise/cp13n3.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-13/config/P800-13_cat3_FOA-36LKFS.yml b/experiments/characterization/P800-13/config/P800-13_cat3_FOA-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..cc330965de27c71fb5fb8e9385ac4e72ded4b96d --- /dev/null +++ b/experiments/characterization/P800-13/config/P800-13_cat3_FOA-36LKFS.yml @@ -0,0 +1,357 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-13 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-13/proc_input/cat3" +output_path: "experiments/characterization/P800-13/proc_output/cat3/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-13/background_noise/cp13n3.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-13/config/P800-13_cat4_FOA-16LKFS.yml b/experiments/characterization/P800-13/config/P800-13_cat4_FOA-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..387fffd028e2c6a2d2b9f1a746e8672635af6cae --- /dev/null +++ b/experiments/characterization/P800-13/config/P800-13_cat4_FOA-16LKFS.yml @@ -0,0 +1,357 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-13 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-13/proc_input/cat4" +output_path: "experiments/characterization/P800-13/proc_output/cat4/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-13/background_noise/cp13n4.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-13/config/P800-13_cat4_FOA-26LKFS.yml b/experiments/characterization/P800-13/config/P800-13_cat4_FOA-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..e4148d3b0a0415fc9aae05a353f19720446b45d8 --- /dev/null +++ b/experiments/characterization/P800-13/config/P800-13_cat4_FOA-26LKFS.yml @@ -0,0 +1,357 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-13 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-13/proc_input/cat4" +output_path: "experiments/characterization/P800-13/proc_output/cat4/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-13/background_noise/cp13n4.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-13/config/P800-13_cat4_FOA-36LKFS.yml b/experiments/characterization/P800-13/config/P800-13_cat4_FOA-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..cfe56286b544c476864abca49a7076fbfdfb4b30 --- /dev/null +++ b/experiments/characterization/P800-13/config/P800-13_cat4_FOA-36LKFS.yml @@ -0,0 +1,357 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-13 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-13/proc_input/cat4" +output_path: "experiments/characterization/P800-13/proc_output/cat4/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-13/background_noise/cp13n4.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-13/config/P800-13_cat5_MASA2DIR1-16LKFS.yml b/experiments/characterization/P800-13/config/P800-13_cat5_MASA2DIR1-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..afbf5cbd722c714b0af26b0f1f24782e58474022 --- /dev/null +++ b/experiments/characterization/P800-13/config/P800-13_cat5_MASA2DIR1-16LKFS.yml @@ -0,0 +1,354 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-13 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-13/proc_input/cat5" +output_path: "experiments/characterization/P800-13/proc_output/cat5/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "MASA2DIR1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-13/config/P800-13_cat5_MASA2DIR1-26LKFS.yml b/experiments/characterization/P800-13/config/P800-13_cat5_MASA2DIR1-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..92bbf8cee5525efa7424bbd252d1dd841156f860 --- /dev/null +++ b/experiments/characterization/P800-13/config/P800-13_cat5_MASA2DIR1-26LKFS.yml @@ -0,0 +1,354 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-13 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-13/proc_input/cat5" +output_path: "experiments/characterization/P800-13/proc_output/cat5/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "MASA2DIR1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-13/config/P800-13_cat5_MASA2DIR1-36LKFS.yml b/experiments/characterization/P800-13/config/P800-13_cat5_MASA2DIR1-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..9b3ee02c8cafc4876ff9a4353c72fbbb164797c2 --- /dev/null +++ b/experiments/characterization/P800-13/config/P800-13_cat5_MASA2DIR1-36LKFS.yml @@ -0,0 +1,354 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-13 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-13/proc_input/cat5" +output_path: "experiments/characterization/P800-13/proc_output/cat5/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "MASA2DIR1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-13/config/P800-13_cat6_MASA2DIR2-16LKFS.yml b/experiments/characterization/P800-13/config/P800-13_cat6_MASA2DIR2-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..11ed25b6b42a32f079888c6c94118cb38f7ea588 --- /dev/null +++ b/experiments/characterization/P800-13/config/P800-13_cat6_MASA2DIR2-16LKFS.yml @@ -0,0 +1,354 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-13 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-13/proc_input/cat6" +output_path: "experiments/characterization/P800-13/proc_output/cat6/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-13/config/P800-13_cat6_MASA2DIR2-26LKFS.yml b/experiments/characterization/P800-13/config/P800-13_cat6_MASA2DIR2-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..ac016ce7e44746173dae56ffb2a0bf568f1466cd --- /dev/null +++ b/experiments/characterization/P800-13/config/P800-13_cat6_MASA2DIR2-26LKFS.yml @@ -0,0 +1,354 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-13 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-13/proc_input/cat6" +output_path: "experiments/characterization/P800-13/proc_output/cat6/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-13/config/P800-13_cat6_MASA2DIR2-36LKFS.yml b/experiments/characterization/P800-13/config/P800-13_cat6_MASA2DIR2-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..1bbc090499dc7517eb67c70f4c5dda992c137fd6 --- /dev/null +++ b/experiments/characterization/P800-13/config/P800-13_cat6_MASA2DIR2-36LKFS.yml @@ -0,0 +1,354 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-13 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-13/proc_input/cat6" +output_path: "experiments/characterization/P800-13/proc_output/cat6/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-13/proc_input/cat1/.gitkeep b/experiments/characterization/P800-13/proc_input/cat1/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-13/proc_input/cat2/.gitkeep b/experiments/characterization/P800-13/proc_input/cat2/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-13/proc_input/cat3/.gitkeep b/experiments/characterization/P800-13/proc_input/cat3/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-13/proc_input/cat4/.gitkeep b/experiments/characterization/P800-13/proc_input/cat4/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-13/proc_input/cat5/.gitkeep b/experiments/characterization/P800-13/proc_input/cat5/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-13/proc_input/cat6/.gitkeep b/experiments/characterization/P800-13/proc_input/cat6/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-13/proc_output/cat1/out_-16LKFS/.gitkeep b/experiments/characterization/P800-13/proc_output/cat1/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-13/proc_output/cat1/out_-26LKFS/.gitkeep b/experiments/characterization/P800-13/proc_output/cat1/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-13/proc_output/cat1/out_-36LKFS/.gitkeep b/experiments/characterization/P800-13/proc_output/cat1/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-13/proc_output/cat2/out_-16LKFS/.gitkeep b/experiments/characterization/P800-13/proc_output/cat2/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-13/proc_output/cat2/out_-26LKFS/.gitkeep b/experiments/characterization/P800-13/proc_output/cat2/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-13/proc_output/cat2/out_-36LKFS/.gitkeep b/experiments/characterization/P800-13/proc_output/cat2/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-13/proc_output/cat3/out_-16LKFS/.gitkeep b/experiments/characterization/P800-13/proc_output/cat3/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-13/proc_output/cat3/out_-26LKFS/.gitkeep b/experiments/characterization/P800-13/proc_output/cat3/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-13/proc_output/cat3/out_-36LKFS/.gitkeep b/experiments/characterization/P800-13/proc_output/cat3/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-13/proc_output/cat4/out_-16LKFS/.gitkeep b/experiments/characterization/P800-13/proc_output/cat4/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-13/proc_output/cat4/out_-26LKFS/.gitkeep b/experiments/characterization/P800-13/proc_output/cat4/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-13/proc_output/cat4/out_-36LKFS/.gitkeep b/experiments/characterization/P800-13/proc_output/cat4/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-13/proc_output/cat5/out_-16LKFS/.gitkeep b/experiments/characterization/P800-13/proc_output/cat5/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-13/proc_output/cat5/out_-26LKFS/.gitkeep b/experiments/characterization/P800-13/proc_output/cat5/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-13/proc_output/cat5/out_-36LKFS/.gitkeep b/experiments/characterization/P800-13/proc_output/cat5/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-13/proc_output/cat6/out_-16LKFS/.gitkeep b/experiments/characterization/P800-13/proc_output/cat6/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-13/proc_output/cat6/out_-26LKFS/.gitkeep b/experiments/characterization/P800-13/proc_output/cat6/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-13/proc_output/cat6/out_-36LKFS/.gitkeep b/experiments/characterization/P800-13/proc_output/cat6/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-14/background_noise/.gitkeep b/experiments/characterization/P800-14/background_noise/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-14/config/P800-14_cat1_1TC_HOA2-16LKFS.yml b/experiments/characterization/P800-14/config/P800-14_cat1_1TC_HOA2-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..89ce9211d111ed7f63b0c37411787cff80f83db9 --- /dev/null +++ b/experiments/characterization/P800-14/config/P800-14_cat1_1TC_HOA2-16LKFS.yml @@ -0,0 +1,270 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-14 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-14/proc_input/cat1_1TC" +output_path: "experiments/characterization/P800-14/proc_output/cat1_1TC/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "HOA2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-14/background_noise/gp14n1.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + fmt: MASA1DIR2 + ### MNRU conditions ### + c03: + type: mnru + q: 32 + fmt: MASA1DIR2 + c04: + type: mnru + q: 25 + fmt: MASA1DIR2 + c05: + type: mnru + q: 18 + fmt: MASA1DIR2 + ### IVAS FX/FL mix conditions, 1 TC, 4% FER ### + c09: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c15: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + ### IVAS FX/FL mix conditions, 1 TC, 8% FER ### + c23: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c24: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c25: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c26: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c28: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c29: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-14/config/P800-14_cat1_1TC_HOA2-26LKFS.yml b/experiments/characterization/P800-14/config/P800-14_cat1_1TC_HOA2-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..fc1b602833f4e88b5a7b784c73726677a8c46ce5 --- /dev/null +++ b/experiments/characterization/P800-14/config/P800-14_cat1_1TC_HOA2-26LKFS.yml @@ -0,0 +1,270 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-14 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-14/proc_input/cat1_1TC" +output_path: "experiments/characterization/P800-14/proc_output/cat1_1TC/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "HOA2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-14/background_noise/gp14n1.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + fmt: MASA1DIR2 + ### MNRU conditions ### + c03: + type: mnru + q: 32 + fmt: MASA1DIR2 + c04: + type: mnru + q: 25 + fmt: MASA1DIR2 + c05: + type: mnru + q: 18 + fmt: MASA1DIR2 + ### IVAS FX/FL mix conditions, 1 TC, 4% FER ### + c09: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c15: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + ### IVAS FX/FL mix conditions, 1 TC, 8% FER ### + c23: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c24: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c25: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c26: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c28: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c29: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-14/config/P800-14_cat1_1TC_HOA2-36LKFS.yml b/experiments/characterization/P800-14/config/P800-14_cat1_1TC_HOA2-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..9b5b2fef4b7d4082dd3cbb86c6c793f8cf7f1b54 --- /dev/null +++ b/experiments/characterization/P800-14/config/P800-14_cat1_1TC_HOA2-36LKFS.yml @@ -0,0 +1,270 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-14 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-14/proc_input/cat1_1TC" +output_path: "experiments/characterization/P800-14/proc_output/cat1_1TC/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "HOA2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-14/background_noise/gp14n1.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + fmt: MASA1DIR2 + ### MNRU conditions ### + c03: + type: mnru + q: 32 + fmt: MASA1DIR2 + c04: + type: mnru + q: 25 + fmt: MASA1DIR2 + c05: + type: mnru + q: 18 + fmt: MASA1DIR2 + ### IVAS FX/FL mix conditions, 1 TC, 4% FER ### + c09: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c15: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + ### IVAS FX/FL mix conditions, 1 TC, 8% FER ### + c23: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c24: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c25: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c26: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c28: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c29: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-14/config/P800-14_cat1_2TC_HOA2-16LKFS.yml b/experiments/characterization/P800-14/config/P800-14_cat1_2TC_HOA2-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..55e79315e79dcda59d421a1c288c77fe1dcd8c05 --- /dev/null +++ b/experiments/characterization/P800-14/config/P800-14_cat1_2TC_HOA2-16LKFS.yml @@ -0,0 +1,270 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-14 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-14/proc_input/cat1_2TC" +output_path: "experiments/characterization/P800-14/proc_output/cat1_2TC/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "HOA2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-14/background_noise/gp14n1.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c02: + type: ref + fmt: MASA2DIR2 + ### ESDRU conditions ### + c06: + type: esdru + alpha: 0.8 + fmt: MASA2DIR2 + c07: + type: esdru + alpha: 0.6 + fmt: MASA2DIR2 + c08: + type: esdru + alpha: 0.2 + fmt: MASA2DIR2 + ### IVAS FX/FL mix conditions, 2 TC, 4% FER ### + c16: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c17: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c18: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c22: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + ### IVAS FX/FL mix conditions, 2 TC, 8% FER ### + c30: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c31: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c32: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c33: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c34: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c35: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c36: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-14/config/P800-14_cat1_2TC_HOA2-26LKFS.yml b/experiments/characterization/P800-14/config/P800-14_cat1_2TC_HOA2-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..a80321adb4211d14ce3a8e31a2d98ff81e074064 --- /dev/null +++ b/experiments/characterization/P800-14/config/P800-14_cat1_2TC_HOA2-26LKFS.yml @@ -0,0 +1,270 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-14 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-14/proc_input/cat1_2TC" +output_path: "experiments/characterization/P800-14/proc_output/cat1_2TC/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "HOA2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-14/background_noise/gp14n1.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c02: + type: ref + fmt: MASA2DIR2 + ### ESDRU conditions ### + c06: + type: esdru + alpha: 0.8 + fmt: MASA2DIR2 + c07: + type: esdru + alpha: 0.6 + fmt: MASA2DIR2 + c08: + type: esdru + alpha: 0.2 + fmt: MASA2DIR2 + ### IVAS FX/FL mix conditions, 2 TC, 4% FER ### + c16: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c17: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c18: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c22: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + ### IVAS FX/FL mix conditions, 2 TC, 8% FER ### + c30: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c31: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c32: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c33: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c34: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c35: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c36: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-14/config/P800-14_cat1_2TC_HOA2-36LKFS.yml b/experiments/characterization/P800-14/config/P800-14_cat1_2TC_HOA2-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..88bfb749e4b0a3b1b923329175758d551408f574 --- /dev/null +++ b/experiments/characterization/P800-14/config/P800-14_cat1_2TC_HOA2-36LKFS.yml @@ -0,0 +1,270 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-14 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-14/proc_input/cat1_2TC" +output_path: "experiments/characterization/P800-14/proc_output/cat1_2TC/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "HOA2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-14/background_noise/gp14n1.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c02: + type: ref + fmt: MASA2DIR2 + ### ESDRU conditions ### + c06: + type: esdru + alpha: 0.8 + fmt: MASA2DIR2 + c07: + type: esdru + alpha: 0.6 + fmt: MASA2DIR2 + c08: + type: esdru + alpha: 0.2 + fmt: MASA2DIR2 + ### IVAS FX/FL mix conditions, 2 TC, 4% FER ### + c16: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c17: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c18: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c22: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + ### IVAS FX/FL mix conditions, 2 TC, 8% FER ### + c30: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c31: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c32: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c33: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c34: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c35: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c36: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-14/config/P800-14_cat2_1TC_FOA-16LKFS.yml b/experiments/characterization/P800-14/config/P800-14_cat2_1TC_FOA-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..25abfd2ead56e1ba5ee85862dc17e53b4c12d50d --- /dev/null +++ b/experiments/characterization/P800-14/config/P800-14_cat2_1TC_FOA-16LKFS.yml @@ -0,0 +1,270 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-14 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-14/proc_input/cat2_1TC" +output_path: "experiments/characterization/P800-14/proc_output/cat2_1TC/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-14/background_noise/gp14n2.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + fmt: MASA1DIR1 + ### MNRU conditions ### + c03: + type: mnru + q: 32 + fmt: MASA1DIR1 + c04: + type: mnru + q: 25 + fmt: MASA1DIR1 + c05: + type: mnru + q: 18 + fmt: MASA1DIR1 + ### IVAS FX/FL mix conditions, 1 TC, 4% FER ### + c09: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c15: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + ### IVAS FX/FL mix conditions, 1 TC, 8% FER ### + c23: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c24: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c25: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c26: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c28: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c29: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-14/config/P800-14_cat2_1TC_FOA-26LKFS.yml b/experiments/characterization/P800-14/config/P800-14_cat2_1TC_FOA-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..3301ac44c3c128f00771e41a17dcd5bad9662c88 --- /dev/null +++ b/experiments/characterization/P800-14/config/P800-14_cat2_1TC_FOA-26LKFS.yml @@ -0,0 +1,270 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-14 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-14/proc_input/cat2_1TC" +output_path: "experiments/characterization/P800-14/proc_output/cat2_1TC/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-14/background_noise/gp14n2.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + fmt: MASA1DIR1 + ### MNRU conditions ### + c03: + type: mnru + q: 32 + fmt: MASA1DIR1 + c04: + type: mnru + q: 25 + fmt: MASA1DIR1 + c05: + type: mnru + q: 18 + fmt: MASA1DIR1 + ### IVAS FX/FL mix conditions, 1 TC, 4% FER ### + c09: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c15: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + ### IVAS FX/FL mix conditions, 1 TC, 8% FER ### + c23: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c24: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c25: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c26: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c28: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c29: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-14/config/P800-14_cat2_1TC_FOA-36LKFS.yml b/experiments/characterization/P800-14/config/P800-14_cat2_1TC_FOA-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..9758ac1bb0777170a89f7f67cdd355e906e7101c --- /dev/null +++ b/experiments/characterization/P800-14/config/P800-14_cat2_1TC_FOA-36LKFS.yml @@ -0,0 +1,270 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-14 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-14/proc_input/cat2_1TC" +output_path: "experiments/characterization/P800-14/proc_output/cat2_1TC/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-14/background_noise/gp14n2.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + fmt: MASA1DIR1 + ### MNRU conditions ### + c03: + type: mnru + q: 32 + fmt: MASA1DIR1 + c04: + type: mnru + q: 25 + fmt: MASA1DIR1 + c05: + type: mnru + q: 18 + fmt: MASA1DIR1 + ### IVAS FX/FL mix conditions, 1 TC, 4% FER ### + c09: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c15: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + ### IVAS FX/FL mix conditions, 1 TC, 8% FER ### + c23: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c24: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c25: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c26: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c28: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c29: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-14/config/P800-14_cat2_2TC_FOA-16LKFS.yml b/experiments/characterization/P800-14/config/P800-14_cat2_2TC_FOA-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..e2767604c7d1d71f30b41298b0dccad110ad06c7 --- /dev/null +++ b/experiments/characterization/P800-14/config/P800-14_cat2_2TC_FOA-16LKFS.yml @@ -0,0 +1,270 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-14 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-14/proc_input/cat2_2TC" +output_path: "experiments/characterization/P800-14/proc_output/cat2_2TC/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-14/background_noise/gp14n2.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c02: + type: ref + fmt: MASA2DIR1 + ### ESDRU conditions ### + c06: + type: esdru + alpha: 0.8 + fmt: MASA2DIR1 + c07: + type: esdru + alpha: 0.6 + fmt: MASA2DIR1 + c08: + type: esdru + alpha: 0.2 + fmt: MASA2DIR1 + ### IVAS FX/FL mix conditions, 2 TC, 4% FER ### + c16: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c17: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c18: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c22: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + ### IVAS FX/FL mix conditions, 2 TC, 8% FER ### + c30: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c31: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c32: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c33: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c34: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c35: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c36: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-14/config/P800-14_cat2_2TC_FOA-26LKFS.yml b/experiments/characterization/P800-14/config/P800-14_cat2_2TC_FOA-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..de26485935909ce09ef77356fd862027841ab93a --- /dev/null +++ b/experiments/characterization/P800-14/config/P800-14_cat2_2TC_FOA-26LKFS.yml @@ -0,0 +1,270 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-14 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-14/proc_input/cat2_2TC" +output_path: "experiments/characterization/P800-14/proc_output/cat2_2TC/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-14/background_noise/gp14n2.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c02: + type: ref + fmt: MASA2DIR1 + ### ESDRU conditions ### + c06: + type: esdru + alpha: 0.8 + fmt: MASA2DIR1 + c07: + type: esdru + alpha: 0.6 + fmt: MASA2DIR1 + c08: + type: esdru + alpha: 0.2 + fmt: MASA2DIR1 + ### IVAS FX/FL mix conditions, 2 TC, 4% FER ### + c16: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c17: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c18: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c22: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + ### IVAS FX/FL mix conditions, 2 TC, 8% FER ### + c30: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c31: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c32: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c33: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c34: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c35: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c36: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-14/config/P800-14_cat2_2TC_FOA-36LKFS.yml b/experiments/characterization/P800-14/config/P800-14_cat2_2TC_FOA-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..e3df1229825e9f99aac23e43f2f8e924269d59d9 --- /dev/null +++ b/experiments/characterization/P800-14/config/P800-14_cat2_2TC_FOA-36LKFS.yml @@ -0,0 +1,270 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-14 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-14/proc_input/cat2_2TC" +output_path: "experiments/characterization/P800-14/proc_output/cat2_2TC/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-14/background_noise/gp14n2.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c02: + type: ref + fmt: MASA2DIR1 + ### ESDRU conditions ### + c06: + type: esdru + alpha: 0.8 + fmt: MASA2DIR1 + c07: + type: esdru + alpha: 0.6 + fmt: MASA2DIR1 + c08: + type: esdru + alpha: 0.2 + fmt: MASA2DIR1 + ### IVAS FX/FL mix conditions, 2 TC, 4% FER ### + c16: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c17: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c18: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c22: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + ### IVAS FX/FL mix conditions, 2 TC, 8% FER ### + c30: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c31: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c32: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c33: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c34: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c35: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c36: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-14/config/P800-14_cat3_1TC_FOA-16LKFS.yml b/experiments/characterization/P800-14/config/P800-14_cat3_1TC_FOA-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..67efec35c1424e3a1824e6a9735c187230f8af38 --- /dev/null +++ b/experiments/characterization/P800-14/config/P800-14_cat3_1TC_FOA-16LKFS.yml @@ -0,0 +1,270 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-14 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-14/proc_input/cat3_1TC" +output_path: "experiments/characterization/P800-14/proc_output/cat3_1TC/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-14/background_noise/gp14n3.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + fmt: MASA1DIR1 + ### MNRU conditions ### + c03: + type: mnru + q: 32 + fmt: MASA1DIR1 + c04: + type: mnru + q: 25 + fmt: MASA1DIR1 + c05: + type: mnru + q: 18 + fmt: MASA1DIR1 + ### IVAS FX/FL mix conditions, 1 TC, 4% FER ### + c09: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c15: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + ### IVAS FX/FL mix conditions, 1 TC, 8% FER ### + c23: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c24: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c25: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c26: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c28: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c29: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-14/config/P800-14_cat3_1TC_FOA-26LKFS.yml b/experiments/characterization/P800-14/config/P800-14_cat3_1TC_FOA-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..9eb7970938fd5db487136d24a0a442c92c534314 --- /dev/null +++ b/experiments/characterization/P800-14/config/P800-14_cat3_1TC_FOA-26LKFS.yml @@ -0,0 +1,270 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-14 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-14/proc_input/cat3_1TC" +output_path: "experiments/characterization/P800-14/proc_output/cat3_1TC/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-14/background_noise/gp14n3.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + fmt: MASA1DIR1 + ### MNRU conditions ### + c03: + type: mnru + q: 32 + fmt: MASA1DIR1 + c04: + type: mnru + q: 25 + fmt: MASA1DIR1 + c05: + type: mnru + q: 18 + fmt: MASA1DIR1 + ### IVAS FX/FL mix conditions, 1 TC, 4% FER ### + c09: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c15: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + ### IVAS FX/FL mix conditions, 1 TC, 8% FER ### + c23: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c24: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c25: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c26: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c28: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c29: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-14/config/P800-14_cat3_1TC_FOA-36LKFS.yml b/experiments/characterization/P800-14/config/P800-14_cat3_1TC_FOA-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..3e213c908e722178c161acb9c45bd627a4412619 --- /dev/null +++ b/experiments/characterization/P800-14/config/P800-14_cat3_1TC_FOA-36LKFS.yml @@ -0,0 +1,270 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-14 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-14/proc_input/cat3_1TC" +output_path: "experiments/characterization/P800-14/proc_output/cat3_1TC/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-14/background_noise/gp14n3.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + fmt: MASA1DIR1 + ### MNRU conditions ### + c03: + type: mnru + q: 32 + fmt: MASA1DIR1 + c04: + type: mnru + q: 25 + fmt: MASA1DIR1 + c05: + type: mnru + q: 18 + fmt: MASA1DIR1 + ### IVAS FX/FL mix conditions, 1 TC, 4% FER ### + c09: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c15: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + ### IVAS FX/FL mix conditions, 1 TC, 8% FER ### + c23: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c24: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c25: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c26: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c28: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c29: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-14/config/P800-14_cat3_2TC_FOA-16LKFS.yml b/experiments/characterization/P800-14/config/P800-14_cat3_2TC_FOA-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..d21b59079ec03612eb072a7cadb994957771b9b8 --- /dev/null +++ b/experiments/characterization/P800-14/config/P800-14_cat3_2TC_FOA-16LKFS.yml @@ -0,0 +1,270 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-14 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-14/proc_input/cat3_2TC" +output_path: "experiments/characterization/P800-14/proc_output/cat3_2TC/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-14/background_noise/gp14n3.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c02: + type: ref + fmt: MASA2DIR1 + ### ESDRU conditions ### + c06: + type: esdru + alpha: 0.8 + fmt: MASA2DIR1 + c07: + type: esdru + alpha: 0.6 + fmt: MASA2DIR1 + c08: + type: esdru + alpha: 0.2 + fmt: MASA2DIR1 + ### IVAS FX/FL mix conditions, 2 TC, 4% FER ### + c16: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c17: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c18: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c22: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + ### IVAS FX/FL mix conditions, 2 TC, 8% FER ### + c30: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c31: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c32: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c33: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c34: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c35: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c36: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-14/config/P800-14_cat3_2TC_FOA-26LKFS.yml b/experiments/characterization/P800-14/config/P800-14_cat3_2TC_FOA-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..43195910e0af1f011e4ff71d5f83f20af8e2c33e --- /dev/null +++ b/experiments/characterization/P800-14/config/P800-14_cat3_2TC_FOA-26LKFS.yml @@ -0,0 +1,270 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-14 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-14/proc_input/cat3_2TC" +output_path: "experiments/characterization/P800-14/proc_output/cat3_2TC/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-14/background_noise/gp14n3.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c02: + type: ref + fmt: MASA2DIR1 + ### ESDRU conditions ### + c06: + type: esdru + alpha: 0.8 + fmt: MASA2DIR1 + c07: + type: esdru + alpha: 0.6 + fmt: MASA2DIR1 + c08: + type: esdru + alpha: 0.2 + fmt: MASA2DIR1 + ### IVAS FX/FL mix conditions, 2 TC, 4% FER ### + c16: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c17: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c18: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c22: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + ### IVAS FX/FL mix conditions, 2 TC, 8% FER ### + c30: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c31: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c32: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c33: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c34: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c35: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c36: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-14/config/P800-14_cat3_2TC_FOA-36LKFS.yml b/experiments/characterization/P800-14/config/P800-14_cat3_2TC_FOA-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..40d4a00063027dc9555fc8a57f646922e7a9aa89 --- /dev/null +++ b/experiments/characterization/P800-14/config/P800-14_cat3_2TC_FOA-36LKFS.yml @@ -0,0 +1,270 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-14 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-14/proc_input/cat3_2TC" +output_path: "experiments/characterization/P800-14/proc_output/cat3_2TC/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-14/background_noise/gp14n3.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c02: + type: ref + fmt: MASA2DIR1 + ### ESDRU conditions ### + c06: + type: esdru + alpha: 0.8 + fmt: MASA2DIR1 + c07: + type: esdru + alpha: 0.6 + fmt: MASA2DIR1 + c08: + type: esdru + alpha: 0.2 + fmt: MASA2DIR1 + ### IVAS FX/FL mix conditions, 2 TC, 4% FER ### + c16: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c17: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c18: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c22: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + ### IVAS FX/FL mix conditions, 2 TC, 8% FER ### + c30: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c31: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c32: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c33: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c34: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c35: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c36: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-14/config/P800-14_cat4_1TC_FOA-16LKFS.yml b/experiments/characterization/P800-14/config/P800-14_cat4_1TC_FOA-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..ce31eeba5965f8f4cd5ce37cc7849f8d74ba3a29 --- /dev/null +++ b/experiments/characterization/P800-14/config/P800-14_cat4_1TC_FOA-16LKFS.yml @@ -0,0 +1,270 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-14 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-14/proc_input/cat4_1TC" +output_path: "experiments/characterization/P800-14/proc_output/cat4_1TC/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-14/background_noise/gp14n4.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + fmt: MASA1DIR1 + ### MNRU conditions ### + c03: + type: mnru + q: 32 + fmt: MASA1DIR1 + c04: + type: mnru + q: 25 + fmt: MASA1DIR1 + c05: + type: mnru + q: 18 + fmt: MASA1DIR1 + ### IVAS FX/FL mix conditions, 1 TC, 4% FER ### + c09: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c15: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + ### IVAS FX/FL mix conditions, 1 TC, 8% FER ### + c23: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c24: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c25: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c26: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c28: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c29: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-14/config/P800-14_cat4_1TC_FOA-26LKFS.yml b/experiments/characterization/P800-14/config/P800-14_cat4_1TC_FOA-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..4fe5d5a575073b9448efb2892db703735f9ab36d --- /dev/null +++ b/experiments/characterization/P800-14/config/P800-14_cat4_1TC_FOA-26LKFS.yml @@ -0,0 +1,270 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-14 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-14/proc_input/cat4_1TC" +output_path: "experiments/characterization/P800-14/proc_output/cat4_1TC/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-14/background_noise/gp14n4.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + fmt: MASA1DIR1 + ### MNRU conditions ### + c03: + type: mnru + q: 32 + fmt: MASA1DIR1 + c04: + type: mnru + q: 25 + fmt: MASA1DIR1 + c05: + type: mnru + q: 18 + fmt: MASA1DIR1 + ### IVAS FX/FL mix conditions, 1 TC, 4% FER ### + c09: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c15: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + ### IVAS FX/FL mix conditions, 1 TC, 8% FER ### + c23: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c24: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c25: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c26: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c28: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c29: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-14/config/P800-14_cat4_1TC_FOA-36LKFS.yml b/experiments/characterization/P800-14/config/P800-14_cat4_1TC_FOA-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..7cd8f17f3c51349c590227ab6af4ec374e5f7a82 --- /dev/null +++ b/experiments/characterization/P800-14/config/P800-14_cat4_1TC_FOA-36LKFS.yml @@ -0,0 +1,270 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-14 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-14/proc_input/cat4_1TC" +output_path: "experiments/characterization/P800-14/proc_output/cat4_1TC/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-14/background_noise/gp14n4.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + fmt: MASA1DIR1 + ### MNRU conditions ### + c03: + type: mnru + q: 32 + fmt: MASA1DIR1 + c04: + type: mnru + q: 25 + fmt: MASA1DIR1 + c05: + type: mnru + q: 18 + fmt: MASA1DIR1 + ### IVAS FX/FL mix conditions, 1 TC, 4% FER ### + c09: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c15: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + ### IVAS FX/FL mix conditions, 1 TC, 8% FER ### + c23: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c24: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c25: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c26: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c28: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c29: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-14/config/P800-14_cat4_2TC_FOA-16LKFS.yml b/experiments/characterization/P800-14/config/P800-14_cat4_2TC_FOA-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..64791f17ba34c893cc32bf967c760aba07b23496 --- /dev/null +++ b/experiments/characterization/P800-14/config/P800-14_cat4_2TC_FOA-16LKFS.yml @@ -0,0 +1,270 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-14 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-14/proc_input/cat4_2TC" +output_path: "experiments/characterization/P800-14/proc_output/cat4_2TC/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-14/background_noise/gp14n4.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c02: + type: ref + fmt: MASA2DIR1 + ### ESDRU conditions ### + c06: + type: esdru + alpha: 0.8 + fmt: MASA2DIR1 + c07: + type: esdru + alpha: 0.6 + fmt: MASA2DIR1 + c08: + type: esdru + alpha: 0.2 + fmt: MASA2DIR1 + ### IVAS FX/FL mix conditions, 2 TC, 4% FER ### + c16: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c17: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c18: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c22: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + ### IVAS FX/FL mix conditions, 2 TC, 8% FER ### + c30: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c31: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c32: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c33: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c34: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c35: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c36: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-14/config/P800-14_cat4_2TC_FOA-26LKFS.yml b/experiments/characterization/P800-14/config/P800-14_cat4_2TC_FOA-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..3934f5c0cf0d7734331d0981ef327454837e4279 --- /dev/null +++ b/experiments/characterization/P800-14/config/P800-14_cat4_2TC_FOA-26LKFS.yml @@ -0,0 +1,270 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-14 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-14/proc_input/cat4_2TC" +output_path: "experiments/characterization/P800-14/proc_output/cat4_2TC/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-14/background_noise/gp14n4.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c02: + type: ref + fmt: MASA2DIR1 + ### ESDRU conditions ### + c06: + type: esdru + alpha: 0.8 + fmt: MASA2DIR1 + c07: + type: esdru + alpha: 0.6 + fmt: MASA2DIR1 + c08: + type: esdru + alpha: 0.2 + fmt: MASA2DIR1 + ### IVAS FX/FL mix conditions, 2 TC, 4% FER ### + c16: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c17: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c18: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c22: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + ### IVAS FX/FL mix conditions, 2 TC, 8% FER ### + c30: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c31: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c32: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c33: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c34: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c35: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c36: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-14/config/P800-14_cat4_2TC_FOA-36LKFS.yml b/experiments/characterization/P800-14/config/P800-14_cat4_2TC_FOA-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..ef8fc9214206a80ea55eba9daf797889d0173dcf --- /dev/null +++ b/experiments/characterization/P800-14/config/P800-14_cat4_2TC_FOA-36LKFS.yml @@ -0,0 +1,270 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-14 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-14/proc_input/cat4_2TC" +output_path: "experiments/characterization/P800-14/proc_output/cat4_2TC/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-14/background_noise/gp14n4.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c02: + type: ref + fmt: MASA2DIR1 + ### ESDRU conditions ### + c06: + type: esdru + alpha: 0.8 + fmt: MASA2DIR1 + c07: + type: esdru + alpha: 0.6 + fmt: MASA2DIR1 + c08: + type: esdru + alpha: 0.2 + fmt: MASA2DIR1 + ### IVAS FX/FL mix conditions, 2 TC, 4% FER ### + c16: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c17: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c18: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c22: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + ### IVAS FX/FL mix conditions, 2 TC, 8% FER ### + c30: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c31: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c32: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c33: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c34: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c35: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c36: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-14/config/P800-14_cat5_1TC_MASA1DIR1-16LKFS.yml b/experiments/characterization/P800-14/config/P800-14_cat5_1TC_MASA1DIR1-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..6f0fe113067d5fd47924a67bd5be05586f45566f --- /dev/null +++ b/experiments/characterization/P800-14/config/P800-14_cat5_1TC_MASA1DIR1-16LKFS.yml @@ -0,0 +1,267 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-14 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-14/proc_input/cat5_1TC" +output_path: "experiments/characterization/P800-14/proc_output/cat5_1TC/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "MASA1DIR1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + fmt: MASA1DIR1 + ### MNRU conditions ### + c03: + type: mnru + q: 32 + fmt: MASA1DIR1 + c04: + type: mnru + q: 25 + fmt: MASA1DIR1 + c05: + type: mnru + q: 18 + fmt: MASA1DIR1 + ### IVAS FX/FL mix conditions, 1 TC, 4% FER ### + c09: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c15: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + ### IVAS FX/FL mix conditions, 1 TC, 8% FER ### + c23: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c24: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c25: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c26: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c28: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c29: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-14/config/P800-14_cat5_1TC_MASA1DIR1-26LKFS.yml b/experiments/characterization/P800-14/config/P800-14_cat5_1TC_MASA1DIR1-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..370e3e0686390815e409ba113b12ccacf8dced5f --- /dev/null +++ b/experiments/characterization/P800-14/config/P800-14_cat5_1TC_MASA1DIR1-26LKFS.yml @@ -0,0 +1,267 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-14 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-14/proc_input/cat5_1TC" +output_path: "experiments/characterization/P800-14/proc_output/cat5_1TC/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "MASA1DIR1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + fmt: MASA1DIR1 + ### MNRU conditions ### + c03: + type: mnru + q: 32 + fmt: MASA1DIR1 + c04: + type: mnru + q: 25 + fmt: MASA1DIR1 + c05: + type: mnru + q: 18 + fmt: MASA1DIR1 + ### IVAS FX/FL mix conditions, 1 TC, 4% FER ### + c09: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c15: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + ### IVAS FX/FL mix conditions, 1 TC, 8% FER ### + c23: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c24: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c25: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c26: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c28: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c29: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-14/config/P800-14_cat5_1TC_MASA1DIR1-36LKFS.yml b/experiments/characterization/P800-14/config/P800-14_cat5_1TC_MASA1DIR1-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..9c4eeb4ac1d9a5e782f5bf9cf5324b7a252249c6 --- /dev/null +++ b/experiments/characterization/P800-14/config/P800-14_cat5_1TC_MASA1DIR1-36LKFS.yml @@ -0,0 +1,267 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-14 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-14/proc_input/cat5_1TC" +output_path: "experiments/characterization/P800-14/proc_output/cat5_1TC/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "MASA1DIR1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + fmt: MASA1DIR1 + ### MNRU conditions ### + c03: + type: mnru + q: 32 + fmt: MASA1DIR1 + c04: + type: mnru + q: 25 + fmt: MASA1DIR1 + c05: + type: mnru + q: 18 + fmt: MASA1DIR1 + ### IVAS FX/FL mix conditions, 1 TC, 4% FER ### + c09: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c15: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + ### IVAS FX/FL mix conditions, 1 TC, 8% FER ### + c23: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c24: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c25: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c26: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c28: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c29: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-14/config/P800-14_cat5_2TC_MASA2DIR1-16LKFS.yml b/experiments/characterization/P800-14/config/P800-14_cat5_2TC_MASA2DIR1-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..efb36abb4002590d462a05379a8f05f7061d9c37 --- /dev/null +++ b/experiments/characterization/P800-14/config/P800-14_cat5_2TC_MASA2DIR1-16LKFS.yml @@ -0,0 +1,267 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-14 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-14/proc_input/cat5_2TC" +output_path: "experiments/characterization/P800-14/proc_output/cat5_2TC/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "MASA2DIR1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c02: + type: ref + fmt: MASA2DIR1 + ### ESDRU conditions ### + c06: + type: esdru + alpha: 0.8 + fmt: MASA2DIR1 + c07: + type: esdru + alpha: 0.6 + fmt: MASA2DIR1 + c08: + type: esdru + alpha: 0.2 + fmt: MASA2DIR1 + ### IVAS FX/FL mix conditions, 2 TC, 4% FER ### + c16: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c17: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c18: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c22: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + ### IVAS FX/FL mix conditions, 2 TC, 8% FER ### + c30: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c31: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c32: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c33: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c34: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c35: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c36: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-14/config/P800-14_cat5_2TC_MASA2DIR1-26LKFS.yml b/experiments/characterization/P800-14/config/P800-14_cat5_2TC_MASA2DIR1-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..a7453525dc7f0074fdb065eb358c75ab4fa1cb61 --- /dev/null +++ b/experiments/characterization/P800-14/config/P800-14_cat5_2TC_MASA2DIR1-26LKFS.yml @@ -0,0 +1,267 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-14 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-14/proc_input/cat5_2TC" +output_path: "experiments/characterization/P800-14/proc_output/cat5_2TC/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "MASA2DIR1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c02: + type: ref + fmt: MASA2DIR1 + ### ESDRU conditions ### + c06: + type: esdru + alpha: 0.8 + fmt: MASA2DIR1 + c07: + type: esdru + alpha: 0.6 + fmt: MASA2DIR1 + c08: + type: esdru + alpha: 0.2 + fmt: MASA2DIR1 + ### IVAS FX/FL mix conditions, 2 TC, 4% FER ### + c16: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c17: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c18: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c22: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + ### IVAS FX/FL mix conditions, 2 TC, 8% FER ### + c30: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c31: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c32: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c33: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c34: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c35: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c36: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-14/config/P800-14_cat5_2TC_MASA2DIR1-36LKFS.yml b/experiments/characterization/P800-14/config/P800-14_cat5_2TC_MASA2DIR1-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..c5a3e0bad99d70def50b544bf01dab2b99cb0ad6 --- /dev/null +++ b/experiments/characterization/P800-14/config/P800-14_cat5_2TC_MASA2DIR1-36LKFS.yml @@ -0,0 +1,267 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-14 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-14/proc_input/cat5_2TC" +output_path: "experiments/characterization/P800-14/proc_output/cat5_2TC/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "MASA2DIR1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c02: + type: ref + fmt: MASA2DIR1 + ### ESDRU conditions ### + c06: + type: esdru + alpha: 0.8 + fmt: MASA2DIR1 + c07: + type: esdru + alpha: 0.6 + fmt: MASA2DIR1 + c08: + type: esdru + alpha: 0.2 + fmt: MASA2DIR1 + ### IVAS FX/FL mix conditions, 2 TC, 4% FER ### + c16: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c17: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c18: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c22: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + ### IVAS FX/FL mix conditions, 2 TC, 8% FER ### + c30: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c31: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c32: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c33: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c34: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c35: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c36: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR1 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-14/config/P800-14_cat6_1TC_MASA1DIR2-16LKFS.yml b/experiments/characterization/P800-14/config/P800-14_cat6_1TC_MASA1DIR2-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..d39cab62a4a9b26f37e56505bd2bc6a2a161864b --- /dev/null +++ b/experiments/characterization/P800-14/config/P800-14_cat6_1TC_MASA1DIR2-16LKFS.yml @@ -0,0 +1,267 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-14 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-14/proc_input/cat6_1TC" +output_path: "experiments/characterization/P800-14/proc_output/cat6_1TC/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "MASA1DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + fmt: MASA1DIR2 + ### MNRU conditions ### + c03: + type: mnru + q: 32 + fmt: MASA1DIR2 + c04: + type: mnru + q: 25 + fmt: MASA1DIR2 + c05: + type: mnru + q: 18 + fmt: MASA1DIR2 + ### IVAS FX/FL mix conditions, 1 TC, 4% FER ### + c09: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c15: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + ### IVAS FX/FL mix conditions, 1 TC, 8% FER ### + c23: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c24: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c25: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c26: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c28: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c29: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-14/config/P800-14_cat6_1TC_MASA1DIR2-26LKFS.yml b/experiments/characterization/P800-14/config/P800-14_cat6_1TC_MASA1DIR2-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..e485b60c3b7949b15e7da38e80b5e36a1459aff6 --- /dev/null +++ b/experiments/characterization/P800-14/config/P800-14_cat6_1TC_MASA1DIR2-26LKFS.yml @@ -0,0 +1,267 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-14 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-14/proc_input/cat6_1TC" +output_path: "experiments/characterization/P800-14/proc_output/cat6_1TC/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "MASA1DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + fmt: MASA1DIR2 + ### MNRU conditions ### + c03: + type: mnru + q: 32 + fmt: MASA1DIR2 + c04: + type: mnru + q: 25 + fmt: MASA1DIR2 + c05: + type: mnru + q: 18 + fmt: MASA1DIR2 + ### IVAS FX/FL mix conditions, 1 TC, 4% FER ### + c09: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c15: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + ### IVAS FX/FL mix conditions, 1 TC, 8% FER ### + c23: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c24: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c25: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c26: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c28: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c29: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-14/config/P800-14_cat6_1TC_MASA1DIR2-36LKFS.yml b/experiments/characterization/P800-14/config/P800-14_cat6_1TC_MASA1DIR2-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..ab7874bc00193bf76abc39d3771c80f9407bcad4 --- /dev/null +++ b/experiments/characterization/P800-14/config/P800-14_cat6_1TC_MASA1DIR2-36LKFS.yml @@ -0,0 +1,267 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-14 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-14/proc_input/cat6_1TC" +output_path: "experiments/characterization/P800-14/proc_output/cat6_1TC/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "MASA1DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + fmt: MASA1DIR2 + ### MNRU conditions ### + c03: + type: mnru + q: 32 + fmt: MASA1DIR2 + c04: + type: mnru + q: 25 + fmt: MASA1DIR2 + c05: + type: mnru + q: 18 + fmt: MASA1DIR2 + ### IVAS FX/FL mix conditions, 1 TC, 4% FER ### + c09: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c15: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + ### IVAS FX/FL mix conditions, 1 TC, 8% FER ### + c23: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c24: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c25: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c26: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c28: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c29: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA1DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-14/config/P800-14_cat6_2TC_MASA2DIR2-16LKFS.yml b/experiments/characterization/P800-14/config/P800-14_cat6_2TC_MASA2DIR2-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..ad445c856484fe8034abf377600237eb13bafa01 --- /dev/null +++ b/experiments/characterization/P800-14/config/P800-14_cat6_2TC_MASA2DIR2-16LKFS.yml @@ -0,0 +1,267 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-14 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-14/proc_input/cat6_2TC" +output_path: "experiments/characterization/P800-14/proc_output/cat6_2TC/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c02: + type: ref + fmt: MASA2DIR2 + ### ESDRU conditions ### + c06: + type: esdru + alpha: 0.8 + fmt: MASA2DIR2 + c07: + type: esdru + alpha: 0.6 + fmt: MASA2DIR2 + c08: + type: esdru + alpha: 0.2 + fmt: MASA2DIR2 + ### IVAS FX/FL mix conditions, 2 TC, 4% FER ### + c16: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c17: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c18: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c22: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + ### IVAS FX/FL mix conditions, 2 TC, 8% FER ### + c30: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c31: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c32: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c33: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c34: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c35: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c36: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-14/config/P800-14_cat6_2TC_MASA2DIR2-26LKFS.yml b/experiments/characterization/P800-14/config/P800-14_cat6_2TC_MASA2DIR2-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..7f61c8dc666d4cee6e23ce395e610ddea90f13a2 --- /dev/null +++ b/experiments/characterization/P800-14/config/P800-14_cat6_2TC_MASA2DIR2-26LKFS.yml @@ -0,0 +1,267 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-14 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-14/proc_input/cat6_2TC" +output_path: "experiments/characterization/P800-14/proc_output/cat6_2TC/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c02: + type: ref + fmt: MASA2DIR2 + ### ESDRU conditions ### + c06: + type: esdru + alpha: 0.8 + fmt: MASA2DIR2 + c07: + type: esdru + alpha: 0.6 + fmt: MASA2DIR2 + c08: + type: esdru + alpha: 0.2 + fmt: MASA2DIR2 + ### IVAS FX/FL mix conditions, 2 TC, 4% FER ### + c16: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c17: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c18: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c22: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + ### IVAS FX/FL mix conditions, 2 TC, 8% FER ### + c30: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c31: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c32: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c33: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c34: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c35: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c36: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-14/config/P800-14_cat6_2TC_MASA2DIR2-36LKFS.yml b/experiments/characterization/P800-14/config/P800-14_cat6_2TC_MASA2DIR2-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..4a0d6e2e08f752896921ebb059962462c5ec4956 --- /dev/null +++ b/experiments/characterization/P800-14/config/P800-14_cat6_2TC_MASA2DIR2-36LKFS.yml @@ -0,0 +1,267 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-14 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-14/proc_input/cat6_2TC" +output_path: "experiments/characterization/P800-14/proc_output/cat6_2TC/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c02: + type: ref + fmt: MASA2DIR2 + ### ESDRU conditions ### + c06: + type: esdru + alpha: 0.8 + fmt: MASA2DIR2 + c07: + type: esdru + alpha: 0.6 + fmt: MASA2DIR2 + c08: + type: esdru + alpha: 0.2 + fmt: MASA2DIR2 + ### IVAS FX/FL mix conditions, 2 TC, 4% FER ### + c16: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c17: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c18: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 4 + c22: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 4 + ### IVAS FX/FL mix conditions, 2 TC, 8% FER ### + c30: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c31: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c32: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c33: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + c34: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c35: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 8 + c36: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + fmt: MASA2DIR2 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 8 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-14/proc_input/cat1/.gitkeep b/experiments/characterization/P800-14/proc_input/cat1/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-14/proc_input/cat2/.gitkeep b/experiments/characterization/P800-14/proc_input/cat2/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-14/proc_input/cat3/.gitkeep b/experiments/characterization/P800-14/proc_input/cat3/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-14/proc_input/cat4/.gitkeep b/experiments/characterization/P800-14/proc_input/cat4/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-14/proc_input/cat5/.gitkeep b/experiments/characterization/P800-14/proc_input/cat5/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-14/proc_input/cat6/.gitkeep b/experiments/characterization/P800-14/proc_input/cat6/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-14/proc_output/cat1_1TC/out_-16LKFS/.gitkeep b/experiments/characterization/P800-14/proc_output/cat1_1TC/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-14/proc_output/cat1_1TC/out_-26LKFS/.gitkeep b/experiments/characterization/P800-14/proc_output/cat1_1TC/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-14/proc_output/cat1_1TC/out_-36LKFS/.gitkeep b/experiments/characterization/P800-14/proc_output/cat1_1TC/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-14/proc_output/cat1_2TC/out_-16LKFS/.gitkeep b/experiments/characterization/P800-14/proc_output/cat1_2TC/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-14/proc_output/cat1_2TC/out_-26LKFS/.gitkeep b/experiments/characterization/P800-14/proc_output/cat1_2TC/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-14/proc_output/cat1_2TC/out_-36LKFS/.gitkeep b/experiments/characterization/P800-14/proc_output/cat1_2TC/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-14/proc_output/cat2_1TC/out_-16LKFS/.gitkeep b/experiments/characterization/P800-14/proc_output/cat2_1TC/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-14/proc_output/cat2_1TC/out_-26LKFS/.gitkeep b/experiments/characterization/P800-14/proc_output/cat2_1TC/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-14/proc_output/cat2_1TC/out_-36LKFS/.gitkeep b/experiments/characterization/P800-14/proc_output/cat2_1TC/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-14/proc_output/cat2_2TC/out_-16LKFS/.gitkeep b/experiments/characterization/P800-14/proc_output/cat2_2TC/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-14/proc_output/cat2_2TC/out_-26LKFS/.gitkeep b/experiments/characterization/P800-14/proc_output/cat2_2TC/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-14/proc_output/cat2_2TC/out_-36LKFS/.gitkeep b/experiments/characterization/P800-14/proc_output/cat2_2TC/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-14/proc_output/cat3_1TC/out_-16LKFS/.gitkeep b/experiments/characterization/P800-14/proc_output/cat3_1TC/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-14/proc_output/cat3_1TC/out_-26LKFS/.gitkeep b/experiments/characterization/P800-14/proc_output/cat3_1TC/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-14/proc_output/cat3_1TC/out_-36LKFS/.gitkeep b/experiments/characterization/P800-14/proc_output/cat3_1TC/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-14/proc_output/cat3_2TC/out_-16LKFS/.gitkeep b/experiments/characterization/P800-14/proc_output/cat3_2TC/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-14/proc_output/cat3_2TC/out_-26LKFS/.gitkeep b/experiments/characterization/P800-14/proc_output/cat3_2TC/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-14/proc_output/cat3_2TC/out_-36LKFS/.gitkeep b/experiments/characterization/P800-14/proc_output/cat3_2TC/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-14/proc_output/cat4_1TC/out_-16LKFS/.gitkeep b/experiments/characterization/P800-14/proc_output/cat4_1TC/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-14/proc_output/cat4_1TC/out_-26LKFS/.gitkeep b/experiments/characterization/P800-14/proc_output/cat4_1TC/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-14/proc_output/cat4_1TC/out_-36LKFS/.gitkeep b/experiments/characterization/P800-14/proc_output/cat4_1TC/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-14/proc_output/cat4_2TC/out_-16LKFS/.gitkeep b/experiments/characterization/P800-14/proc_output/cat4_2TC/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-14/proc_output/cat4_2TC/out_-26LKFS/.gitkeep b/experiments/characterization/P800-14/proc_output/cat4_2TC/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-14/proc_output/cat4_2TC/out_-36LKFS/.gitkeep b/experiments/characterization/P800-14/proc_output/cat4_2TC/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-14/proc_output/cat5_1TC/out_-16LKFS/.gitkeep b/experiments/characterization/P800-14/proc_output/cat5_1TC/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-14/proc_output/cat5_1TC/out_-26LKFS/.gitkeep b/experiments/characterization/P800-14/proc_output/cat5_1TC/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-14/proc_output/cat5_1TC/out_-36LKFS/.gitkeep b/experiments/characterization/P800-14/proc_output/cat5_1TC/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-14/proc_output/cat5_2TC/out_-16LKFS/.gitkeep b/experiments/characterization/P800-14/proc_output/cat5_2TC/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-14/proc_output/cat5_2TC/out_-26LKFS/.gitkeep b/experiments/characterization/P800-14/proc_output/cat5_2TC/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-14/proc_output/cat5_2TC/out_-36LKFS/.gitkeep b/experiments/characterization/P800-14/proc_output/cat5_2TC/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-14/proc_output/cat6_1TC/out_-16LKFS/.gitkeep b/experiments/characterization/P800-14/proc_output/cat6_1TC/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-14/proc_output/cat6_1TC/out_-26LKFS/.gitkeep b/experiments/characterization/P800-14/proc_output/cat6_1TC/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-14/proc_output/cat6_1TC/out_-36LKFS/.gitkeep b/experiments/characterization/P800-14/proc_output/cat6_1TC/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-14/proc_output/cat6_2TC/out_-16LKFS/.gitkeep b/experiments/characterization/P800-14/proc_output/cat6_2TC/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-14/proc_output/cat6_2TC/out_-26LKFS/.gitkeep b/experiments/characterization/P800-14/proc_output/cat6_2TC/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-14/proc_output/cat6_2TC/out_-36LKFS/.gitkeep b/experiments/characterization/P800-14/proc_output/cat6_2TC/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-15/background_noise/.gitkeep b/experiments/characterization/P800-15/background_noise/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-15/config/P800-15_cat1_ISM1SBA3-16LKFS.yml b/experiments/characterization/P800-15/config/P800-15_cat1_ISM1SBA3-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..c9ba21715ce618a4cca1711b51d6831ed795071f --- /dev/null +++ b/experiments/characterization/P800-15/config/P800-15_cat1_ISM1SBA3-16LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-15 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-15/proc_input/cat1" +output_path: "experiments/characterization/P800-15/proc_output/cat1/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM1SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-15/background_noise/ap15n1.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-15/config/P800-15_cat1_ISM1SBA3-26LKFS.yml b/experiments/characterization/P800-15/config/P800-15_cat1_ISM1SBA3-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..ed196f289d451173afacd4125fafbb372ca0128a --- /dev/null +++ b/experiments/characterization/P800-15/config/P800-15_cat1_ISM1SBA3-26LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-15 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-15/proc_input/cat1" +output_path: "experiments/characterization/P800-15/proc_output/cat1/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM1SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-15/background_noise/ap15n1.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-15/config/P800-15_cat1_ISM1SBA3-36LKFS.yml b/experiments/characterization/P800-15/config/P800-15_cat1_ISM1SBA3-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..0ff63c9f2dbe961d75dc186ce93e357f559e0662 --- /dev/null +++ b/experiments/characterization/P800-15/config/P800-15_cat1_ISM1SBA3-36LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-15 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-15/proc_input/cat1" +output_path: "experiments/characterization/P800-15/proc_output/cat1/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM1SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-15/background_noise/ap15n1.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-15/config/P800-15_cat2_ISM1SBA3-16LKFS.yml b/experiments/characterization/P800-15/config/P800-15_cat2_ISM1SBA3-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..0ed28494108f1bb7ba4ed8147df028b858b97c82 --- /dev/null +++ b/experiments/characterization/P800-15/config/P800-15_cat2_ISM1SBA3-16LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-15 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-15/proc_input/cat2" +output_path: "experiments/characterization/P800-15/proc_output/cat2/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM1SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-15/background_noise/ap15n2.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-15/config/P800-15_cat2_ISM1SBA3-26LKFS.yml b/experiments/characterization/P800-15/config/P800-15_cat2_ISM1SBA3-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..3178f467ebf9fc0e7cc3e8226bd3239bb17772a0 --- /dev/null +++ b/experiments/characterization/P800-15/config/P800-15_cat2_ISM1SBA3-26LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-15 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-15/proc_input/cat2" +output_path: "experiments/characterization/P800-15/proc_output/cat2/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM1SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-15/background_noise/ap15n2.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-15/config/P800-15_cat2_ISM1SBA3-36LKFS.yml b/experiments/characterization/P800-15/config/P800-15_cat2_ISM1SBA3-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..5be323aaa43cc8dc950b42188def397657a5c167 --- /dev/null +++ b/experiments/characterization/P800-15/config/P800-15_cat2_ISM1SBA3-36LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-15 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-15/proc_input/cat2" +output_path: "experiments/characterization/P800-15/proc_output/cat2/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM1SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-15/background_noise/ap15n2.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-15/config/P800-15_cat3_ISM2SBA3-16LKFS.yml b/experiments/characterization/P800-15/config/P800-15_cat3_ISM2SBA3-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..2b4ce346f6812dd73e17afbc70b7f4d36fd18d1f --- /dev/null +++ b/experiments/characterization/P800-15/config/P800-15_cat3_ISM2SBA3-16LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-15 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-15/proc_input/cat3" +output_path: "experiments/characterization/P800-15/proc_output/cat3/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-15/background_noise/ap15n3.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-15/config/P800-15_cat3_ISM2SBA3-26LKFS.yml b/experiments/characterization/P800-15/config/P800-15_cat3_ISM2SBA3-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..c0bda3a61135229fb924cc0b3ee7909ecfb14e21 --- /dev/null +++ b/experiments/characterization/P800-15/config/P800-15_cat3_ISM2SBA3-26LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-15 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-15/proc_input/cat3" +output_path: "experiments/characterization/P800-15/proc_output/cat3/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-15/background_noise/ap15n3.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-15/config/P800-15_cat3_ISM2SBA3-36LKFS.yml b/experiments/characterization/P800-15/config/P800-15_cat3_ISM2SBA3-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..572c343adbbf044ba8fb3d4441776ecb17ac7092 --- /dev/null +++ b/experiments/characterization/P800-15/config/P800-15_cat3_ISM2SBA3-36LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-15 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-15/proc_input/cat3" +output_path: "experiments/characterization/P800-15/proc_output/cat3/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-15/background_noise/ap15n3.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-15/config/P800-15_cat4_ISM2SBA3-16LKFS.yml b/experiments/characterization/P800-15/config/P800-15_cat4_ISM2SBA3-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..10237e58be829c489cacbf1b991e6cd43efb70f5 --- /dev/null +++ b/experiments/characterization/P800-15/config/P800-15_cat4_ISM2SBA3-16LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-15 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-15/proc_input/cat4" +output_path: "experiments/characterization/P800-15/proc_output/cat4/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-15/background_noise/ap15n4.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-15/config/P800-15_cat4_ISM2SBA3-26LKFS.yml b/experiments/characterization/P800-15/config/P800-15_cat4_ISM2SBA3-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..725a1a8d2e1fc8592410120885736488e2166957 --- /dev/null +++ b/experiments/characterization/P800-15/config/P800-15_cat4_ISM2SBA3-26LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-15 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-15/proc_input/cat4" +output_path: "experiments/characterization/P800-15/proc_output/cat4/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-15/background_noise/ap15n4.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-15/config/P800-15_cat4_ISM2SBA3-36LKFS.yml b/experiments/characterization/P800-15/config/P800-15_cat4_ISM2SBA3-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..624edffa1a142705798222381518bb4fe84ae220 --- /dev/null +++ b/experiments/characterization/P800-15/config/P800-15_cat4_ISM2SBA3-36LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-15 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-15/proc_input/cat4" +output_path: "experiments/characterization/P800-15/proc_output/cat4/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-15/background_noise/ap15n4.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-15/config/P800-15_cat5_ISM1SBA3-16LKFS.yml b/experiments/characterization/P800-15/config/P800-15_cat5_ISM1SBA3-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..4a0b02b183c212632856a203c92b427a59c3c043 --- /dev/null +++ b/experiments/characterization/P800-15/config/P800-15_cat5_ISM1SBA3-16LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-15 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-15/proc_input/cat5" +output_path: "experiments/characterization/P800-15/proc_output/cat5/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM1SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-15/config/P800-15_cat5_ISM1SBA3-26LKFS.yml b/experiments/characterization/P800-15/config/P800-15_cat5_ISM1SBA3-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..9e4b992405e0507a201822e2fc1db399d9df072d --- /dev/null +++ b/experiments/characterization/P800-15/config/P800-15_cat5_ISM1SBA3-26LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-15 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-15/proc_input/cat5" +output_path: "experiments/characterization/P800-15/proc_output/cat5/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM1SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-15/config/P800-15_cat5_ISM1SBA3-36LKFS.yml b/experiments/characterization/P800-15/config/P800-15_cat5_ISM1SBA3-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..d4a1a7d85a21f51c2bf6d94a869de896514ff887 --- /dev/null +++ b/experiments/characterization/P800-15/config/P800-15_cat5_ISM1SBA3-36LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-15 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-15/proc_input/cat5" +output_path: "experiments/characterization/P800-15/proc_output/cat5/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM1SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-15/config/P800-15_cat6_ISM2SBA3-16LKFS.yml b/experiments/characterization/P800-15/config/P800-15_cat6_ISM2SBA3-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..7390fd4df74f51bea4c7dec1131def280cba3853 --- /dev/null +++ b/experiments/characterization/P800-15/config/P800-15_cat6_ISM2SBA3-16LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-15 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-15/proc_input/cat6" +output_path: "experiments/characterization/P800-15/proc_output/cat6/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-15/config/P800-15_cat6_ISM2SBA3-26LKFS.yml b/experiments/characterization/P800-15/config/P800-15_cat6_ISM2SBA3-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..67a625dcb6763f44d001479b6cac4d82d04b90a7 --- /dev/null +++ b/experiments/characterization/P800-15/config/P800-15_cat6_ISM2SBA3-26LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-15 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-15/proc_input/cat6" +output_path: "experiments/characterization/P800-15/proc_output/cat6/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-15/config/P800-15_cat6_ISM2SBA3-36LKFS.yml b/experiments/characterization/P800-15/config/P800-15_cat6_ISM2SBA3-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..c682a43ab56706db444d5c17707af627d52f38cc --- /dev/null +++ b/experiments/characterization/P800-15/config/P800-15_cat6_ISM2SBA3-36LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-15 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-15/proc_input/cat6" +output_path: "experiments/characterization/P800-15/proc_output/cat6/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-15/proc_input/cat1/.gitkeep b/experiments/characterization/P800-15/proc_input/cat1/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-15/proc_input/cat2/.gitkeep b/experiments/characterization/P800-15/proc_input/cat2/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-15/proc_input/cat3/.gitkeep b/experiments/characterization/P800-15/proc_input/cat3/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-15/proc_input/cat4/.gitkeep b/experiments/characterization/P800-15/proc_input/cat4/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-15/proc_input/cat5/.gitkeep b/experiments/characterization/P800-15/proc_input/cat5/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-15/proc_input/cat6/.gitkeep b/experiments/characterization/P800-15/proc_input/cat6/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-15/proc_output/cat1/out_-16LKFS/.gitkeep b/experiments/characterization/P800-15/proc_output/cat1/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-15/proc_output/cat1/out_-26LKFS/.gitkeep b/experiments/characterization/P800-15/proc_output/cat1/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-15/proc_output/cat1/out_-36LKFS/.gitkeep b/experiments/characterization/P800-15/proc_output/cat1/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-15/proc_output/cat2/out_-16LKFS/.gitkeep b/experiments/characterization/P800-15/proc_output/cat2/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-15/proc_output/cat2/out_-26LKFS/.gitkeep b/experiments/characterization/P800-15/proc_output/cat2/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-15/proc_output/cat2/out_-36LKFS/.gitkeep b/experiments/characterization/P800-15/proc_output/cat2/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-15/proc_output/cat3/out_-16LKFS/.gitkeep b/experiments/characterization/P800-15/proc_output/cat3/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-15/proc_output/cat3/out_-26LKFS/.gitkeep b/experiments/characterization/P800-15/proc_output/cat3/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-15/proc_output/cat3/out_-36LKFS/.gitkeep b/experiments/characterization/P800-15/proc_output/cat3/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-15/proc_output/cat4/out_-16LKFS/.gitkeep b/experiments/characterization/P800-15/proc_output/cat4/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-15/proc_output/cat4/out_-26LKFS/.gitkeep b/experiments/characterization/P800-15/proc_output/cat4/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-15/proc_output/cat4/out_-36LKFS/.gitkeep b/experiments/characterization/P800-15/proc_output/cat4/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-15/proc_output/cat5/out_-16LKFS/.gitkeep b/experiments/characterization/P800-15/proc_output/cat5/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-15/proc_output/cat5/out_-26LKFS/.gitkeep b/experiments/characterization/P800-15/proc_output/cat5/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-15/proc_output/cat5/out_-36LKFS/.gitkeep b/experiments/characterization/P800-15/proc_output/cat5/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-15/proc_output/cat6/out_-16LKFS/.gitkeep b/experiments/characterization/P800-15/proc_output/cat6/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-15/proc_output/cat6/out_-26LKFS/.gitkeep b/experiments/characterization/P800-15/proc_output/cat6/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-15/proc_output/cat6/out_-36LKFS/.gitkeep b/experiments/characterization/P800-15/proc_output/cat6/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-16/config/P800-16_cat1_ISM3SBA3-16LKFS.yml b/experiments/characterization/P800-16/config/P800-16_cat1_ISM3SBA3-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..17b5a715766871f3c023401e7c68bcde6e9f3346 --- /dev/null +++ b/experiments/characterization/P800-16/config/P800-16_cat1_ISM3SBA3-16LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-16 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-16/proc_input/cat1" +output_path: "experiments/characterization/P800-16/proc_output/cat1/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM3SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-16/config/P800-16_cat1_ISM3SBA3-26LKFS.yml b/experiments/characterization/P800-16/config/P800-16_cat1_ISM3SBA3-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..7c8df6c1c4aa89d0f058de0a54befc5f3b7c73b8 --- /dev/null +++ b/experiments/characterization/P800-16/config/P800-16_cat1_ISM3SBA3-26LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-16 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-16/proc_input/cat1" +output_path: "experiments/characterization/P800-16/proc_output/cat1/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM3SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-16/config/P800-16_cat1_ISM3SBA3-36LKFS.yml b/experiments/characterization/P800-16/config/P800-16_cat1_ISM3SBA3-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..5507229f89eceb769b015d61aec75a4e4de2b1eb --- /dev/null +++ b/experiments/characterization/P800-16/config/P800-16_cat1_ISM3SBA3-36LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-16 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-16/proc_input/cat1" +output_path: "experiments/characterization/P800-16/proc_output/cat1/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM3SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-16/config/P800-16_cat2_ISM3SBA3-16LKFS.yml b/experiments/characterization/P800-16/config/P800-16_cat2_ISM3SBA3-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..5056554f13ad7bbbbeea0e8af0aa096a458d0d2d --- /dev/null +++ b/experiments/characterization/P800-16/config/P800-16_cat2_ISM3SBA3-16LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-16 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-16/proc_input/cat2" +output_path: "experiments/characterization/P800-16/proc_output/cat2/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM3SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-16/config/P800-16_cat2_ISM3SBA3-26LKFS.yml b/experiments/characterization/P800-16/config/P800-16_cat2_ISM3SBA3-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..5d26f3634b3d04b355eff3b1e3cea19fe1463904 --- /dev/null +++ b/experiments/characterization/P800-16/config/P800-16_cat2_ISM3SBA3-26LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-16 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-16/proc_input/cat2" +output_path: "experiments/characterization/P800-16/proc_output/cat2/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM3SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-16/config/P800-16_cat2_ISM3SBA3-36LKFS.yml b/experiments/characterization/P800-16/config/P800-16_cat2_ISM3SBA3-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..69356f3875162b1e8601400af3df7a41ece59873 --- /dev/null +++ b/experiments/characterization/P800-16/config/P800-16_cat2_ISM3SBA3-36LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-16 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-16/proc_input/cat2" +output_path: "experiments/characterization/P800-16/proc_output/cat2/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM3SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-16/config/P800-16_cat3_ISM3SBA3-16LKFS.yml b/experiments/characterization/P800-16/config/P800-16_cat3_ISM3SBA3-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..685cd48b49a90828ff6d6c7c2b114d0bfa7b1bdc --- /dev/null +++ b/experiments/characterization/P800-16/config/P800-16_cat3_ISM3SBA3-16LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-16 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-16/proc_input/cat3" +output_path: "experiments/characterization/P800-16/proc_output/cat3/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM3SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-16/config/P800-16_cat3_ISM3SBA3-26LKFS.yml b/experiments/characterization/P800-16/config/P800-16_cat3_ISM3SBA3-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..f0dd4844780b93b156f8b15932e0e97853380dbf --- /dev/null +++ b/experiments/characterization/P800-16/config/P800-16_cat3_ISM3SBA3-26LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-16 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-16/proc_input/cat3" +output_path: "experiments/characterization/P800-16/proc_output/cat3/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM3SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-16/config/P800-16_cat3_ISM3SBA3-36LKFS.yml b/experiments/characterization/P800-16/config/P800-16_cat3_ISM3SBA3-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..ee3d7cd98dcbd20b76e6ee74aef89ac17d121e57 --- /dev/null +++ b/experiments/characterization/P800-16/config/P800-16_cat3_ISM3SBA3-36LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-16 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-16/proc_input/cat3" +output_path: "experiments/characterization/P800-16/proc_output/cat3/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM3SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-16/config/P800-16_cat4_ISM4SBA3-16LKFS.yml b/experiments/characterization/P800-16/config/P800-16_cat4_ISM4SBA3-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..cc2169f6e20f9403eb3eed029e9619b4ed5d6c2f --- /dev/null +++ b/experiments/characterization/P800-16/config/P800-16_cat4_ISM4SBA3-16LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-16 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-16/proc_input/cat4" +output_path: "experiments/characterization/P800-16/proc_output/cat4/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM4SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-16/config/P800-16_cat4_ISM4SBA3-26LKFS.yml b/experiments/characterization/P800-16/config/P800-16_cat4_ISM4SBA3-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..1044831c8ad4d5bc13e18b57a7041e3b5859731e --- /dev/null +++ b/experiments/characterization/P800-16/config/P800-16_cat4_ISM4SBA3-26LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-16 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-16/proc_input/cat4" +output_path: "experiments/characterization/P800-16/proc_output/cat4/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM4SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-16/config/P800-16_cat4_ISM4SBA3-36LKFS.yml b/experiments/characterization/P800-16/config/P800-16_cat4_ISM4SBA3-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..d4bfd1df193bc965f1c40ec2b29a93dbf41fc592 --- /dev/null +++ b/experiments/characterization/P800-16/config/P800-16_cat4_ISM4SBA3-36LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-16 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-16/proc_input/cat4" +output_path: "experiments/characterization/P800-16/proc_output/cat4/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM4SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-16/config/P800-16_cat5_ISM4SBA3-16LKFS.yml b/experiments/characterization/P800-16/config/P800-16_cat5_ISM4SBA3-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..bbc215328c4d4f772763f414ec7530c9e00f4220 --- /dev/null +++ b/experiments/characterization/P800-16/config/P800-16_cat5_ISM4SBA3-16LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-16 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-16/proc_input/cat5" +output_path: "experiments/characterization/P800-16/proc_output/cat5/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM4SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-16/config/P800-16_cat5_ISM4SBA3-26LKFS.yml b/experiments/characterization/P800-16/config/P800-16_cat5_ISM4SBA3-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..50aac31965222d208126a3eddd199ce5a7d6742a --- /dev/null +++ b/experiments/characterization/P800-16/config/P800-16_cat5_ISM4SBA3-26LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-16 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-16/proc_input/cat5" +output_path: "experiments/characterization/P800-16/proc_output/cat5/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM4SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-16/config/P800-16_cat5_ISM4SBA3-36LKFS.yml b/experiments/characterization/P800-16/config/P800-16_cat5_ISM4SBA3-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..b6766fc846aac9a260f47e28e5ef960d0c52bf99 --- /dev/null +++ b/experiments/characterization/P800-16/config/P800-16_cat5_ISM4SBA3-36LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-16 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-16/proc_input/cat5" +output_path: "experiments/characterization/P800-16/proc_output/cat5/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM4SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-16/config/P800-16_cat6_ISM4SBA3-16LKFS.yml b/experiments/characterization/P800-16/config/P800-16_cat6_ISM4SBA3-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..f2589e9b022adc58c761a148a82dedefeb5867a5 --- /dev/null +++ b/experiments/characterization/P800-16/config/P800-16_cat6_ISM4SBA3-16LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-16 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-16/proc_input/cat6" +output_path: "experiments/characterization/P800-16/proc_output/cat6/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM4SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-16/config/P800-16_cat6_ISM4SBA3-26LKFS.yml b/experiments/characterization/P800-16/config/P800-16_cat6_ISM4SBA3-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..9f6345e7a8d30e63c9b4cca8770b23a0417392e5 --- /dev/null +++ b/experiments/characterization/P800-16/config/P800-16_cat6_ISM4SBA3-26LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-16 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-16/proc_input/cat6" +output_path: "experiments/characterization/P800-16/proc_output/cat6/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM4SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-16/config/P800-16_cat6_ISM4SBA3-36LKFS.yml b/experiments/characterization/P800-16/config/P800-16_cat6_ISM4SBA3-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..bdc9c3caabdf891a52bc833c7027cc5bebcc03d9 --- /dev/null +++ b/experiments/characterization/P800-16/config/P800-16_cat6_ISM4SBA3-36LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-16 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-16/proc_input/cat6" +output_path: "experiments/characterization/P800-16/proc_output/cat6/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM4SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-16/proc_input/cat1/.gitkeep b/experiments/characterization/P800-16/proc_input/cat1/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-16/proc_input/cat2/.gitkeep b/experiments/characterization/P800-16/proc_input/cat2/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-16/proc_input/cat3/.gitkeep b/experiments/characterization/P800-16/proc_input/cat3/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-16/proc_input/cat4/.gitkeep b/experiments/characterization/P800-16/proc_input/cat4/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-16/proc_input/cat5/.gitkeep b/experiments/characterization/P800-16/proc_input/cat5/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-16/proc_input/cat6/.gitkeep b/experiments/characterization/P800-16/proc_input/cat6/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-16/proc_output/cat1/out_-16LKFS/.gitkeep b/experiments/characterization/P800-16/proc_output/cat1/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-16/proc_output/cat1/out_-26LKFS/.gitkeep b/experiments/characterization/P800-16/proc_output/cat1/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-16/proc_output/cat1/out_-36LKFS/.gitkeep b/experiments/characterization/P800-16/proc_output/cat1/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-16/proc_output/cat2/out_-16LKFS/.gitkeep b/experiments/characterization/P800-16/proc_output/cat2/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-16/proc_output/cat2/out_-26LKFS/.gitkeep b/experiments/characterization/P800-16/proc_output/cat2/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-16/proc_output/cat2/out_-36LKFS/.gitkeep b/experiments/characterization/P800-16/proc_output/cat2/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-16/proc_output/cat3/out_-16LKFS/.gitkeep b/experiments/characterization/P800-16/proc_output/cat3/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-16/proc_output/cat3/out_-26LKFS/.gitkeep b/experiments/characterization/P800-16/proc_output/cat3/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-16/proc_output/cat3/out_-36LKFS/.gitkeep b/experiments/characterization/P800-16/proc_output/cat3/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-16/proc_output/cat4/out_-16LKFS/.gitkeep b/experiments/characterization/P800-16/proc_output/cat4/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-16/proc_output/cat4/out_-26LKFS/.gitkeep b/experiments/characterization/P800-16/proc_output/cat4/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-16/proc_output/cat4/out_-36LKFS/.gitkeep b/experiments/characterization/P800-16/proc_output/cat4/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-16/proc_output/cat5/out_-16LKFS/.gitkeep b/experiments/characterization/P800-16/proc_output/cat5/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-16/proc_output/cat5/out_-26LKFS/.gitkeep b/experiments/characterization/P800-16/proc_output/cat5/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-16/proc_output/cat5/out_-36LKFS/.gitkeep b/experiments/characterization/P800-16/proc_output/cat5/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-17/config/P800-17_cat1_ISM1SBA3-16LKFS.yml b/experiments/characterization/P800-17/config/P800-17_cat1_ISM1SBA3-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..0942c97579bb39fe7f00cfc682f3fed38b287a75 --- /dev/null +++ b/experiments/characterization/P800-17/config/P800-17_cat1_ISM1SBA3-16LKFS.yml @@ -0,0 +1,343 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-17 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-17/proc_input/cat1" +output_path: "experiments/characterization/P800-17/proc_output/cat1/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM1SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 34 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 26 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL OSBA clean conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c11: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c13: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX OSBA FER conditions ### + c14: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX OSBA clean conditions ### + c17: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c18: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c28: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FX ISM3 + HOA3 conditions ### + c31: + type: ivas_combined + bitrates: + - 24400 + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas_combined + bitrates: + - 32000 + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas_combined + bitrates: + - 48000 + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas_combined + bitrates: + - 64000 + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas_combined + bitrates: + - 96000 + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas_combined + bitrates: + - 128000 + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-17/config/P800-17_cat1_ISM1SBA3-26LKFS.yml b/experiments/characterization/P800-17/config/P800-17_cat1_ISM1SBA3-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..b346e2ba5538336e4f8d1150bfbee25c61c49abc --- /dev/null +++ b/experiments/characterization/P800-17/config/P800-17_cat1_ISM1SBA3-26LKFS.yml @@ -0,0 +1,343 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-17 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-17/proc_input/cat1" +output_path: "experiments/characterization/P800-17/proc_output/cat1/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM1SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 34 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 26 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL OSBA clean conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c11: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c13: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX OSBA FER conditions ### + c14: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX OSBA clean conditions ### + c17: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c18: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c28: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FX ISM3 + HOA3 conditions ### + c31: + type: ivas_combined + bitrates: + - 24400 + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas_combined + bitrates: + - 32000 + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas_combined + bitrates: + - 48000 + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas_combined + bitrates: + - 64000 + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas_combined + bitrates: + - 96000 + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas_combined + bitrates: + - 128000 + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-17/config/P800-17_cat1_ISM1SBA3-36LKFS.yml b/experiments/characterization/P800-17/config/P800-17_cat1_ISM1SBA3-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..14e5df70a740047651e54706c8058b1a36a6ee08 --- /dev/null +++ b/experiments/characterization/P800-17/config/P800-17_cat1_ISM1SBA3-36LKFS.yml @@ -0,0 +1,343 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-17 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-17/proc_input/cat1" +output_path: "experiments/characterization/P800-17/proc_output/cat1/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM1SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 34 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 26 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL OSBA clean conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c11: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c13: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX OSBA FER conditions ### + c14: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX OSBA clean conditions ### + c17: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c18: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c28: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FX ISM3 + HOA3 conditions ### + c31: + type: ivas_combined + bitrates: + - 24400 + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas_combined + bitrates: + - 32000 + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas_combined + bitrates: + - 48000 + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas_combined + bitrates: + - 64000 + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas_combined + bitrates: + - 96000 + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas_combined + bitrates: + - 128000 + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-17/config/P800-17_cat2_ISM2SBA3-16LKFS.yml b/experiments/characterization/P800-17/config/P800-17_cat2_ISM2SBA3-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..2c41b789f9d7705ac04478aaec0b3128fc06b498 --- /dev/null +++ b/experiments/characterization/P800-17/config/P800-17_cat2_ISM2SBA3-16LKFS.yml @@ -0,0 +1,343 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-17 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-17/proc_input/cat2" +output_path: "experiments/characterization/P800-17/proc_output/cat2/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 34 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 26 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL OSBA clean conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c11: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c13: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX OSBA FER conditions ### + c14: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX OSBA clean conditions ### + c17: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c18: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c28: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FX ISM3 + HOA3 conditions ### + c31: + type: ivas_combined + bitrates: + - 24400 + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas_combined + bitrates: + - 32000 + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas_combined + bitrates: + - 48000 + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas_combined + bitrates: + - 64000 + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas_combined + bitrates: + - 96000 + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas_combined + bitrates: + - 128000 + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-17/config/P800-17_cat2_ISM2SBA3-26LKFS.yml b/experiments/characterization/P800-17/config/P800-17_cat2_ISM2SBA3-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..7d68bed13179b0d3d797287c1ab4187571e01c5d --- /dev/null +++ b/experiments/characterization/P800-17/config/P800-17_cat2_ISM2SBA3-26LKFS.yml @@ -0,0 +1,343 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-17 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-17/proc_input/cat2" +output_path: "experiments/characterization/P800-17/proc_output/cat2/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 34 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 26 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL OSBA clean conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c11: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c13: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX OSBA FER conditions ### + c14: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX OSBA clean conditions ### + c17: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c18: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c28: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FX ISM3 + HOA3 conditions ### + c31: + type: ivas_combined + bitrates: + - 24400 + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas_combined + bitrates: + - 32000 + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas_combined + bitrates: + - 48000 + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas_combined + bitrates: + - 64000 + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas_combined + bitrates: + - 96000 + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas_combined + bitrates: + - 128000 + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-17/config/P800-17_cat2_ISM2SBA3-36LKFS.yml b/experiments/characterization/P800-17/config/P800-17_cat2_ISM2SBA3-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..7902f06cbc6cd4128ed69c79e7b01ddeef54a834 --- /dev/null +++ b/experiments/characterization/P800-17/config/P800-17_cat2_ISM2SBA3-36LKFS.yml @@ -0,0 +1,343 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-17 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-17/proc_input/cat2" +output_path: "experiments/characterization/P800-17/proc_output/cat2/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 34 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 26 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL OSBA clean conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c11: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c13: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX OSBA FER conditions ### + c14: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX OSBA clean conditions ### + c17: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c18: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c28: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FX ISM3 + HOA3 conditions ### + c31: + type: ivas_combined + bitrates: + - 24400 + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas_combined + bitrates: + - 32000 + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas_combined + bitrates: + - 48000 + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas_combined + bitrates: + - 64000 + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas_combined + bitrates: + - 96000 + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas_combined + bitrates: + - 128000 + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-17/config/P800-17_cat3_ISM3SBA3-16LKFS.yml b/experiments/characterization/P800-17/config/P800-17_cat3_ISM3SBA3-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..96bb9ff5dc84e4fe5a6e048bc4cdb2aa2d865990 --- /dev/null +++ b/experiments/characterization/P800-17/config/P800-17_cat3_ISM3SBA3-16LKFS.yml @@ -0,0 +1,343 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-17 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-17/proc_input/cat3" +output_path: "experiments/characterization/P800-17/proc_output/cat3/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM3SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 34 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 26 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL OSBA clean conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c11: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c13: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX OSBA FER conditions ### + c14: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX OSBA clean conditions ### + c17: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c18: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c28: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FX ISM3 + HOA3 conditions ### + c31: + type: ivas_combined + bitrates: + - 24400 + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas_combined + bitrates: + - 32000 + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas_combined + bitrates: + - 48000 + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas_combined + bitrates: + - 64000 + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas_combined + bitrates: + - 96000 + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas_combined + bitrates: + - 128000 + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-17/config/P800-17_cat3_ISM3SBA3-26LKFS.yml b/experiments/characterization/P800-17/config/P800-17_cat3_ISM3SBA3-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..cc6900de61f795429d0145a671e64df0f8385c82 --- /dev/null +++ b/experiments/characterization/P800-17/config/P800-17_cat3_ISM3SBA3-26LKFS.yml @@ -0,0 +1,343 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-17 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-17/proc_input/cat3" +output_path: "experiments/characterization/P800-17/proc_output/cat3/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM3SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 34 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 26 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL OSBA clean conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c11: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c13: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX OSBA FER conditions ### + c14: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX OSBA clean conditions ### + c17: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c18: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c28: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FX ISM3 + HOA3 conditions ### + c31: + type: ivas_combined + bitrates: + - 24400 + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas_combined + bitrates: + - 32000 + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas_combined + bitrates: + - 48000 + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas_combined + bitrates: + - 64000 + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas_combined + bitrates: + - 96000 + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas_combined + bitrates: + - 128000 + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-17/config/P800-17_cat3_ISM3SBA3-36LKFS.yml b/experiments/characterization/P800-17/config/P800-17_cat3_ISM3SBA3-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..3f089c2bc7198c05f0d232392a26723ecff241b9 --- /dev/null +++ b/experiments/characterization/P800-17/config/P800-17_cat3_ISM3SBA3-36LKFS.yml @@ -0,0 +1,343 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-17 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-17/proc_input/cat3" +output_path: "experiments/characterization/P800-17/proc_output/cat3/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM3SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 34 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 26 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL OSBA clean conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c11: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c13: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX OSBA FER conditions ### + c14: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX OSBA clean conditions ### + c17: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c18: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c28: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FX ISM3 + HOA3 conditions ### + c31: + type: ivas_combined + bitrates: + - 24400 + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas_combined + bitrates: + - 32000 + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas_combined + bitrates: + - 48000 + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas_combined + bitrates: + - 64000 + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas_combined + bitrates: + - 96000 + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas_combined + bitrates: + - 128000 + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-17/config/P800-17_cat4_ISM4SBA3-16LKFS.yml b/experiments/characterization/P800-17/config/P800-17_cat4_ISM4SBA3-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..e14962b7a30b3430a351530bd3666126ffc77d8d --- /dev/null +++ b/experiments/characterization/P800-17/config/P800-17_cat4_ISM4SBA3-16LKFS.yml @@ -0,0 +1,343 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-17 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-17/proc_input/cat4" +output_path: "experiments/characterization/P800-17/proc_output/cat4/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM4SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 34 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 26 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL OSBA clean conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c11: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c13: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX OSBA FER conditions ### + c14: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX OSBA clean conditions ### + c17: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c18: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c28: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FX ISM3 + HOA3 conditions ### + c31: + type: ivas_combined + bitrates: + - 24400 + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas_combined + bitrates: + - 32000 + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas_combined + bitrates: + - 48000 + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas_combined + bitrates: + - 64000 + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas_combined + bitrates: + - 96000 + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas_combined + bitrates: + - 128000 + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-17/config/P800-17_cat4_ISM4SBA3-26LKFS.yml b/experiments/characterization/P800-17/config/P800-17_cat4_ISM4SBA3-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..325d9f41c3405665b85b07ea9caf3e4e27077df9 --- /dev/null +++ b/experiments/characterization/P800-17/config/P800-17_cat4_ISM4SBA3-26LKFS.yml @@ -0,0 +1,343 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-17 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-17/proc_input/cat4" +output_path: "experiments/characterization/P800-17/proc_output/cat4/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM4SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 34 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 26 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL OSBA clean conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c11: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c13: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX OSBA FER conditions ### + c14: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX OSBA clean conditions ### + c17: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c18: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c28: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FX ISM3 + HOA3 conditions ### + c31: + type: ivas_combined + bitrates: + - 24400 + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas_combined + bitrates: + - 32000 + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas_combined + bitrates: + - 48000 + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas_combined + bitrates: + - 64000 + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas_combined + bitrates: + - 96000 + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas_combined + bitrates: + - 128000 + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-17/config/P800-17_cat4_ISM4SBA3-36LKFS.yml b/experiments/characterization/P800-17/config/P800-17_cat4_ISM4SBA3-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..12b8323b581069b544fc40fe6ee25e771b5398c6 --- /dev/null +++ b/experiments/characterization/P800-17/config/P800-17_cat4_ISM4SBA3-36LKFS.yml @@ -0,0 +1,343 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-17 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-17/proc_input/cat4" +output_path: "experiments/characterization/P800-17/proc_output/cat4/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM4SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 34 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 26 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL OSBA clean conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c11: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c13: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX OSBA FER conditions ### + c14: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX OSBA clean conditions ### + c17: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c18: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c28: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FX ISM3 + HOA3 conditions ### + c31: + type: ivas_combined + bitrates: + - 24400 + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas_combined + bitrates: + - 32000 + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas_combined + bitrates: + - 48000 + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas_combined + bitrates: + - 64000 + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas_combined + bitrates: + - 96000 + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas_combined + bitrates: + - 128000 + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-17/config/P800-17_cat5_ISM2SBA3-16LKFS.yml b/experiments/characterization/P800-17/config/P800-17_cat5_ISM2SBA3-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..012351b44adb34c76e5ed8f0a60f51011f082238 --- /dev/null +++ b/experiments/characterization/P800-17/config/P800-17_cat5_ISM2SBA3-16LKFS.yml @@ -0,0 +1,343 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-17 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-17/proc_input/cat5" +output_path: "experiments/characterization/P800-17/proc_output/cat5/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 34 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 26 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL OSBA clean conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c11: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c13: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX OSBA FER conditions ### + c14: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX OSBA clean conditions ### + c17: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c18: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c28: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FX ISM3 + HOA3 conditions ### + c31: + type: ivas_combined + bitrates: + - 24400 + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas_combined + bitrates: + - 32000 + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas_combined + bitrates: + - 48000 + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas_combined + bitrates: + - 64000 + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas_combined + bitrates: + - 96000 + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas_combined + bitrates: + - 128000 + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-17/config/P800-17_cat5_ISM2SBA3-26LKFS.yml b/experiments/characterization/P800-17/config/P800-17_cat5_ISM2SBA3-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..7f8473978cf2ee1229baa312978b6ab1e6b1fdf4 --- /dev/null +++ b/experiments/characterization/P800-17/config/P800-17_cat5_ISM2SBA3-26LKFS.yml @@ -0,0 +1,343 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-17 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-17/proc_input/cat5" +output_path: "experiments/characterization/P800-17/proc_output/cat5/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 34 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 26 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL OSBA clean conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c11: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c13: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX OSBA FER conditions ### + c14: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX OSBA clean conditions ### + c17: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c18: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c28: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FX ISM3 + HOA3 conditions ### + c31: + type: ivas_combined + bitrates: + - 24400 + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas_combined + bitrates: + - 32000 + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas_combined + bitrates: + - 48000 + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas_combined + bitrates: + - 64000 + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas_combined + bitrates: + - 96000 + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas_combined + bitrates: + - 128000 + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-17/config/P800-17_cat5_ISM2SBA3-36LKFS.yml b/experiments/characterization/P800-17/config/P800-17_cat5_ISM2SBA3-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..3e362ebb76f9e9ef15e96edcf83b139970e5db76 --- /dev/null +++ b/experiments/characterization/P800-17/config/P800-17_cat5_ISM2SBA3-36LKFS.yml @@ -0,0 +1,343 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-17 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-17/proc_input/cat5" +output_path: "experiments/characterization/P800-17/proc_output/cat5/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 34 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 26 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL OSBA clean conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c11: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c13: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX OSBA FER conditions ### + c14: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX OSBA clean conditions ### + c17: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c18: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c28: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FX ISM3 + HOA3 conditions ### + c31: + type: ivas_combined + bitrates: + - 24400 + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas_combined + bitrates: + - 32000 + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas_combined + bitrates: + - 48000 + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas_combined + bitrates: + - 64000 + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas_combined + bitrates: + - 96000 + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas_combined + bitrates: + - 128000 + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-17/config/P800-17_cat6_ISM3SBA3-16LKFS.yml b/experiments/characterization/P800-17/config/P800-17_cat6_ISM3SBA3-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..5f27f6b77cfb682985580c113203b9085228378e --- /dev/null +++ b/experiments/characterization/P800-17/config/P800-17_cat6_ISM3SBA3-16LKFS.yml @@ -0,0 +1,343 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-17 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-17/proc_input/cat6" +output_path: "experiments/characterization/P800-17/proc_output/cat6/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM3SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 34 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 26 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL OSBA clean conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c11: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c13: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX OSBA FER conditions ### + c14: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX OSBA clean conditions ### + c17: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c18: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c28: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FX ISM3 + HOA3 conditions ### + c31: + type: ivas_combined + bitrates: + - 24400 + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas_combined + bitrates: + - 32000 + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas_combined + bitrates: + - 48000 + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas_combined + bitrates: + - 64000 + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas_combined + bitrates: + - 96000 + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas_combined + bitrates: + - 128000 + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-17/config/P800-17_cat6_ISM3SBA3-26LKFS.yml b/experiments/characterization/P800-17/config/P800-17_cat6_ISM3SBA3-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..d245467e719621d72be2fe5990c8ffbc07d1b75f --- /dev/null +++ b/experiments/characterization/P800-17/config/P800-17_cat6_ISM3SBA3-26LKFS.yml @@ -0,0 +1,343 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-17 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-17/proc_input/cat6" +output_path: "experiments/characterization/P800-17/proc_output/cat6/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM3SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 34 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 26 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL OSBA clean conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c11: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c13: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX OSBA FER conditions ### + c14: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX OSBA clean conditions ### + c17: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c18: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c28: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FX ISM3 + HOA3 conditions ### + c31: + type: ivas_combined + bitrates: + - 24400 + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas_combined + bitrates: + - 32000 + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas_combined + bitrates: + - 48000 + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas_combined + bitrates: + - 64000 + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas_combined + bitrates: + - 96000 + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas_combined + bitrates: + - 128000 + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-17/config/P800-17_cat6_ISM3SBA3-36LKFS.yml b/experiments/characterization/P800-17/config/P800-17_cat6_ISM3SBA3-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..5aaee137417695478ea8cefe0c05344e5ce4c855 --- /dev/null +++ b/experiments/characterization/P800-17/config/P800-17_cat6_ISM3SBA3-36LKFS.yml @@ -0,0 +1,343 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-17 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-17/proc_input/cat6" +output_path: "experiments/characterization/P800-17/proc_output/cat6/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM3SBA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 34 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 26 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL OSBA clean conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c11: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c13: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX OSBA FER conditions ### + c14: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX OSBA clean conditions ### + c17: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c18: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c28: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FX ISM3 + HOA3 conditions ### + c31: + type: ivas_combined + bitrates: + - 24400 + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas_combined + bitrates: + - 32000 + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas_combined + bitrates: + - 48000 + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas_combined + bitrates: + - 64000 + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas_combined + bitrates: + - 96000 + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas_combined + bitrates: + - 128000 + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-17/proc_input/cat1/.gitkeep b/experiments/characterization/P800-17/proc_input/cat1/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-17/proc_input/cat2/.gitkeep b/experiments/characterization/P800-17/proc_input/cat2/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-17/proc_input/cat3/.gitkeep b/experiments/characterization/P800-17/proc_input/cat3/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-17/proc_input/cat4/.gitkeep b/experiments/characterization/P800-17/proc_input/cat4/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-17/proc_input/cat5/.gitkeep b/experiments/characterization/P800-17/proc_input/cat5/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-17/proc_input/cat6/.gitkeep b/experiments/characterization/P800-17/proc_input/cat6/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-17/proc_output/cat1/out_-16LKFS/.gitkeep b/experiments/characterization/P800-17/proc_output/cat1/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-17/proc_output/cat1/out_-26LKFS/.gitkeep b/experiments/characterization/P800-17/proc_output/cat1/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-17/proc_output/cat1/out_-36LKFS/.gitkeep b/experiments/characterization/P800-17/proc_output/cat1/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-17/proc_output/cat2/out_-16LKFS/.gitkeep b/experiments/characterization/P800-17/proc_output/cat2/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-17/proc_output/cat2/out_-26LKFS/.gitkeep b/experiments/characterization/P800-17/proc_output/cat2/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-17/proc_output/cat2/out_-36LKFS/.gitkeep b/experiments/characterization/P800-17/proc_output/cat2/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-17/proc_output/cat3/out_-16LKFS/.gitkeep b/experiments/characterization/P800-17/proc_output/cat3/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-17/proc_output/cat3/out_-26LKFS/.gitkeep b/experiments/characterization/P800-17/proc_output/cat3/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-17/proc_output/cat3/out_-36LKFS/.gitkeep b/experiments/characterization/P800-17/proc_output/cat3/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-17/proc_output/cat4/out_-16LKFS/.gitkeep b/experiments/characterization/P800-17/proc_output/cat4/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-17/proc_output/cat4/out_-26LKFS/.gitkeep b/experiments/characterization/P800-17/proc_output/cat4/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-17/proc_output/cat4/out_-36LKFS/.gitkeep b/experiments/characterization/P800-17/proc_output/cat4/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-17/proc_output/cat5/out_-16LKFS/.gitkeep b/experiments/characterization/P800-17/proc_output/cat5/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-17/proc_output/cat5/out_-26LKFS/.gitkeep b/experiments/characterization/P800-17/proc_output/cat5/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-17/proc_output/cat5/out_-36LKFS/.gitkeep b/experiments/characterization/P800-17/proc_output/cat5/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-17/proc_output/cat6/out_-16LKFS/.gitkeep b/experiments/characterization/P800-17/proc_output/cat6/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-17/proc_output/cat6/out_-26LKFS/.gitkeep b/experiments/characterization/P800-17/proc_output/cat6/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-17/proc_output/cat6/out_-36LKFS/.gitkeep b/experiments/characterization/P800-17/proc_output/cat6/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-18/background_noise/.gitkeep b/experiments/characterization/P800-18/background_noise/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-18/config/P800-18_cat1_ISM1MASA2DIR2-16LKFS.yml b/experiments/characterization/P800-18/config/P800-18_cat1_ISM1MASA2DIR2-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..9590ce13253f1a532d6a211e83bd6d851e27cda1 --- /dev/null +++ b/experiments/characterization/P800-18/config/P800-18_cat1_ISM1MASA2DIR2-16LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-18 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-18/proc_input/cat1" +output_path: "experiments/characterization/P800-18/proc_output/cat1/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM1MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-18/config/P800-18_cat1_ISM1MASA2DIR2-26LKFS.yml b/experiments/characterization/P800-18/config/P800-18_cat1_ISM1MASA2DIR2-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..b5a226b9727fdc6be9f4e1eea11da89c246b0cec --- /dev/null +++ b/experiments/characterization/P800-18/config/P800-18_cat1_ISM1MASA2DIR2-26LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-18 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-18/proc_input/cat1" +output_path: "experiments/characterization/P800-18/proc_output/cat1/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM1MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-18/config/P800-18_cat1_ISM1MASA2DIR2-36LKFS.yml b/experiments/characterization/P800-18/config/P800-18_cat1_ISM1MASA2DIR2-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..8cb2c790b78910609ba15681e87a587e6d3a5874 --- /dev/null +++ b/experiments/characterization/P800-18/config/P800-18_cat1_ISM1MASA2DIR2-36LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-18 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-18/proc_input/cat1" +output_path: "experiments/characterization/P800-18/proc_output/cat1/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM1MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-18/config/P800-18_cat2_ISM1MASA2DIR2-16LKFS.yml b/experiments/characterization/P800-18/config/P800-18_cat2_ISM1MASA2DIR2-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..255c9bb33abad64e629f4e388cc35cf9531494c0 --- /dev/null +++ b/experiments/characterization/P800-18/config/P800-18_cat2_ISM1MASA2DIR2-16LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-18 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-18/proc_input/cat2" +output_path: "experiments/characterization/P800-18/proc_output/cat2/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM1MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-18/config/P800-18_cat2_ISM1MASA2DIR2-26LKFS.yml b/experiments/characterization/P800-18/config/P800-18_cat2_ISM1MASA2DIR2-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..1779e1d8e93b49da538f4253a5d3d4863b3b2ec5 --- /dev/null +++ b/experiments/characterization/P800-18/config/P800-18_cat2_ISM1MASA2DIR2-26LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-18 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-18/proc_input/cat2" +output_path: "experiments/characterization/P800-18/proc_output/cat2/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM1MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-18/config/P800-18_cat2_ISM1MASA2DIR2-36LKFS.yml b/experiments/characterization/P800-18/config/P800-18_cat2_ISM1MASA2DIR2-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..f276111e18fe2b143416722b9d7492c3fdc0c83c --- /dev/null +++ b/experiments/characterization/P800-18/config/P800-18_cat2_ISM1MASA2DIR2-36LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-18 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-18/proc_input/cat2" +output_path: "experiments/characterization/P800-18/proc_output/cat2/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM1MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-18/config/P800-18_cat3_ISM2MASA2DIR2-16LKFS.yml b/experiments/characterization/P800-18/config/P800-18_cat3_ISM2MASA2DIR2-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..61e4712b49bdaf9d076987a8ed9cd14540670279 --- /dev/null +++ b/experiments/characterization/P800-18/config/P800-18_cat3_ISM2MASA2DIR2-16LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-18 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-18/proc_input/cat3" +output_path: "experiments/characterization/P800-18/proc_output/cat3/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-18/config/P800-18_cat3_ISM2MASA2DIR2-26LKFS.yml b/experiments/characterization/P800-18/config/P800-18_cat3_ISM2MASA2DIR2-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..02f56ec3cfafdeae7b63ff7b110ba2a71ce999ae --- /dev/null +++ b/experiments/characterization/P800-18/config/P800-18_cat3_ISM2MASA2DIR2-26LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-18 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-18/proc_input/cat3" +output_path: "experiments/characterization/P800-18/proc_output/cat3/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-18/config/P800-18_cat3_ISM2MASA2DIR2-36LKFS.yml b/experiments/characterization/P800-18/config/P800-18_cat3_ISM2MASA2DIR2-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..73fe9c03b5d50114e1de1e55adfef3e291741077 --- /dev/null +++ b/experiments/characterization/P800-18/config/P800-18_cat3_ISM2MASA2DIR2-36LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-18 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-18/proc_input/cat3" +output_path: "experiments/characterization/P800-18/proc_output/cat3/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-18/config/P800-18_cat4_ISM2MASA2DIR2-16LKFS.yml b/experiments/characterization/P800-18/config/P800-18_cat4_ISM2MASA2DIR2-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..9c29e8937a7a61827deb9d7b26464782d9c068fb --- /dev/null +++ b/experiments/characterization/P800-18/config/P800-18_cat4_ISM2MASA2DIR2-16LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-18 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-18/proc_input/cat4" +output_path: "experiments/characterization/P800-18/proc_output/cat4/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-18/config/P800-18_cat4_ISM2MASA2DIR2-26LKFS.yml b/experiments/characterization/P800-18/config/P800-18_cat4_ISM2MASA2DIR2-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..f744db65b3b0ab47a9b9d3c2a12d5f4c54b38e56 --- /dev/null +++ b/experiments/characterization/P800-18/config/P800-18_cat4_ISM2MASA2DIR2-26LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-18 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-18/proc_input/cat4" +output_path: "experiments/characterization/P800-18/proc_output/cat4/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-18/config/P800-18_cat4_ISM2MASA2DIR2-36LKFS.yml b/experiments/characterization/P800-18/config/P800-18_cat4_ISM2MASA2DIR2-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..6f3277791778abbff0d16a5ea50fd09265799318 --- /dev/null +++ b/experiments/characterization/P800-18/config/P800-18_cat4_ISM2MASA2DIR2-36LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-18 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-18/proc_input/cat4" +output_path: "experiments/characterization/P800-18/proc_output/cat4/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-18/config/P800-18_cat5_ISM1MASA2DIR2-16LKFS.yml b/experiments/characterization/P800-18/config/P800-18_cat5_ISM1MASA2DIR2-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..b73da4de9bdd0f426f76394c24eb63cc2616252f --- /dev/null +++ b/experiments/characterization/P800-18/config/P800-18_cat5_ISM1MASA2DIR2-16LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-18 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-18/proc_input/cat5" +output_path: "experiments/characterization/P800-18/proc_output/cat5/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM1MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-18/config/P800-18_cat5_ISM1MASA2DIR2-26LKFS.yml b/experiments/characterization/P800-18/config/P800-18_cat5_ISM1MASA2DIR2-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..e722124dd234095ef41df7860be8fe0c3bd2f2fe --- /dev/null +++ b/experiments/characterization/P800-18/config/P800-18_cat5_ISM1MASA2DIR2-26LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-18 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-18/proc_input/cat5" +output_path: "experiments/characterization/P800-18/proc_output/cat5/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM1MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-18/config/P800-18_cat5_ISM1MASA2DIR2-36LKFS.yml b/experiments/characterization/P800-18/config/P800-18_cat5_ISM1MASA2DIR2-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..78c9e8ccd49f67899e1d8b0ef197343a4b3b1465 --- /dev/null +++ b/experiments/characterization/P800-18/config/P800-18_cat5_ISM1MASA2DIR2-36LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-18 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-18/proc_input/cat5" +output_path: "experiments/characterization/P800-18/proc_output/cat5/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM1MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-18/config/P800-18_cat6_ISM2MASA2DIR2-16LKFS.yml b/experiments/characterization/P800-18/config/P800-18_cat6_ISM2MASA2DIR2-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..396c549518461eb81d56f9f38dbd9f896e23d345 --- /dev/null +++ b/experiments/characterization/P800-18/config/P800-18_cat6_ISM2MASA2DIR2-16LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-18 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-18/proc_input/cat6" +output_path: "experiments/characterization/P800-18/proc_output/cat6/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-18/config/P800-18_cat6_ISM2MASA2DIR2-26LKFS.yml b/experiments/characterization/P800-18/config/P800-18_cat6_ISM2MASA2DIR2-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..4ddd29ce43b88d631a8af3f76b8f2185f7822ff6 --- /dev/null +++ b/experiments/characterization/P800-18/config/P800-18_cat6_ISM2MASA2DIR2-26LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-18 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-18/proc_input/cat6" +output_path: "experiments/characterization/P800-18/proc_output/cat6/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-18/config/P800-18_cat6_ISM2MASA2DIR2-36LKFS.yml b/experiments/characterization/P800-18/config/P800-18_cat6_ISM2MASA2DIR2-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..a62e759ce5ff6be9d3fbfbb1ef54d793aea4277b --- /dev/null +++ b/experiments/characterization/P800-18/config/P800-18_cat6_ISM2MASA2DIR2-36LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-18 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-18/proc_input/cat6" +output_path: "experiments/characterization/P800-18/proc_output/cat6/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-18/proc_input/cat1/.gitkeep b/experiments/characterization/P800-18/proc_input/cat1/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-18/proc_input/cat2/.gitkeep b/experiments/characterization/P800-18/proc_input/cat2/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-18/proc_input/cat3/.gitkeep b/experiments/characterization/P800-18/proc_input/cat3/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-18/proc_input/cat4/.gitkeep b/experiments/characterization/P800-18/proc_input/cat4/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-18/proc_input/cat5/.gitkeep b/experiments/characterization/P800-18/proc_input/cat5/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-18/proc_input/cat6/.gitkeep b/experiments/characterization/P800-18/proc_input/cat6/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-18/proc_output/cat1/out_-16LKFS/.gitkeep b/experiments/characterization/P800-18/proc_output/cat1/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-18/proc_output/cat1/out_-26LKFS/.gitkeep b/experiments/characterization/P800-18/proc_output/cat1/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-18/proc_output/cat1/out_-36LKFS/.gitkeep b/experiments/characterization/P800-18/proc_output/cat1/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-18/proc_output/cat2/out_-16LKFS/.gitkeep b/experiments/characterization/P800-18/proc_output/cat2/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-18/proc_output/cat2/out_-26LKFS/.gitkeep b/experiments/characterization/P800-18/proc_output/cat2/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-18/proc_output/cat2/out_-36LKFS/.gitkeep b/experiments/characterization/P800-18/proc_output/cat2/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-18/proc_output/cat3/out_-16LKFS/.gitkeep b/experiments/characterization/P800-18/proc_output/cat3/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-18/proc_output/cat3/out_-26LKFS/.gitkeep b/experiments/characterization/P800-18/proc_output/cat3/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-18/proc_output/cat3/out_-36LKFS/.gitkeep b/experiments/characterization/P800-18/proc_output/cat3/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-18/proc_output/cat4/out_-16LKFS/.gitkeep b/experiments/characterization/P800-18/proc_output/cat4/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-18/proc_output/cat4/out_-26LKFS/.gitkeep b/experiments/characterization/P800-18/proc_output/cat4/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-18/proc_output/cat4/out_-36LKFS/.gitkeep b/experiments/characterization/P800-18/proc_output/cat4/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-18/proc_output/cat5/out_-16LKFS/.gitkeep b/experiments/characterization/P800-18/proc_output/cat5/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-18/proc_output/cat5/out_-26LKFS/.gitkeep b/experiments/characterization/P800-18/proc_output/cat5/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-18/proc_output/cat5/out_-36LKFS/.gitkeep b/experiments/characterization/P800-18/proc_output/cat5/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-18/proc_output/cat6/out_-16LKFS/.gitkeep b/experiments/characterization/P800-18/proc_output/cat6/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-18/proc_output/cat6/out_-26LKFS/.gitkeep b/experiments/characterization/P800-18/proc_output/cat6/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-18/proc_output/cat6/out_-36LKFS/.gitkeep b/experiments/characterization/P800-18/proc_output/cat6/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-19/config/P800-19_cat1_ISM3MASA2DIR2-16LKFS.yml b/experiments/characterization/P800-19/config/P800-19_cat1_ISM3MASA2DIR2-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..d3d0b4ccf08c6129d50103d62b1658271cb13137 --- /dev/null +++ b/experiments/characterization/P800-19/config/P800-19_cat1_ISM3MASA2DIR2-16LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-19 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-19/proc_input/cat1" +output_path: "experiments/characterization/P800-19/proc_output/cat1/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM3MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-19/config/P800-19_cat1_ISM3MASA2DIR2-26LKFS.yml b/experiments/characterization/P800-19/config/P800-19_cat1_ISM3MASA2DIR2-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..c07ab77a20afb1213c27bb2782f06dcf60b11818 --- /dev/null +++ b/experiments/characterization/P800-19/config/P800-19_cat1_ISM3MASA2DIR2-26LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-19 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-19/proc_input/cat1" +output_path: "experiments/characterization/P800-19/proc_output/cat1/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM3MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-19/config/P800-19_cat1_ISM3MASA2DIR2-36LKFS.yml b/experiments/characterization/P800-19/config/P800-19_cat1_ISM3MASA2DIR2-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..2b325d66705583468ccadab863de1649b1afc592 --- /dev/null +++ b/experiments/characterization/P800-19/config/P800-19_cat1_ISM3MASA2DIR2-36LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-19 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-19/proc_input/cat1" +output_path: "experiments/characterization/P800-19/proc_output/cat1/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM3MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-19/config/P800-19_cat2_ISM3MASA2DIR2-16LKFS.yml b/experiments/characterization/P800-19/config/P800-19_cat2_ISM3MASA2DIR2-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..086b364c255a6040764535012e7d70d1e38104ba --- /dev/null +++ b/experiments/characterization/P800-19/config/P800-19_cat2_ISM3MASA2DIR2-16LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-19 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-19/proc_input/cat2" +output_path: "experiments/characterization/P800-19/proc_output/cat2/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM3MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-19/config/P800-19_cat2_ISM3MASA2DIR2-26LKFS.yml b/experiments/characterization/P800-19/config/P800-19_cat2_ISM3MASA2DIR2-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..4a46c852e0ff26d775d6c14678ed5d3c9e1e41c5 --- /dev/null +++ b/experiments/characterization/P800-19/config/P800-19_cat2_ISM3MASA2DIR2-26LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-19 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-19/proc_input/cat2" +output_path: "experiments/characterization/P800-19/proc_output/cat2/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM3MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-19/config/P800-19_cat2_ISM3MASA2DIR2-36LKFS.yml b/experiments/characterization/P800-19/config/P800-19_cat2_ISM3MASA2DIR2-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..0f290a0cb08d089fc916a77a0e7281915bf45c15 --- /dev/null +++ b/experiments/characterization/P800-19/config/P800-19_cat2_ISM3MASA2DIR2-36LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-19 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-19/proc_input/cat2" +output_path: "experiments/characterization/P800-19/proc_output/cat2/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM3MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-19/config/P800-19_cat3_ISM3MASA2DIR2-16LKFS.yml b/experiments/characterization/P800-19/config/P800-19_cat3_ISM3MASA2DIR2-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..92a670068046b1f828a4756185bd2df749a25147 --- /dev/null +++ b/experiments/characterization/P800-19/config/P800-19_cat3_ISM3MASA2DIR2-16LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-19 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-19/proc_input/cat3" +output_path: "experiments/characterization/P800-19/proc_output/cat3/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM3MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-19/config/P800-19_cat3_ISM3MASA2DIR2-26LKFS.yml b/experiments/characterization/P800-19/config/P800-19_cat3_ISM3MASA2DIR2-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..50d27bc7940cd2e0164e56b93f4dbe4de1712c36 --- /dev/null +++ b/experiments/characterization/P800-19/config/P800-19_cat3_ISM3MASA2DIR2-26LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-19 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-19/proc_input/cat3" +output_path: "experiments/characterization/P800-19/proc_output/cat3/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM3MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-19/config/P800-19_cat3_ISM3MASA2DIR2-36LKFS.yml b/experiments/characterization/P800-19/config/P800-19_cat3_ISM3MASA2DIR2-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..f0358e9c3dfec7ef010b4cd2e754631135c80a8a --- /dev/null +++ b/experiments/characterization/P800-19/config/P800-19_cat3_ISM3MASA2DIR2-36LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-19 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-19/proc_input/cat3" +output_path: "experiments/characterization/P800-19/proc_output/cat3/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM3MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-19/config/P800-19_cat4_ISM4MASA2DIR2-16LKFS.yml b/experiments/characterization/P800-19/config/P800-19_cat4_ISM4MASA2DIR2-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..3423df4581d7fdc536a3b49c0de263338ffc05a9 --- /dev/null +++ b/experiments/characterization/P800-19/config/P800-19_cat4_ISM4MASA2DIR2-16LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-19 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-19/proc_input/cat4" +output_path: "experiments/characterization/P800-19/proc_output/cat4/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM4MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-19/config/P800-19_cat4_ISM4MASA2DIR2-26LKFS.yml b/experiments/characterization/P800-19/config/P800-19_cat4_ISM4MASA2DIR2-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..2ea8866477d762f4acc065002f97ac7fb55af704 --- /dev/null +++ b/experiments/characterization/P800-19/config/P800-19_cat4_ISM4MASA2DIR2-26LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-19 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-19/proc_input/cat4" +output_path: "experiments/characterization/P800-19/proc_output/cat4/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM4MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-19/config/P800-19_cat4_ISM4MASA2DIR2-36LKFS.yml b/experiments/characterization/P800-19/config/P800-19_cat4_ISM4MASA2DIR2-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..f546f0bfd3dba4c8a03f0610663da3ea272bd4f3 --- /dev/null +++ b/experiments/characterization/P800-19/config/P800-19_cat4_ISM4MASA2DIR2-36LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-19 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-19/proc_input/cat4" +output_path: "experiments/characterization/P800-19/proc_output/cat4/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM4MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-19/config/P800-19_cat5_ISM4MASA2DIR2-16LKFS.yml b/experiments/characterization/P800-19/config/P800-19_cat5_ISM4MASA2DIR2-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..bc0b10d89c9b73a51087529ccdcda142ea87b8a9 --- /dev/null +++ b/experiments/characterization/P800-19/config/P800-19_cat5_ISM4MASA2DIR2-16LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-19 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-19/proc_input/cat5" +output_path: "experiments/characterization/P800-19/proc_output/cat5/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM4MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-19/config/P800-19_cat5_ISM4MASA2DIR2-26LKFS.yml b/experiments/characterization/P800-19/config/P800-19_cat5_ISM4MASA2DIR2-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..5f6f0e58f70e2504b7519e6dbe9ae88f8403ea30 --- /dev/null +++ b/experiments/characterization/P800-19/config/P800-19_cat5_ISM4MASA2DIR2-26LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-19 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-19/proc_input/cat5" +output_path: "experiments/characterization/P800-19/proc_output/cat5/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM4MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-19/config/P800-19_cat5_ISM4MASA2DIR2-36LKFS.yml b/experiments/characterization/P800-19/config/P800-19_cat5_ISM4MASA2DIR2-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..03d5fd6931513e5af82a2492e7da29dfe04fdee5 --- /dev/null +++ b/experiments/characterization/P800-19/config/P800-19_cat5_ISM4MASA2DIR2-36LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-19 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-19/proc_input/cat5" +output_path: "experiments/characterization/P800-19/proc_output/cat5/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM4MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-19/config/P800-19_cat6_ISM4MASA2DIR2-16LKFS.yml b/experiments/characterization/P800-19/config/P800-19_cat6_ISM4MASA2DIR2-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..be25a38871f8de19c4f677bfab2777faebca003a --- /dev/null +++ b/experiments/characterization/P800-19/config/P800-19_cat6_ISM4MASA2DIR2-16LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-19 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-19/proc_input/cat6" +output_path: "experiments/characterization/P800-19/proc_output/cat6/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM4MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-19/config/P800-19_cat6_ISM4MASA2DIR2-26LKFS.yml b/experiments/characterization/P800-19/config/P800-19_cat6_ISM4MASA2DIR2-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..a3f159d05e5b4283bdc8a0dd7572f4b3943af240 --- /dev/null +++ b/experiments/characterization/P800-19/config/P800-19_cat6_ISM4MASA2DIR2-26LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-19 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-19/proc_input/cat6" +output_path: "experiments/characterization/P800-19/proc_output/cat6/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM4MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-19/config/P800-19_cat6_ISM4MASA2DIR2-36LKFS.yml b/experiments/characterization/P800-19/config/P800-19_cat6_ISM4MASA2DIR2-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..287dd9c20de4d24c7d116e8786da96d1307f1c4c --- /dev/null +++ b/experiments/characterization/P800-19/config/P800-19_cat6_ISM4MASA2DIR2-36LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-19 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-19/proc_input/cat6" +output_path: "experiments/characterization/P800-19/proc_output/cat6/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM4MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-19/proc_input/cat1/.gitkeep b/experiments/characterization/P800-19/proc_input/cat1/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-19/proc_input/cat2/.gitkeep b/experiments/characterization/P800-19/proc_input/cat2/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-19/proc_input/cat3/.gitkeep b/experiments/characterization/P800-19/proc_input/cat3/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-19/proc_input/cat4/.gitkeep b/experiments/characterization/P800-19/proc_input/cat4/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-19/proc_input/cat5/.gitkeep b/experiments/characterization/P800-19/proc_input/cat5/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-19/proc_input/cat6/.gitkeep b/experiments/characterization/P800-19/proc_input/cat6/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-19/proc_output/cat1/out_-16LKFS/.gitkeep b/experiments/characterization/P800-19/proc_output/cat1/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-19/proc_output/cat1/out_-26LKFS/.gitkeep b/experiments/characterization/P800-19/proc_output/cat1/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-19/proc_output/cat1/out_-36LKFS/.gitkeep b/experiments/characterization/P800-19/proc_output/cat1/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-19/proc_output/cat2/out_-16LKFS/.gitkeep b/experiments/characterization/P800-19/proc_output/cat2/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-19/proc_output/cat2/out_-26LKFS/.gitkeep b/experiments/characterization/P800-19/proc_output/cat2/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-19/proc_output/cat2/out_-36LKFS/.gitkeep b/experiments/characterization/P800-19/proc_output/cat2/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-19/proc_output/cat3/out_-16LKFS/.gitkeep b/experiments/characterization/P800-19/proc_output/cat3/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-19/proc_output/cat3/out_-26LKFS/.gitkeep b/experiments/characterization/P800-19/proc_output/cat3/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-19/proc_output/cat3/out_-36LKFS/.gitkeep b/experiments/characterization/P800-19/proc_output/cat3/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-19/proc_output/cat4/out_-16LKFS/.gitkeep b/experiments/characterization/P800-19/proc_output/cat4/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-19/proc_output/cat4/out_-26LKFS/.gitkeep b/experiments/characterization/P800-19/proc_output/cat4/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-19/proc_output/cat4/out_-36LKFS/.gitkeep b/experiments/characterization/P800-19/proc_output/cat4/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-19/proc_output/cat5/out_-16LKFS/.gitkeep b/experiments/characterization/P800-19/proc_output/cat5/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-19/proc_output/cat5/out_-26LKFS/.gitkeep b/experiments/characterization/P800-19/proc_output/cat5/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-19/proc_output/cat5/out_-36LKFS/.gitkeep b/experiments/characterization/P800-19/proc_output/cat5/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-19/proc_output/cat6/out_-16LKFS/.gitkeep b/experiments/characterization/P800-19/proc_output/cat6/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-19/proc_output/cat6/out_-26LKFS/.gitkeep b/experiments/characterization/P800-19/proc_output/cat6/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-19/proc_output/cat6/out_-36LKFS/.gitkeep b/experiments/characterization/P800-19/proc_output/cat6/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-2/background_noise/.gitkeep b/experiments/characterization/P800-2/background_noise/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-2/config/P800-2_cat1_STEREO-16LKFS.yml b/experiments/characterization/P800-2/config/P800-2_cat1_STEREO-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..529a380390df74651581d4fb9c33107fc2877db7 --- /dev/null +++ b/experiments/characterization/P800-2/config/P800-2_cat1_STEREO-16LKFS.yml @@ -0,0 +1,519 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-2 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-2/proc_input/cat1" +output_path: "experiments/characterization/P800-2/proc_output/cat1/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-2/background_noise/hp02n1.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-2/config/P800-2_cat1_STEREO-26LKFS.yml b/experiments/characterization/P800-2/config/P800-2_cat1_STEREO-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..a0727b961bc5760eda969cee1be09cbeeb4a9941 --- /dev/null +++ b/experiments/characterization/P800-2/config/P800-2_cat1_STEREO-26LKFS.yml @@ -0,0 +1,519 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-2 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-2/proc_input/cat1" +output_path: "experiments/characterization/P800-2/proc_output/cat1/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-2/background_noise/hp02n1.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-2/config/P800-2_cat1_STEREO-36LKFS.yml b/experiments/characterization/P800-2/config/P800-2_cat1_STEREO-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..30d7f38e0883d6a58bbd306f55116f42fd47028b --- /dev/null +++ b/experiments/characterization/P800-2/config/P800-2_cat1_STEREO-36LKFS.yml @@ -0,0 +1,519 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-2 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-2/proc_input/cat1" +output_path: "experiments/characterization/P800-2/proc_output/cat1/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-2/background_noise/hp02n1.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-2/config/P800-2_cat2_STEREO-16LKFS.yml b/experiments/characterization/P800-2/config/P800-2_cat2_STEREO-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..35785eb532874b6cccd006e80f47c1eee0b9aebb --- /dev/null +++ b/experiments/characterization/P800-2/config/P800-2_cat2_STEREO-16LKFS.yml @@ -0,0 +1,519 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-2 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-2/proc_input/cat2" +output_path: "experiments/characterization/P800-2/proc_output/cat2/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-2/background_noise/hp02n2.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-2/config/P800-2_cat2_STEREO-26LKFS.yml b/experiments/characterization/P800-2/config/P800-2_cat2_STEREO-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..307a779b042f30019c6ab3c59796dee140f8858d --- /dev/null +++ b/experiments/characterization/P800-2/config/P800-2_cat2_STEREO-26LKFS.yml @@ -0,0 +1,519 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-2 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-2/proc_input/cat2" +output_path: "experiments/characterization/P800-2/proc_output/cat2/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-2/background_noise/hp02n2.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-2/config/P800-2_cat2_STEREO-36LKFS.yml b/experiments/characterization/P800-2/config/P800-2_cat2_STEREO-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..dcf70b7465e6074a3b2f1afb4d40bec9fd37c5e7 --- /dev/null +++ b/experiments/characterization/P800-2/config/P800-2_cat2_STEREO-36LKFS.yml @@ -0,0 +1,519 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-2 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-2/proc_input/cat2" +output_path: "experiments/characterization/P800-2/proc_output/cat2/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-2/background_noise/hp02n2.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-2/config/P800-2_cat3_STEREO-16LKFS.yml b/experiments/characterization/P800-2/config/P800-2_cat3_STEREO-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..a9c783fc3303f192d9b392a6664bb66523987985 --- /dev/null +++ b/experiments/characterization/P800-2/config/P800-2_cat3_STEREO-16LKFS.yml @@ -0,0 +1,519 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-2 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-2/proc_input/cat3" +output_path: "experiments/characterization/P800-2/proc_output/cat3/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-2/background_noise/hp02n3.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-2/config/P800-2_cat3_STEREO-26LKFS.yml b/experiments/characterization/P800-2/config/P800-2_cat3_STEREO-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..4777c8669ae02c7f34212586ce608892dceccc5d --- /dev/null +++ b/experiments/characterization/P800-2/config/P800-2_cat3_STEREO-26LKFS.yml @@ -0,0 +1,519 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-2 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-2/proc_input/cat3" +output_path: "experiments/characterization/P800-2/proc_output/cat3/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-2/background_noise/hp02n3.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-2/config/P800-2_cat3_STEREO-36LKFS.yml b/experiments/characterization/P800-2/config/P800-2_cat3_STEREO-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..9e60a534a0e6b7856ce908aa7e48a521acbd0a1d --- /dev/null +++ b/experiments/characterization/P800-2/config/P800-2_cat3_STEREO-36LKFS.yml @@ -0,0 +1,519 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-2 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-2/proc_input/cat3" +output_path: "experiments/characterization/P800-2/proc_output/cat3/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-2/background_noise/hp02n3.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-2/config/P800-2_cat4_STEREO-16LKFS.yml b/experiments/characterization/P800-2/config/P800-2_cat4_STEREO-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..0425791f4260452308b076d74a769481debb33d8 --- /dev/null +++ b/experiments/characterization/P800-2/config/P800-2_cat4_STEREO-16LKFS.yml @@ -0,0 +1,519 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-2 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-2/proc_input/cat4" +output_path: "experiments/characterization/P800-2/proc_output/cat4/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-2/background_noise/hp02n4.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-2/config/P800-2_cat4_STEREO-26LKFS.yml b/experiments/characterization/P800-2/config/P800-2_cat4_STEREO-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..700eb9119ec9a3063e9c14dbc311a43164fac798 --- /dev/null +++ b/experiments/characterization/P800-2/config/P800-2_cat4_STEREO-26LKFS.yml @@ -0,0 +1,519 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-2 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-2/proc_input/cat4" +output_path: "experiments/characterization/P800-2/proc_output/cat4/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-2/background_noise/hp02n4.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-2/config/P800-2_cat4_STEREO-36LKFS.yml b/experiments/characterization/P800-2/config/P800-2_cat4_STEREO-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..13b42d22f0a2a6fbab95c6caefbf2673ee660b6f --- /dev/null +++ b/experiments/characterization/P800-2/config/P800-2_cat4_STEREO-36LKFS.yml @@ -0,0 +1,519 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-2 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-2/proc_input/cat4" +output_path: "experiments/characterization/P800-2/proc_output/cat4/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-2/background_noise/hp02n4.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-2/config/P800-2_cat5_STEREO-16LKFS.yml b/experiments/characterization/P800-2/config/P800-2_cat5_STEREO-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..95f9781029bf12098fd984aecc993f372067b874 --- /dev/null +++ b/experiments/characterization/P800-2/config/P800-2_cat5_STEREO-16LKFS.yml @@ -0,0 +1,462 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-2 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-2/proc_input/cat5" +output_path: "experiments/characterization/P800-2/proc_output/cat5/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-2/config/P800-2_cat5_STEREO-26LKFS.yml b/experiments/characterization/P800-2/config/P800-2_cat5_STEREO-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..81b57807b0dd7b84cb3a3d7813056c1ed958e89d --- /dev/null +++ b/experiments/characterization/P800-2/config/P800-2_cat5_STEREO-26LKFS.yml @@ -0,0 +1,462 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-2 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-2/proc_input/cat5" +output_path: "experiments/characterization/P800-2/proc_output/cat5/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-2/config/P800-2_cat5_STEREO-36LKFS.yml b/experiments/characterization/P800-2/config/P800-2_cat5_STEREO-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..0d1a640de15239d7618f159833747af04d7c13f0 --- /dev/null +++ b/experiments/characterization/P800-2/config/P800-2_cat5_STEREO-36LKFS.yml @@ -0,0 +1,462 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-2 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-2/proc_input/cat5" +output_path: "experiments/characterization/P800-2/proc_output/cat5/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-2/config/P800-2_cat6_STEREO-16LKFS.yml b/experiments/characterization/P800-2/config/P800-2_cat6_STEREO-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..d721ce16b6abd157715fd21cbed9a88a91e65cb3 --- /dev/null +++ b/experiments/characterization/P800-2/config/P800-2_cat6_STEREO-16LKFS.yml @@ -0,0 +1,462 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-2 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-2/proc_input/cat6" +output_path: "experiments/characterization/P800-2/proc_output/cat6/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-2/config/P800-2_cat6_STEREO-26LKFS.yml b/experiments/characterization/P800-2/config/P800-2_cat6_STEREO-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..632dd00de4c66aaaa263f8ea9082bdc4a2ff1ec0 --- /dev/null +++ b/experiments/characterization/P800-2/config/P800-2_cat6_STEREO-26LKFS.yml @@ -0,0 +1,462 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-2 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-2/proc_input/cat6" +output_path: "experiments/characterization/P800-2/proc_output/cat6/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-2/config/P800-2_cat6_STEREO-36LKFS.yml b/experiments/characterization/P800-2/config/P800-2_cat6_STEREO-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..a69540ddfa1e366a1efebeb742ef290ff916e859 --- /dev/null +++ b/experiments/characterization/P800-2/config/P800-2_cat6_STEREO-36LKFS.yml @@ -0,0 +1,462 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-2 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-2/proc_input/cat6" +output_path: "experiments/characterization/P800-2/proc_output/cat6/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-2/proc_input/cat1/.gitkeep b/experiments/characterization/P800-2/proc_input/cat1/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-2/proc_input/cat2/.gitkeep b/experiments/characterization/P800-2/proc_input/cat2/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-2/proc_input/cat3/.gitkeep b/experiments/characterization/P800-2/proc_input/cat3/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-2/proc_input/cat4/.gitkeep b/experiments/characterization/P800-2/proc_input/cat4/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-2/proc_input/cat5/.gitkeep b/experiments/characterization/P800-2/proc_input/cat5/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-2/proc_input/cat6/.gitkeep b/experiments/characterization/P800-2/proc_input/cat6/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-2/proc_output/cat1/out_-16LKFS/.gitkeep b/experiments/characterization/P800-2/proc_output/cat1/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-2/proc_output/cat1/out_-26LKFS/.gitkeep b/experiments/characterization/P800-2/proc_output/cat1/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-2/proc_output/cat1/out_-36LKFS/.gitkeep b/experiments/characterization/P800-2/proc_output/cat1/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-2/proc_output/cat2/out_-16LKFS/.gitkeep b/experiments/characterization/P800-2/proc_output/cat2/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-2/proc_output/cat2/out_-26LKFS/.gitkeep b/experiments/characterization/P800-2/proc_output/cat2/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-2/proc_output/cat2/out_-36LKFS/.gitkeep b/experiments/characterization/P800-2/proc_output/cat2/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-2/proc_output/cat3/out_-16LKFS/.gitkeep b/experiments/characterization/P800-2/proc_output/cat3/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-2/proc_output/cat3/out_-26LKFS/.gitkeep b/experiments/characterization/P800-2/proc_output/cat3/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-2/proc_output/cat3/out_-36LKFS/.gitkeep b/experiments/characterization/P800-2/proc_output/cat3/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-2/proc_output/cat4/out_-16LKFS/.gitkeep b/experiments/characterization/P800-2/proc_output/cat4/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-2/proc_output/cat4/out_-26LKFS/.gitkeep b/experiments/characterization/P800-2/proc_output/cat4/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-2/proc_output/cat4/out_-36LKFS/.gitkeep b/experiments/characterization/P800-2/proc_output/cat4/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-2/proc_output/cat5/out_-16LKFS/.gitkeep b/experiments/characterization/P800-2/proc_output/cat5/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-2/proc_output/cat5/out_-26LKFS/.gitkeep b/experiments/characterization/P800-2/proc_output/cat5/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-2/proc_output/cat5/out_-36LKFS/.gitkeep b/experiments/characterization/P800-2/proc_output/cat5/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-2/proc_output/cat6/out_-16LKFS/.gitkeep b/experiments/characterization/P800-2/proc_output/cat6/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-2/proc_output/cat6/out_-26LKFS/.gitkeep b/experiments/characterization/P800-2/proc_output/cat6/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-2/proc_output/cat6/out_-36LKFS/.gitkeep b/experiments/characterization/P800-2/proc_output/cat6/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-20/config/P800-20_cat1_ISM1MASA2DIR2-16LKFS.yml b/experiments/characterization/P800-20/config/P800-20_cat1_ISM1MASA2DIR2-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..25e1503ac39d1264953bbbfbde8bcf4b36cb8f7e --- /dev/null +++ b/experiments/characterization/P800-20/config/P800-20_cat1_ISM1MASA2DIR2-16LKFS.yml @@ -0,0 +1,337 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-20 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-20/proc_input/cat1" +output_path: "experiments/characterization/P800-20/proc_output/cat1/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM1MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 34 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 26 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL OMASA 2TC clean conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c11: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c13: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX OMASA 2TC FER conditions ### + c14: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX OMASA 2TC clean conditions ### + c17: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c18: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c28: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FX ISM + MASA 2TC conditions ### + c31: + type: ivas_combined + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas_combined + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas_combined + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas_combined + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas_combined + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas_combined + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-20/config/P800-20_cat1_ISM1MASA2DIR2-26LKFS.yml b/experiments/characterization/P800-20/config/P800-20_cat1_ISM1MASA2DIR2-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..0d83fedabf473abe392eaf8956d6fd4fc384a62c --- /dev/null +++ b/experiments/characterization/P800-20/config/P800-20_cat1_ISM1MASA2DIR2-26LKFS.yml @@ -0,0 +1,337 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-20 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-20/proc_input/cat1" +output_path: "experiments/characterization/P800-20/proc_output/cat1/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM1MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 34 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 26 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL OMASA 2TC clean conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c11: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c13: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX OMASA 2TC FER conditions ### + c14: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX OMASA 2TC clean conditions ### + c17: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c18: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c28: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FX ISM + MASA 2TC conditions ### + c31: + type: ivas_combined + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas_combined + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas_combined + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas_combined + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas_combined + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas_combined + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-20/config/P800-20_cat1_ISM1MASA2DIR2-36LKFS.yml b/experiments/characterization/P800-20/config/P800-20_cat1_ISM1MASA2DIR2-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..cd0fdc8efde79fd5adba8e9e3501a8161d7b09a3 --- /dev/null +++ b/experiments/characterization/P800-20/config/P800-20_cat1_ISM1MASA2DIR2-36LKFS.yml @@ -0,0 +1,337 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-20 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-20/proc_input/cat1" +output_path: "experiments/characterization/P800-20/proc_output/cat1/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM1MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 34 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 26 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL OMASA 2TC clean conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c11: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c13: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX OMASA 2TC FER conditions ### + c14: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX OMASA 2TC clean conditions ### + c17: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c18: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c28: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FX ISM + MASA 2TC conditions ### + c31: + type: ivas_combined + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas_combined + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas_combined + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas_combined + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas_combined + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas_combined + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-20/config/P800-20_cat2_ISM2MASA2DIR2-16LKFS.yml b/experiments/characterization/P800-20/config/P800-20_cat2_ISM2MASA2DIR2-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..26c4ceb043293f2ffefe691a7287c4d7108d0c56 --- /dev/null +++ b/experiments/characterization/P800-20/config/P800-20_cat2_ISM2MASA2DIR2-16LKFS.yml @@ -0,0 +1,337 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-20 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-20/proc_input/cat2" +output_path: "experiments/characterization/P800-20/proc_output/cat2/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 34 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 26 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL OMASA 2TC clean conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c11: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c13: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX OMASA 2TC FER conditions ### + c14: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX OMASA 2TC clean conditions ### + c17: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c18: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c28: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FX ISM + MASA 2TC conditions ### + c31: + type: ivas_combined + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas_combined + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas_combined + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas_combined + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas_combined + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas_combined + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-20/config/P800-20_cat2_ISM2MASA2DIR2-26LKFS.yml b/experiments/characterization/P800-20/config/P800-20_cat2_ISM2MASA2DIR2-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..b2cf9db76e0b6e16cadb100eb6fb7a267a90e1c0 --- /dev/null +++ b/experiments/characterization/P800-20/config/P800-20_cat2_ISM2MASA2DIR2-26LKFS.yml @@ -0,0 +1,337 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-20 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-20/proc_input/cat2" +output_path: "experiments/characterization/P800-20/proc_output/cat2/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 34 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 26 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL OMASA 2TC clean conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c11: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c13: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX OMASA 2TC FER conditions ### + c14: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX OMASA 2TC clean conditions ### + c17: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c18: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c28: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FX ISM + MASA 2TC conditions ### + c31: + type: ivas_combined + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas_combined + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas_combined + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas_combined + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas_combined + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas_combined + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-20/config/P800-20_cat2_ISM2MASA2DIR2-36LKFS.yml b/experiments/characterization/P800-20/config/P800-20_cat2_ISM2MASA2DIR2-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..f197432ec4e519e15c45c812d874e16467435b05 --- /dev/null +++ b/experiments/characterization/P800-20/config/P800-20_cat2_ISM2MASA2DIR2-36LKFS.yml @@ -0,0 +1,337 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-20 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-20/proc_input/cat2" +output_path: "experiments/characterization/P800-20/proc_output/cat2/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 34 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 26 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL OMASA 2TC clean conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c11: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c13: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX OMASA 2TC FER conditions ### + c14: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX OMASA 2TC clean conditions ### + c17: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c18: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c28: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FX ISM + MASA 2TC conditions ### + c31: + type: ivas_combined + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas_combined + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas_combined + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas_combined + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas_combined + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas_combined + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-20/config/P800-20_cat3_ISM3MASA2DIR2-16LKFS.yml b/experiments/characterization/P800-20/config/P800-20_cat3_ISM3MASA2DIR2-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..32ff1343c646f005bffb5dd42e38fbef9cdf6472 --- /dev/null +++ b/experiments/characterization/P800-20/config/P800-20_cat3_ISM3MASA2DIR2-16LKFS.yml @@ -0,0 +1,337 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-20 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-20/proc_input/cat3" +output_path: "experiments/characterization/P800-20/proc_output/cat3/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM3MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 34 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 26 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL OMASA 2TC clean conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c11: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c13: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX OMASA 2TC FER conditions ### + c14: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX OMASA 2TC clean conditions ### + c17: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c18: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c28: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FX ISM + MASA 2TC conditions ### + c31: + type: ivas_combined + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas_combined + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas_combined + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas_combined + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas_combined + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas_combined + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-20/config/P800-20_cat3_ISM3MASA2DIR2-26LKFS.yml b/experiments/characterization/P800-20/config/P800-20_cat3_ISM3MASA2DIR2-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..cdf6deb90a1c8fff76d6b56cbe5220d2185ab84e --- /dev/null +++ b/experiments/characterization/P800-20/config/P800-20_cat3_ISM3MASA2DIR2-26LKFS.yml @@ -0,0 +1,337 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-20 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-20/proc_input/cat3" +output_path: "experiments/characterization/P800-20/proc_output/cat3/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM3MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 34 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 26 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL OMASA 2TC clean conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c11: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c13: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX OMASA 2TC FER conditions ### + c14: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX OMASA 2TC clean conditions ### + c17: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c18: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c28: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FX ISM + MASA 2TC conditions ### + c31: + type: ivas_combined + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas_combined + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas_combined + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas_combined + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas_combined + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas_combined + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-20/config/P800-20_cat3_ISM3MASA2DIR2-36LKFS.yml b/experiments/characterization/P800-20/config/P800-20_cat3_ISM3MASA2DIR2-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..9a51e2e6c6138632b38d1b96d7afdfd9665f8947 --- /dev/null +++ b/experiments/characterization/P800-20/config/P800-20_cat3_ISM3MASA2DIR2-36LKFS.yml @@ -0,0 +1,337 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-20 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-20/proc_input/cat3" +output_path: "experiments/characterization/P800-20/proc_output/cat3/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM3MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 34 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 26 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL OMASA 2TC clean conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c11: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c13: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX OMASA 2TC FER conditions ### + c14: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX OMASA 2TC clean conditions ### + c17: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c18: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c28: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FX ISM + MASA 2TC conditions ### + c31: + type: ivas_combined + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas_combined + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas_combined + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas_combined + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas_combined + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas_combined + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-20/config/P800-20_cat4_ISM4MASA2DIR2-16LKFS.yml b/experiments/characterization/P800-20/config/P800-20_cat4_ISM4MASA2DIR2-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..d66cbb29bbe2eebae9239d066f0c6ada828b11c4 --- /dev/null +++ b/experiments/characterization/P800-20/config/P800-20_cat4_ISM4MASA2DIR2-16LKFS.yml @@ -0,0 +1,337 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-20 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-20/proc_input/cat4" +output_path: "experiments/characterization/P800-20/proc_output/cat4/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM4MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 34 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 26 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL OMASA 2TC clean conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c11: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c13: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX OMASA 2TC FER conditions ### + c14: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX OMASA 2TC clean conditions ### + c17: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c18: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c28: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FX ISM + MASA 2TC conditions ### + c31: + type: ivas_combined + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas_combined + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas_combined + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas_combined + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas_combined + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas_combined + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-20/config/P800-20_cat4_ISM4MASA2DIR2-26LKFS.yml b/experiments/characterization/P800-20/config/P800-20_cat4_ISM4MASA2DIR2-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..845fbe4be9734e8f17d182830a1d9aef9fed2a43 --- /dev/null +++ b/experiments/characterization/P800-20/config/P800-20_cat4_ISM4MASA2DIR2-26LKFS.yml @@ -0,0 +1,337 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-20 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-20/proc_input/cat4" +output_path: "experiments/characterization/P800-20/proc_output/cat4/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM4MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 34 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 26 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL OMASA 2TC clean conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c11: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c13: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX OMASA 2TC FER conditions ### + c14: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX OMASA 2TC clean conditions ### + c17: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c18: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c28: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FX ISM + MASA 2TC conditions ### + c31: + type: ivas_combined + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas_combined + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas_combined + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas_combined + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas_combined + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas_combined + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-20/config/P800-20_cat4_ISM4MASA2DIR2-36LKFS.yml b/experiments/characterization/P800-20/config/P800-20_cat4_ISM4MASA2DIR2-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..a901c2df7f1847cc9e8ec496648cfd3ff63192c1 --- /dev/null +++ b/experiments/characterization/P800-20/config/P800-20_cat4_ISM4MASA2DIR2-36LKFS.yml @@ -0,0 +1,337 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-20 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-20/proc_input/cat4" +output_path: "experiments/characterization/P800-20/proc_output/cat4/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM4MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 34 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 26 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL OMASA 2TC clean conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c11: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c13: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX OMASA 2TC FER conditions ### + c14: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX OMASA 2TC clean conditions ### + c17: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c18: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c28: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FX ISM + MASA 2TC conditions ### + c31: + type: ivas_combined + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas_combined + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas_combined + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas_combined + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas_combined + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas_combined + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-20/config/P800-20_cat5_ISM2MASA2DIR2-16LKFS.yml b/experiments/characterization/P800-20/config/P800-20_cat5_ISM2MASA2DIR2-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..fc3768681ae30cee0be981babd8ca461cdf2f485 --- /dev/null +++ b/experiments/characterization/P800-20/config/P800-20_cat5_ISM2MASA2DIR2-16LKFS.yml @@ -0,0 +1,337 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-20 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-20/proc_input/cat5" +output_path: "experiments/characterization/P800-20/proc_output/cat5/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 34 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 26 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL OMASA 2TC clean conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c11: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c13: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX OMASA 2TC FER conditions ### + c14: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX OMASA 2TC clean conditions ### + c17: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c18: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c28: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FX ISM + MASA 2TC conditions ### + c31: + type: ivas_combined + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas_combined + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas_combined + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas_combined + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas_combined + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas_combined + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-20/config/P800-20_cat5_ISM2MASA2DIR2-26LKFS.yml b/experiments/characterization/P800-20/config/P800-20_cat5_ISM2MASA2DIR2-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..bd7644fcd499dfa5c2c90ec80897310d52d1a878 --- /dev/null +++ b/experiments/characterization/P800-20/config/P800-20_cat5_ISM2MASA2DIR2-26LKFS.yml @@ -0,0 +1,337 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-20 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-20/proc_input/cat5" +output_path: "experiments/characterization/P800-20/proc_output/cat5/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 34 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 26 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL OMASA 2TC clean conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c11: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c13: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX OMASA 2TC FER conditions ### + c14: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX OMASA 2TC clean conditions ### + c17: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c18: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c28: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FX ISM + MASA 2TC conditions ### + c31: + type: ivas_combined + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas_combined + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas_combined + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas_combined + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas_combined + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas_combined + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-20/config/P800-20_cat5_ISM2MASA2DIR2-36LKFS.yml b/experiments/characterization/P800-20/config/P800-20_cat5_ISM2MASA2DIR2-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..20eb456c17e2632c4402fcd2cbabde63659fbeac --- /dev/null +++ b/experiments/characterization/P800-20/config/P800-20_cat5_ISM2MASA2DIR2-36LKFS.yml @@ -0,0 +1,337 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-20 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-20/proc_input/cat5" +output_path: "experiments/characterization/P800-20/proc_output/cat5/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 34 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 26 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL OMASA 2TC clean conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c11: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c13: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX OMASA 2TC FER conditions ### + c14: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX OMASA 2TC clean conditions ### + c17: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c18: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c28: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FX ISM + MASA 2TC conditions ### + c31: + type: ivas_combined + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas_combined + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas_combined + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas_combined + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas_combined + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas_combined + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-20/config/P800-20_cat6_ISM3MASA2DIR2-16LKFS.yml b/experiments/characterization/P800-20/config/P800-20_cat6_ISM3MASA2DIR2-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..2c0f44b65ac4fdc12456b52d1719c2bda6b47cf9 --- /dev/null +++ b/experiments/characterization/P800-20/config/P800-20_cat6_ISM3MASA2DIR2-16LKFS.yml @@ -0,0 +1,337 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-20 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-20/proc_input/cat6" +output_path: "experiments/characterization/P800-20/proc_output/cat6/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM3MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 34 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 26 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL OMASA 2TC clean conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c11: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c13: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX OMASA 2TC FER conditions ### + c14: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX OMASA 2TC clean conditions ### + c17: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c18: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c28: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FX ISM + MASA 2TC conditions ### + c31: + type: ivas_combined + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas_combined + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas_combined + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas_combined + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas_combined + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas_combined + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-20/config/P800-20_cat6_ISM3MASA2DIR2-26LKFS.yml b/experiments/characterization/P800-20/config/P800-20_cat6_ISM3MASA2DIR2-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..c22139f1fa8caf8f202577ffdaa264204ad00688 --- /dev/null +++ b/experiments/characterization/P800-20/config/P800-20_cat6_ISM3MASA2DIR2-26LKFS.yml @@ -0,0 +1,337 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-20 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-20/proc_input/cat6" +output_path: "experiments/characterization/P800-20/proc_output/cat6/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM3MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 34 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 26 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL OMASA 2TC clean conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c11: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c13: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX OMASA 2TC FER conditions ### + c14: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX OMASA 2TC clean conditions ### + c17: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c18: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c28: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FX ISM + MASA 2TC conditions ### + c31: + type: ivas_combined + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas_combined + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas_combined + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas_combined + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas_combined + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas_combined + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-20/config/P800-20_cat6_ISM3MASA2DIR2-36LKFS.yml b/experiments/characterization/P800-20/config/P800-20_cat6_ISM3MASA2DIR2-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..dc1d9701546da2ff455c7c93645f7d79aef866b0 --- /dev/null +++ b/experiments/characterization/P800-20/config/P800-20_cat6_ISM3MASA2DIR2-36LKFS.yml @@ -0,0 +1,337 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-20 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-20/proc_input/cat6" +output_path: "experiments/characterization/P800-20/proc_output/cat6/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM3MASA2DIR2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 34 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 26 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL OMASA 2TC clean conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c11: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c13: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX OMASA 2TC FER conditions ### + c14: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX OMASA 2TC clean conditions ### + c17: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c18: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c27: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c28: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FX ISM + MASA 2TC conditions ### + c31: + type: ivas_combined + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas_combined + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas_combined + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas_combined + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas_combined + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas_combined + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-20/proc_input/cat1/.gitkeep b/experiments/characterization/P800-20/proc_input/cat1/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-20/proc_input/cat2/.gitkeep b/experiments/characterization/P800-20/proc_input/cat2/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-20/proc_input/cat3/.gitkeep b/experiments/characterization/P800-20/proc_input/cat3/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-20/proc_input/cat4/.gitkeep b/experiments/characterization/P800-20/proc_input/cat4/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-20/proc_input/cat5/.gitkeep b/experiments/characterization/P800-20/proc_input/cat5/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-20/proc_input/cat6/.gitkeep b/experiments/characterization/P800-20/proc_input/cat6/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-20/proc_output/cat1/out_-16LKFS/.gitkeep b/experiments/characterization/P800-20/proc_output/cat1/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-20/proc_output/cat1/out_-26LKFS/.gitkeep b/experiments/characterization/P800-20/proc_output/cat1/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-20/proc_output/cat1/out_-36LKFS/.gitkeep b/experiments/characterization/P800-20/proc_output/cat1/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-20/proc_output/cat2/out_-16LKFS/.gitkeep b/experiments/characterization/P800-20/proc_output/cat2/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-20/proc_output/cat2/out_-26LKFS/.gitkeep b/experiments/characterization/P800-20/proc_output/cat2/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-20/proc_output/cat2/out_-36LKFS/.gitkeep b/experiments/characterization/P800-20/proc_output/cat2/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-20/proc_output/cat3/out_-16LKFS/.gitkeep b/experiments/characterization/P800-20/proc_output/cat3/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-20/proc_output/cat3/out_-26LKFS/.gitkeep b/experiments/characterization/P800-20/proc_output/cat3/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-20/proc_output/cat3/out_-36LKFS/.gitkeep b/experiments/characterization/P800-20/proc_output/cat3/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-20/proc_output/cat4/out_-16LKFS/.gitkeep b/experiments/characterization/P800-20/proc_output/cat4/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-20/proc_output/cat4/out_-26LKFS/.gitkeep b/experiments/characterization/P800-20/proc_output/cat4/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-20/proc_output/cat4/out_-36LKFS/.gitkeep b/experiments/characterization/P800-20/proc_output/cat4/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-20/proc_output/cat5/out_-16LKFS/.gitkeep b/experiments/characterization/P800-20/proc_output/cat5/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-20/proc_output/cat5/out_-26LKFS/.gitkeep b/experiments/characterization/P800-20/proc_output/cat5/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-20/proc_output/cat5/out_-36LKFS/.gitkeep b/experiments/characterization/P800-20/proc_output/cat5/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-20/proc_output/cat6/out_-16LKFS/.gitkeep b/experiments/characterization/P800-20/proc_output/cat6/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-20/proc_output/cat6/out_-26LKFS/.gitkeep b/experiments/characterization/P800-20/proc_output/cat6/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-20/proc_output/cat6/out_-36LKFS/.gitkeep b/experiments/characterization/P800-20/proc_output/cat6/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-21/background_noise/.gitkeep b/experiments/characterization/P800-21/background_noise/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-21/config/P800-21_cat1_STEREO-16LKFS.yml b/experiments/characterization/P800-21/config/P800-21_cat1_STEREO-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..53856920a58abeb6cac6516c6008af36a821c69d --- /dev/null +++ b/experiments/characterization/P800-21/config/P800-21_cat1_STEREO-16LKFS.yml @@ -0,0 +1,533 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-21 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-21/proc_input/cat1" +output_path: "experiments/characterization/P800-21/proc_output/cat1/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-21/background_noise/fp21n1.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-21/config/P800-21_cat1_STEREO-26LKFS.yml b/experiments/characterization/P800-21/config/P800-21_cat1_STEREO-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..66698206d8e97447ee3fadfd9e126ebb3d9aaaca --- /dev/null +++ b/experiments/characterization/P800-21/config/P800-21_cat1_STEREO-26LKFS.yml @@ -0,0 +1,533 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-21 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-21/proc_input/cat1" +output_path: "experiments/characterization/P800-21/proc_output/cat1/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-21/background_noise/fp21n1.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-21/config/P800-21_cat1_STEREO-36LKFS.yml b/experiments/characterization/P800-21/config/P800-21_cat1_STEREO-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..f3bfd26ca1df9e084264a685332ced9cd90c9a43 --- /dev/null +++ b/experiments/characterization/P800-21/config/P800-21_cat1_STEREO-36LKFS.yml @@ -0,0 +1,533 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-21 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-21/proc_input/cat1" +output_path: "experiments/characterization/P800-21/proc_output/cat1/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-21/background_noise/fp21n1.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-21/config/P800-21_cat2_STEREO-16LKFS.yml b/experiments/characterization/P800-21/config/P800-21_cat2_STEREO-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..0baff100593333a5009bcaf02350e76929cb6e52 --- /dev/null +++ b/experiments/characterization/P800-21/config/P800-21_cat2_STEREO-16LKFS.yml @@ -0,0 +1,533 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-21 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-21/proc_input/cat2" +output_path: "experiments/characterization/P800-21/proc_output/cat2/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-21/background_noise/fp21n2.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-21/config/P800-21_cat2_STEREO-26LKFS.yml b/experiments/characterization/P800-21/config/P800-21_cat2_STEREO-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..070ba950b752033463f6700b2e14cf7f815e907c --- /dev/null +++ b/experiments/characterization/P800-21/config/P800-21_cat2_STEREO-26LKFS.yml @@ -0,0 +1,533 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-21 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-21/proc_input/cat2" +output_path: "experiments/characterization/P800-21/proc_output/cat2/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-21/background_noise/fp21n2.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-21/config/P800-21_cat2_STEREO-36LKFS.yml b/experiments/characterization/P800-21/config/P800-21_cat2_STEREO-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..ab9ace5548a56324698d796ec6c10d91ada63c8a --- /dev/null +++ b/experiments/characterization/P800-21/config/P800-21_cat2_STEREO-36LKFS.yml @@ -0,0 +1,533 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-21 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-21/proc_input/cat2" +output_path: "experiments/characterization/P800-21/proc_output/cat2/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-21/background_noise/fp21n2.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-21/config/P800-21_cat3_STEREO-16LKFS.yml b/experiments/characterization/P800-21/config/P800-21_cat3_STEREO-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..cd329c97807a7f290dc01e674a09e6a727533ec5 --- /dev/null +++ b/experiments/characterization/P800-21/config/P800-21_cat3_STEREO-16LKFS.yml @@ -0,0 +1,533 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-21 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-21/proc_input/cat3" +output_path: "experiments/characterization/P800-21/proc_output/cat3/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-21/background_noise/fp21n3.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-21/config/P800-21_cat3_STEREO-26LKFS.yml b/experiments/characterization/P800-21/config/P800-21_cat3_STEREO-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..fc8548a4995a7da78a02d1a21892d8b13c2ef694 --- /dev/null +++ b/experiments/characterization/P800-21/config/P800-21_cat3_STEREO-26LKFS.yml @@ -0,0 +1,533 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-21 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-21/proc_input/cat3" +output_path: "experiments/characterization/P800-21/proc_output/cat3/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-21/background_noise/fp21n3.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-21/config/P800-21_cat3_STEREO-36LKFS.yml b/experiments/characterization/P800-21/config/P800-21_cat3_STEREO-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..7b86fd906afb013021a50fc73e8f3388bb42dc0a --- /dev/null +++ b/experiments/characterization/P800-21/config/P800-21_cat3_STEREO-36LKFS.yml @@ -0,0 +1,533 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-21 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-21/proc_input/cat3" +output_path: "experiments/characterization/P800-21/proc_output/cat3/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-21/background_noise/fp21n3.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-21/config/P800-21_cat4_STEREO-16LKFS.yml b/experiments/characterization/P800-21/config/P800-21_cat4_STEREO-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..0d45ecc8d379e402aa2c8d2f9d5e8865ce826c73 --- /dev/null +++ b/experiments/characterization/P800-21/config/P800-21_cat4_STEREO-16LKFS.yml @@ -0,0 +1,479 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-21 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-21/proc_input/cat4" +output_path: "experiments/characterization/P800-21/proc_output/cat4/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-21/background_noise/fp21n4.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-21/config/P800-21_cat4_STEREO-26LKFS.yml b/experiments/characterization/P800-21/config/P800-21_cat4_STEREO-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..ee90df858525f651049d204b4c5dad67d3f16043 --- /dev/null +++ b/experiments/characterization/P800-21/config/P800-21_cat4_STEREO-26LKFS.yml @@ -0,0 +1,479 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-21 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-21/proc_input/cat4" +output_path: "experiments/characterization/P800-21/proc_output/cat4/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-21/background_noise/fp21n4.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-21/config/P800-21_cat4_STEREO-36LKFS.yml b/experiments/characterization/P800-21/config/P800-21_cat4_STEREO-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..afece0af10f931ede706b393593fbbfb045caeff --- /dev/null +++ b/experiments/characterization/P800-21/config/P800-21_cat4_STEREO-36LKFS.yml @@ -0,0 +1,479 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-21 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-21/proc_input/cat4" +output_path: "experiments/characterization/P800-21/proc_output/cat4/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-21/background_noise/fp21n4.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-21/config/P800-21_cat5_STEREO-16LKFS.yml b/experiments/characterization/P800-21/config/P800-21_cat5_STEREO-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..f9cbe1c34e0629d088952d10d6d6b1981c389464 --- /dev/null +++ b/experiments/characterization/P800-21/config/P800-21_cat5_STEREO-16LKFS.yml @@ -0,0 +1,476 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-21 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-21/proc_input/cat5" +output_path: "experiments/characterization/P800-21/proc_output/cat5/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-21/config/P800-21_cat5_STEREO-26LKFS.yml b/experiments/characterization/P800-21/config/P800-21_cat5_STEREO-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..e8dda1933dfa13ec01d2b9c8802c3c734129db57 --- /dev/null +++ b/experiments/characterization/P800-21/config/P800-21_cat5_STEREO-26LKFS.yml @@ -0,0 +1,476 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-21 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-21/proc_input/cat5" +output_path: "experiments/characterization/P800-21/proc_output/cat5/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-21/config/P800-21_cat5_STEREO-36LKFS.yml b/experiments/characterization/P800-21/config/P800-21_cat5_STEREO-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..31d9dcb41571d6fe683cfb3c67a20f5e6d2c785e --- /dev/null +++ b/experiments/characterization/P800-21/config/P800-21_cat5_STEREO-36LKFS.yml @@ -0,0 +1,476 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-21 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-21/proc_input/cat5" +output_path: "experiments/characterization/P800-21/proc_output/cat5/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-21/config/P800-21_cat6_STEREO-16LKFS.yml b/experiments/characterization/P800-21/config/P800-21_cat6_STEREO-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..b6b5fdee852d5711fe4a13db610e7bbfe4674e56 --- /dev/null +++ b/experiments/characterization/P800-21/config/P800-21_cat6_STEREO-16LKFS.yml @@ -0,0 +1,476 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-21 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-21/proc_input/cat6" +output_path: "experiments/characterization/P800-21/proc_output/cat6/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-21/config/P800-21_cat6_STEREO-26LKFS.yml b/experiments/characterization/P800-21/config/P800-21_cat6_STEREO-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..cab0d025ce38ac01ea64f4d2ce6dc56506051172 --- /dev/null +++ b/experiments/characterization/P800-21/config/P800-21_cat6_STEREO-26LKFS.yml @@ -0,0 +1,476 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-21 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-21/proc_input/cat6" +output_path: "experiments/characterization/P800-21/proc_output/cat6/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-21/config/P800-21_cat6_STEREO-36LKFS.yml b/experiments/characterization/P800-21/config/P800-21_cat6_STEREO-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..c996401e5bc27c06d84bce8d3faf6254e2321143 --- /dev/null +++ b/experiments/characterization/P800-21/config/P800-21_cat6_STEREO-36LKFS.yml @@ -0,0 +1,476 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-21 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-21/proc_input/cat6" +output_path: "experiments/characterization/P800-21/proc_output/cat6/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c03: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c04: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + c05: + type: mnru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + q: 12 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: STEREO + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-21/proc_input/cat1/.gitkeep b/experiments/characterization/P800-21/proc_input/cat1/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-21/proc_input/cat2/.gitkeep b/experiments/characterization/P800-21/proc_input/cat2/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-21/proc_input/cat3/.gitkeep b/experiments/characterization/P800-21/proc_input/cat3/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-21/proc_input/cat4/.gitkeep b/experiments/characterization/P800-21/proc_input/cat4/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-21/proc_input/cat5/.gitkeep b/experiments/characterization/P800-21/proc_input/cat5/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-21/proc_input/cat6/.gitkeep b/experiments/characterization/P800-21/proc_input/cat6/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-21/proc_output/cat1/out_-16LKFS/.gitkeep b/experiments/characterization/P800-21/proc_output/cat1/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-21/proc_output/cat1/out_-26LKFS/.gitkeep b/experiments/characterization/P800-21/proc_output/cat1/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-21/proc_output/cat1/out_-36LKFS/.gitkeep b/experiments/characterization/P800-21/proc_output/cat1/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-21/proc_output/cat2/out_-16LKFS/.gitkeep b/experiments/characterization/P800-21/proc_output/cat2/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-21/proc_output/cat2/out_-26LKFS/.gitkeep b/experiments/characterization/P800-21/proc_output/cat2/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-21/proc_output/cat2/out_-36LKFS/.gitkeep b/experiments/characterization/P800-21/proc_output/cat2/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-21/proc_output/cat3/out_-16LKFS/.gitkeep b/experiments/characterization/P800-21/proc_output/cat3/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-21/proc_output/cat3/out_-26LKFS/.gitkeep b/experiments/characterization/P800-21/proc_output/cat3/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-21/proc_output/cat3/out_-36LKFS/.gitkeep b/experiments/characterization/P800-21/proc_output/cat3/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-21/proc_output/cat4/out_-16LKFS/.gitkeep b/experiments/characterization/P800-21/proc_output/cat4/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-21/proc_output/cat4/out_-26LKFS/.gitkeep b/experiments/characterization/P800-21/proc_output/cat4/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-21/proc_output/cat4/out_-36LKFS/.gitkeep b/experiments/characterization/P800-21/proc_output/cat4/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-21/proc_output/cat5/out_-16LKFS/.gitkeep b/experiments/characterization/P800-21/proc_output/cat5/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-21/proc_output/cat5/out_-26LKFS/.gitkeep b/experiments/characterization/P800-21/proc_output/cat5/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-21/proc_output/cat5/out_-36LKFS/.gitkeep b/experiments/characterization/P800-21/proc_output/cat5/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-21/proc_output/cat6/out_-16LKFS/.gitkeep b/experiments/characterization/P800-21/proc_output/cat6/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-21/proc_output/cat6/out_-26LKFS/.gitkeep b/experiments/characterization/P800-21/proc_output/cat6/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-21/proc_output/cat6/out_-36LKFS/.gitkeep b/experiments/characterization/P800-21/proc_output/cat6/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-22/config/P800-22_cat1_ISM1-16LKFS.yml b/experiments/characterization/P800-22/config/P800-22_cat1_ISM1-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..2650ef06392825b2fbf5366bd5bfa6f557920e6f --- /dev/null +++ b/experiments/characterization/P800-22/config/P800-22_cat1_ISM1-16LKFS.yml @@ -0,0 +1,422 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-22 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-22/proc_input/cat1" +output_path: "experiments/characterization/P800-22/proc_output/cat1/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-22/config/P800-22_cat1_ISM1-26LKFS.yml b/experiments/characterization/P800-22/config/P800-22_cat1_ISM1-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..ee0c143d18bd00d9792bae7dae006969f680b032 --- /dev/null +++ b/experiments/characterization/P800-22/config/P800-22_cat1_ISM1-26LKFS.yml @@ -0,0 +1,422 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-22 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-22/proc_input/cat1" +output_path: "experiments/characterization/P800-22/proc_output/cat1/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-22/config/P800-22_cat1_ISM1-36LKFS.yml b/experiments/characterization/P800-22/config/P800-22_cat1_ISM1-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..37643dbf68996094b7ba04eef911641a75d81b86 --- /dev/null +++ b/experiments/characterization/P800-22/config/P800-22_cat1_ISM1-36LKFS.yml @@ -0,0 +1,422 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-22 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-22/proc_input/cat1" +output_path: "experiments/characterization/P800-22/proc_output/cat1/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-22/config/P800-22_cat2_ISM1-16LKFS.yml b/experiments/characterization/P800-22/config/P800-22_cat2_ISM1-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..33bed397263c6efaa6b7641b585235cd76171644 --- /dev/null +++ b/experiments/characterization/P800-22/config/P800-22_cat2_ISM1-16LKFS.yml @@ -0,0 +1,422 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-22 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-22/proc_input/cat2" +output_path: "experiments/characterization/P800-22/proc_output/cat2/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-22/config/P800-22_cat2_ISM1-26LKFS.yml b/experiments/characterization/P800-22/config/P800-22_cat2_ISM1-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..2c5be8ddb73b4f23ed04078b92a5636244068a8c --- /dev/null +++ b/experiments/characterization/P800-22/config/P800-22_cat2_ISM1-26LKFS.yml @@ -0,0 +1,422 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-22 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-22/proc_input/cat2" +output_path: "experiments/characterization/P800-22/proc_output/cat2/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-22/config/P800-22_cat2_ISM1-36LKFS.yml b/experiments/characterization/P800-22/config/P800-22_cat2_ISM1-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..e2fb222e9094f65854c7ac8bd30b5ab128990c38 --- /dev/null +++ b/experiments/characterization/P800-22/config/P800-22_cat2_ISM1-36LKFS.yml @@ -0,0 +1,422 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-22 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-22/proc_input/cat2" +output_path: "experiments/characterization/P800-22/proc_output/cat2/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-22/config/P800-22_cat3_ISM2-16LKFS.yml b/experiments/characterization/P800-22/config/P800-22_cat3_ISM2-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..401291ceb9519c3867a611d766ff38172c1e0119 --- /dev/null +++ b/experiments/characterization/P800-22/config/P800-22_cat3_ISM2-16LKFS.yml @@ -0,0 +1,422 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-22 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-22/proc_input/cat3" +output_path: "experiments/characterization/P800-22/proc_output/cat3/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-22/config/P800-22_cat3_ISM2-26LKFS.yml b/experiments/characterization/P800-22/config/P800-22_cat3_ISM2-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..f2a8c6b9d7628e0074f676bde5fee8bc99276a4a --- /dev/null +++ b/experiments/characterization/P800-22/config/P800-22_cat3_ISM2-26LKFS.yml @@ -0,0 +1,422 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-22 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-22/proc_input/cat3" +output_path: "experiments/characterization/P800-22/proc_output/cat3/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-22/config/P800-22_cat3_ISM2-36LKFS.yml b/experiments/characterization/P800-22/config/P800-22_cat3_ISM2-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..54d75b38e712fd4a7ae0f4c3c413f2c1cec648fe --- /dev/null +++ b/experiments/characterization/P800-22/config/P800-22_cat3_ISM2-36LKFS.yml @@ -0,0 +1,422 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-22 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-22/proc_input/cat3" +output_path: "experiments/characterization/P800-22/proc_output/cat3/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-22/config/P800-22_cat4_ISM2-16LKFS.yml b/experiments/characterization/P800-22/config/P800-22_cat4_ISM2-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..88b2d9cca6905b968c62a4548ab77c67ffdafecf --- /dev/null +++ b/experiments/characterization/P800-22/config/P800-22_cat4_ISM2-16LKFS.yml @@ -0,0 +1,422 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-22 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-22/proc_input/cat4" +output_path: "experiments/characterization/P800-22/proc_output/cat4/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-22/config/P800-22_cat4_ISM2-26LKFS.yml b/experiments/characterization/P800-22/config/P800-22_cat4_ISM2-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..cb8d9f6d39b54657c1eb03e8aeb36ecc04ab4dd1 --- /dev/null +++ b/experiments/characterization/P800-22/config/P800-22_cat4_ISM2-26LKFS.yml @@ -0,0 +1,422 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-22 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-22/proc_input/cat4" +output_path: "experiments/characterization/P800-22/proc_output/cat4/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-22/config/P800-22_cat4_ISM2-36LKFS.yml b/experiments/characterization/P800-22/config/P800-22_cat4_ISM2-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..fe42e453af8e569319ad5114877f02f88c92c0e2 --- /dev/null +++ b/experiments/characterization/P800-22/config/P800-22_cat4_ISM2-36LKFS.yml @@ -0,0 +1,422 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-22 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-22/proc_input/cat4" +output_path: "experiments/characterization/P800-22/proc_output/cat4/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-22/config/P800-22_cat5_ISM1-16LKFS.yml b/experiments/characterization/P800-22/config/P800-22_cat5_ISM1-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..28c3bb7e0198a2355f51bc4c871c2b5f191c5604 --- /dev/null +++ b/experiments/characterization/P800-22/config/P800-22_cat5_ISM1-16LKFS.yml @@ -0,0 +1,422 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-22 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-22/proc_input/cat5" +output_path: "experiments/characterization/P800-22/proc_output/cat5/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-22/config/P800-22_cat5_ISM1-26LKFS.yml b/experiments/characterization/P800-22/config/P800-22_cat5_ISM1-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..aff16ad3481067a785c3877c3e1943aa75c25554 --- /dev/null +++ b/experiments/characterization/P800-22/config/P800-22_cat5_ISM1-26LKFS.yml @@ -0,0 +1,422 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-22 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-22/proc_input/cat5" +output_path: "experiments/characterization/P800-22/proc_output/cat5/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-22/config/P800-22_cat5_ISM1-36LKFS.yml b/experiments/characterization/P800-22/config/P800-22_cat5_ISM1-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..706347d7411ced09568638e85352125fa3f5e919 --- /dev/null +++ b/experiments/characterization/P800-22/config/P800-22_cat5_ISM1-36LKFS.yml @@ -0,0 +1,422 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-22 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-22/proc_input/cat5" +output_path: "experiments/characterization/P800-22/proc_output/cat5/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-22/config/P800-22_cat6_ISM2-16LKFS.yml b/experiments/characterization/P800-22/config/P800-22_cat6_ISM2-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..1941f3ffe628397d2c911cb0f694f9e5615d0b6e --- /dev/null +++ b/experiments/characterization/P800-22/config/P800-22_cat6_ISM2-16LKFS.yml @@ -0,0 +1,422 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-22 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-22/proc_input/cat6" +output_path: "experiments/characterization/P800-22/proc_output/cat6/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-22/config/P800-22_cat6_ISM2-26LKFS.yml b/experiments/characterization/P800-22/config/P800-22_cat6_ISM2-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..d6fe33eb98c49e829da82c436ef3d92c27f561fb --- /dev/null +++ b/experiments/characterization/P800-22/config/P800-22_cat6_ISM2-26LKFS.yml @@ -0,0 +1,422 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-22 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-22/proc_input/cat6" +output_path: "experiments/characterization/P800-22/proc_output/cat6/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-22/config/P800-22_cat6_ISM2-36LKFS.yml b/experiments/characterization/P800-22/config/P800-22_cat6_ISM2-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..f6a66ec4a7e4599f5f9db3373504b7dc88e07c6d --- /dev/null +++ b/experiments/characterization/P800-22/config/P800-22_cat6_ISM2-36LKFS.yml @@ -0,0 +1,422 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-22 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-22/proc_input/cat6" +output_path: "experiments/characterization/P800-22/proc_output/cat6/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-22/proc_input/cat1/.gitkeep b/experiments/characterization/P800-22/proc_input/cat1/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-22/proc_input/cat2/.gitkeep b/experiments/characterization/P800-22/proc_input/cat2/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-22/proc_input/cat3/.gitkeep b/experiments/characterization/P800-22/proc_input/cat3/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-22/proc_input/cat4/.gitkeep b/experiments/characterization/P800-22/proc_input/cat4/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-22/proc_input/cat5/.gitkeep b/experiments/characterization/P800-22/proc_input/cat5/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-22/proc_input/cat6/.gitkeep b/experiments/characterization/P800-22/proc_input/cat6/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-22/proc_output/cat1/out_-16LKFS/.gitkeep b/experiments/characterization/P800-22/proc_output/cat1/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-22/proc_output/cat1/out_-26LKFS/.gitkeep b/experiments/characterization/P800-22/proc_output/cat1/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-22/proc_output/cat1/out_-36LKFS/.gitkeep b/experiments/characterization/P800-22/proc_output/cat1/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-22/proc_output/cat2/out_-16LKFS/.gitkeep b/experiments/characterization/P800-22/proc_output/cat2/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-22/proc_output/cat2/out_-26LKFS/.gitkeep b/experiments/characterization/P800-22/proc_output/cat2/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-22/proc_output/cat2/out_-36LKFS/.gitkeep b/experiments/characterization/P800-22/proc_output/cat2/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-22/proc_output/cat3/out_-16LKFS/.gitkeep b/experiments/characterization/P800-22/proc_output/cat3/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-22/proc_output/cat3/out_-26LKFS/.gitkeep b/experiments/characterization/P800-22/proc_output/cat3/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-22/proc_output/cat3/out_-36LKFS/.gitkeep b/experiments/characterization/P800-22/proc_output/cat3/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-22/proc_output/cat4/out_-16LKFS/.gitkeep b/experiments/characterization/P800-22/proc_output/cat4/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-22/proc_output/cat4/out_-26LKFS/.gitkeep b/experiments/characterization/P800-22/proc_output/cat4/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-22/proc_output/cat4/out_-36LKFS/.gitkeep b/experiments/characterization/P800-22/proc_output/cat4/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-22/proc_output/cat5/out_-16LKFS/.gitkeep b/experiments/characterization/P800-22/proc_output/cat5/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-22/proc_output/cat5/out_-26LKFS/.gitkeep b/experiments/characterization/P800-22/proc_output/cat5/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-22/proc_output/cat5/out_-36LKFS/.gitkeep b/experiments/characterization/P800-22/proc_output/cat5/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-22/proc_output/cat6/out_-16LKFS/.gitkeep b/experiments/characterization/P800-22/proc_output/cat6/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-22/proc_output/cat6/out_-26LKFS/.gitkeep b/experiments/characterization/P800-22/proc_output/cat6/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-22/proc_output/cat6/out_-36LKFS/.gitkeep b/experiments/characterization/P800-22/proc_output/cat6/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-23/background_noise/.gitkeep b/experiments/characterization/P800-23/background_noise/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-23/config/P800-23_cat1_FOA-16LKFS.yml b/experiments/characterization/P800-23/config/P800-23_cat1_FOA-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..6627f330a9f873b6fc901b4f11307850045524c7 --- /dev/null +++ b/experiments/characterization/P800-23/config/P800-23_cat1_FOA-16LKFS.yml @@ -0,0 +1,425 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-23 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-23/proc_input/cat1" +output_path: "experiments/characterization/P800-23/proc_output/cat1/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-23/background_noise/cp23n1.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-23/config/P800-23_cat1_FOA-26LKFS.yml b/experiments/characterization/P800-23/config/P800-23_cat1_FOA-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..2ae2a34f67dd6d04db3a1a5db15a0731e0454bc4 --- /dev/null +++ b/experiments/characterization/P800-23/config/P800-23_cat1_FOA-26LKFS.yml @@ -0,0 +1,425 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-23 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-23/proc_input/cat1" +output_path: "experiments/characterization/P800-23/proc_output/cat1/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-23/background_noise/cp23n1.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-23/config/P800-23_cat1_FOA-36LKFS.yml b/experiments/characterization/P800-23/config/P800-23_cat1_FOA-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..c9b8ada2aa198114da5319ff34caed59a3cb30d5 --- /dev/null +++ b/experiments/characterization/P800-23/config/P800-23_cat1_FOA-36LKFS.yml @@ -0,0 +1,425 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-23 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-23/proc_input/cat1" +output_path: "experiments/characterization/P800-23/proc_output/cat1/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-23/background_noise/cp23n1.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-23/config/P800-23_cat2_FOA-16LKFS.yml b/experiments/characterization/P800-23/config/P800-23_cat2_FOA-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..6367d89478d0b1e38131f0d3775d9824f2d0aff5 --- /dev/null +++ b/experiments/characterization/P800-23/config/P800-23_cat2_FOA-16LKFS.yml @@ -0,0 +1,425 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-23 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-23/proc_input/cat2" +output_path: "experiments/characterization/P800-23/proc_output/cat2/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-23/background_noise/cp23n2.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-23/config/P800-23_cat2_FOA-26LKFS.yml b/experiments/characterization/P800-23/config/P800-23_cat2_FOA-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..e2efe17d5fc8daedf47f295e4362b38f86a055fd --- /dev/null +++ b/experiments/characterization/P800-23/config/P800-23_cat2_FOA-26LKFS.yml @@ -0,0 +1,425 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-23 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-23/proc_input/cat2" +output_path: "experiments/characterization/P800-23/proc_output/cat2/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-23/background_noise/cp23n2.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-23/config/P800-23_cat2_FOA-36LKFS.yml b/experiments/characterization/P800-23/config/P800-23_cat2_FOA-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..06f04e633c4be39ce37d745434d4a2c216d53f2b --- /dev/null +++ b/experiments/characterization/P800-23/config/P800-23_cat2_FOA-36LKFS.yml @@ -0,0 +1,425 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-23 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-23/proc_input/cat2" +output_path: "experiments/characterization/P800-23/proc_output/cat2/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-23/background_noise/cp23n2.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-23/config/P800-23_cat3_FOA-16LKFS.yml b/experiments/characterization/P800-23/config/P800-23_cat3_FOA-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..3ecfbff492a693725b78d9cd5a14daad5104bedd --- /dev/null +++ b/experiments/characterization/P800-23/config/P800-23_cat3_FOA-16LKFS.yml @@ -0,0 +1,425 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-23 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-23/proc_input/cat3" +output_path: "experiments/characterization/P800-23/proc_output/cat3/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-23/background_noise/cp23n3.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-23/config/P800-23_cat3_FOA-26LKFS.yml b/experiments/characterization/P800-23/config/P800-23_cat3_FOA-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..da9039c90469b03c983bc1b0fb296d4d89fa0d62 --- /dev/null +++ b/experiments/characterization/P800-23/config/P800-23_cat3_FOA-26LKFS.yml @@ -0,0 +1,425 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-23 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-23/proc_input/cat3" +output_path: "experiments/characterization/P800-23/proc_output/cat3/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-23/background_noise/cp23n3.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-23/config/P800-23_cat3_FOA-36LKFS.yml b/experiments/characterization/P800-23/config/P800-23_cat3_FOA-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..a09869b5f573db27eb8b08ec233b858ac61e0c3c --- /dev/null +++ b/experiments/characterization/P800-23/config/P800-23_cat3_FOA-36LKFS.yml @@ -0,0 +1,425 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-23 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-23/proc_input/cat3" +output_path: "experiments/characterization/P800-23/proc_output/cat3/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-23/background_noise/cp23n3.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-23/config/P800-23_cat4_FOA-16LKFS.yml b/experiments/characterization/P800-23/config/P800-23_cat4_FOA-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..7ced314a372c99af9442808dd5c96288b21b7bca --- /dev/null +++ b/experiments/characterization/P800-23/config/P800-23_cat4_FOA-16LKFS.yml @@ -0,0 +1,425 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-23 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-23/proc_input/cat4" +output_path: "experiments/characterization/P800-23/proc_output/cat4/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-23/background_noise/cp23n4.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-23/config/P800-23_cat4_FOA-26LKFS.yml b/experiments/characterization/P800-23/config/P800-23_cat4_FOA-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..e043bf0d8f25d2c615a7aa1cc63a6efe851f6dee --- /dev/null +++ b/experiments/characterization/P800-23/config/P800-23_cat4_FOA-26LKFS.yml @@ -0,0 +1,425 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-23 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-23/proc_input/cat4" +output_path: "experiments/characterization/P800-23/proc_output/cat4/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-23/background_noise/cp23n4.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-23/config/P800-23_cat4_FOA-36LKFS.yml b/experiments/characterization/P800-23/config/P800-23_cat4_FOA-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..385c6c1fa5cd5aa7f11596c1d814b10c40dc4df9 --- /dev/null +++ b/experiments/characterization/P800-23/config/P800-23_cat4_FOA-36LKFS.yml @@ -0,0 +1,425 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-23 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-23/proc_input/cat4" +output_path: "experiments/characterization/P800-23/proc_output/cat4/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-23/background_noise/cp23n4.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-23/config/P800-23_cat5_FOA-16LKFS.yml b/experiments/characterization/P800-23/config/P800-23_cat5_FOA-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..4191b0f6a4fd8209043d2766fb00f9f6d4f615c8 --- /dev/null +++ b/experiments/characterization/P800-23/config/P800-23_cat5_FOA-16LKFS.yml @@ -0,0 +1,422 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-23 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-23/proc_input/cat5" +output_path: "experiments/characterization/P800-23/proc_output/cat5/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-23/config/P800-23_cat5_FOA-26LKFS.yml b/experiments/characterization/P800-23/config/P800-23_cat5_FOA-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..424922eee0842ea922aa85807d0bb75ffa91895c --- /dev/null +++ b/experiments/characterization/P800-23/config/P800-23_cat5_FOA-26LKFS.yml @@ -0,0 +1,422 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-23 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-23/proc_input/cat5" +output_path: "experiments/characterization/P800-23/proc_output/cat5/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-23/config/P800-23_cat5_FOA-36LKFS.yml b/experiments/characterization/P800-23/config/P800-23_cat5_FOA-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..b065f1f1abc642e9ca841e51c8d0682468ead747 --- /dev/null +++ b/experiments/characterization/P800-23/config/P800-23_cat5_FOA-36LKFS.yml @@ -0,0 +1,422 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-23 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-23/proc_input/cat5" +output_path: "experiments/characterization/P800-23/proc_output/cat5/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-23/config/P800-23_cat6_FOA-16LKFS.yml b/experiments/characterization/P800-23/config/P800-23_cat6_FOA-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..518d35c79664d05ceda0b770765752437be2b00a --- /dev/null +++ b/experiments/characterization/P800-23/config/P800-23_cat6_FOA-16LKFS.yml @@ -0,0 +1,422 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-23 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-23/proc_input/cat6" +output_path: "experiments/characterization/P800-23/proc_output/cat6/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-23/config/P800-23_cat6_FOA-26LKFS.yml b/experiments/characterization/P800-23/config/P800-23_cat6_FOA-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..2fc6dba1dd7a2af91f0e06e8bc8e45b9a44f7856 --- /dev/null +++ b/experiments/characterization/P800-23/config/P800-23_cat6_FOA-26LKFS.yml @@ -0,0 +1,422 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-23 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-23/proc_input/cat6" +output_path: "experiments/characterization/P800-23/proc_output/cat6/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-23/config/P800-23_cat6_FOA-36LKFS.yml b/experiments/characterization/P800-23/config/P800-23_cat6_FOA-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..8dd8f8151d513b2e6cd3fefec926d256bf328f25 --- /dev/null +++ b/experiments/characterization/P800-23/config/P800-23_cat6_FOA-36LKFS.yml @@ -0,0 +1,422 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-23 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-23/proc_input/cat6" +output_path: "experiments/characterization/P800-23/proc_output/cat6/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FL enc FX dec conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c12: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c15: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c16: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c17: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c18: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c19: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + ### IVAS FL enc FL dec conditions ### + c23: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c27: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + errpatt_late_loss_rate: 1.0e-13 + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c30: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: JBM2FER + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + errpatt_late_loss_rate: 1.0e-13 + c31: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat + c34: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + c36: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + opts: + - -no_delay_cmp + tx: + type: JBM + error_pattern: ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-23/proc_input/cat1/.gitkeep b/experiments/characterization/P800-23/proc_input/cat1/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-23/proc_input/cat2/.gitkeep b/experiments/characterization/P800-23/proc_input/cat2/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-23/proc_input/cat3/.gitkeep b/experiments/characterization/P800-23/proc_input/cat3/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-23/proc_input/cat4/.gitkeep b/experiments/characterization/P800-23/proc_input/cat4/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-23/proc_input/cat5/.gitkeep b/experiments/characterization/P800-23/proc_input/cat5/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-23/proc_input/cat6/.gitkeep b/experiments/characterization/P800-23/proc_input/cat6/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-23/proc_output/cat1/out_-16LKFS/.gitkeep b/experiments/characterization/P800-23/proc_output/cat1/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-23/proc_output/cat1/out_-26LKFS/.gitkeep b/experiments/characterization/P800-23/proc_output/cat1/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-23/proc_output/cat1/out_-36LKFS/.gitkeep b/experiments/characterization/P800-23/proc_output/cat1/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-23/proc_output/cat2/out_-16LKFS/.gitkeep b/experiments/characterization/P800-23/proc_output/cat2/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-23/proc_output/cat2/out_-26LKFS/.gitkeep b/experiments/characterization/P800-23/proc_output/cat2/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-23/proc_output/cat2/out_-36LKFS/.gitkeep b/experiments/characterization/P800-23/proc_output/cat2/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-23/proc_output/cat3/out_-16LKFS/.gitkeep b/experiments/characterization/P800-23/proc_output/cat3/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-23/proc_output/cat3/out_-26LKFS/.gitkeep b/experiments/characterization/P800-23/proc_output/cat3/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-23/proc_output/cat3/out_-36LKFS/.gitkeep b/experiments/characterization/P800-23/proc_output/cat3/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-23/proc_output/cat4/out_-16LKFS/.gitkeep b/experiments/characterization/P800-23/proc_output/cat4/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-23/proc_output/cat4/out_-26LKFS/.gitkeep b/experiments/characterization/P800-23/proc_output/cat4/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-23/proc_output/cat4/out_-36LKFS/.gitkeep b/experiments/characterization/P800-23/proc_output/cat4/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-23/proc_output/cat5/out_-16LKFS/.gitkeep b/experiments/characterization/P800-23/proc_output/cat5/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-23/proc_output/cat5/out_-26LKFS/.gitkeep b/experiments/characterization/P800-23/proc_output/cat5/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-23/proc_output/cat5/out_-36LKFS/.gitkeep b/experiments/characterization/P800-23/proc_output/cat5/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-23/proc_output/cat6/out_-16LKFS/.gitkeep b/experiments/characterization/P800-23/proc_output/cat6/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-23/proc_output/cat6/out_-26LKFS/.gitkeep b/experiments/characterization/P800-23/proc_output/cat6/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-23/proc_output/cat6/out_-36LKFS/.gitkeep b/experiments/characterization/P800-23/proc_output/cat6/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-3/background_noise/.gitkeep b/experiments/characterization/P800-3/background_noise/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-3/config/P800-3_cat1_FOA-16LKFS.yml b/experiments/characterization/P800-3/config/P800-3_cat1_FOA-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..0d3a594542f3de6d1b8ce418415c2ee0822c1f2f --- /dev/null +++ b/experiments/characterization/P800-3/config/P800-3_cat1_FOA-16LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-3 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-3/proc_input/cat1" +output_path: "experiments/characterization/P800-3/proc_output/cat1/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-3/background_noise/ip03n1.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-3/config/P800-3_cat1_FOA-26LKFS.yml b/experiments/characterization/P800-3/config/P800-3_cat1_FOA-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..7172549fe283be898391e6b9a68a6380d1a18c6b --- /dev/null +++ b/experiments/characterization/P800-3/config/P800-3_cat1_FOA-26LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-3 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-3/proc_input/cat1" +output_path: "experiments/characterization/P800-3/proc_output/cat1/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-3/background_noise/ip03n1.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-3/config/P800-3_cat1_FOA-36LKFS.yml b/experiments/characterization/P800-3/config/P800-3_cat1_FOA-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..205f0bd010e847b8ebbc300a549f18a79c9842da --- /dev/null +++ b/experiments/characterization/P800-3/config/P800-3_cat1_FOA-36LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-3 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-3/proc_input/cat1" +output_path: "experiments/characterization/P800-3/proc_output/cat1/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-3/background_noise/ip03n1.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-3/config/P800-3_cat2_FOA-16LKFS.yml b/experiments/characterization/P800-3/config/P800-3_cat2_FOA-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..b2988bd7dad1946ecb9ecd79e19460f6ed45f434 --- /dev/null +++ b/experiments/characterization/P800-3/config/P800-3_cat2_FOA-16LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-3 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-3/proc_input/cat2" +output_path: "experiments/characterization/P800-3/proc_output/cat2/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-3/background_noise/ip03n2.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-3/config/P800-3_cat2_FOA-26LKFS.yml b/experiments/characterization/P800-3/config/P800-3_cat2_FOA-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..5bcb43abd15f31436f1cf38f579392e3e0e1e6ac --- /dev/null +++ b/experiments/characterization/P800-3/config/P800-3_cat2_FOA-26LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-3 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-3/proc_input/cat2" +output_path: "experiments/characterization/P800-3/proc_output/cat2/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-3/background_noise/ip03n2.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-3/config/P800-3_cat2_FOA-36LKFS.yml b/experiments/characterization/P800-3/config/P800-3_cat2_FOA-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..d161548110d5b4c594732f02b89fabc468437a9e --- /dev/null +++ b/experiments/characterization/P800-3/config/P800-3_cat2_FOA-36LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-3 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-3/proc_input/cat2" +output_path: "experiments/characterization/P800-3/proc_output/cat2/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-3/background_noise/ip03n2.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-3/config/P800-3_cat3_FOA-16LKFS.yml b/experiments/characterization/P800-3/config/P800-3_cat3_FOA-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..ec7b83f06022c45b8716c6937f907ce50689985c --- /dev/null +++ b/experiments/characterization/P800-3/config/P800-3_cat3_FOA-16LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-3 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-3/proc_input/cat3" +output_path: "experiments/characterization/P800-3/proc_output/cat3/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-3/background_noise/ip03n3.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-3/config/P800-3_cat3_FOA-26LKFS.yml b/experiments/characterization/P800-3/config/P800-3_cat3_FOA-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..6c65ef151df4b4ea2d48768b31aa6c38107e7826 --- /dev/null +++ b/experiments/characterization/P800-3/config/P800-3_cat3_FOA-26LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-3 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-3/proc_input/cat3" +output_path: "experiments/characterization/P800-3/proc_output/cat3/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-3/background_noise/ip03n3.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-3/config/P800-3_cat3_FOA-36LKFS.yml b/experiments/characterization/P800-3/config/P800-3_cat3_FOA-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..e5aef5f53519eeeeb8ce9680494c65ae645036b0 --- /dev/null +++ b/experiments/characterization/P800-3/config/P800-3_cat3_FOA-36LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-3 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-3/proc_input/cat3" +output_path: "experiments/characterization/P800-3/proc_output/cat3/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-3/background_noise/ip03n3.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-3/config/P800-3_cat4_FOA-16LKFS.yml b/experiments/characterization/P800-3/config/P800-3_cat4_FOA-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..d8128b4e3a672c78c6c0b3406879ebe6429f3797 --- /dev/null +++ b/experiments/characterization/P800-3/config/P800-3_cat4_FOA-16LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-3 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-3/proc_input/cat4" +output_path: "experiments/characterization/P800-3/proc_output/cat4/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-3/background_noise/ip03n4.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-3/config/P800-3_cat4_FOA-26LKFS.yml b/experiments/characterization/P800-3/config/P800-3_cat4_FOA-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..c27be814723dd9710f8c1f19d1a1b2dcdb326ba5 --- /dev/null +++ b/experiments/characterization/P800-3/config/P800-3_cat4_FOA-26LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-3 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-3/proc_input/cat4" +output_path: "experiments/characterization/P800-3/proc_output/cat4/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-3/background_noise/ip03n4.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-3/config/P800-3_cat4_FOA-36LKFS.yml b/experiments/characterization/P800-3/config/P800-3_cat4_FOA-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..89e9ee61cb13348bbacae068bb33295e7635fb15 --- /dev/null +++ b/experiments/characterization/P800-3/config/P800-3_cat4_FOA-36LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-3 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-3/proc_input/cat4" +output_path: "experiments/characterization/P800-3/proc_output/cat4/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-3/background_noise/ip03n4.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-3/config/P800-3_cat5_FOA-16LKFS.yml b/experiments/characterization/P800-3/config/P800-3_cat5_FOA-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..a95f6ba9d82ceae47a51189795dcbe092dbd0a84 --- /dev/null +++ b/experiments/characterization/P800-3/config/P800-3_cat5_FOA-16LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-3 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-3/proc_input/cat5" +output_path: "experiments/characterization/P800-3/proc_output/cat5/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-3/config/P800-3_cat5_FOA-26LKFS.yml b/experiments/characterization/P800-3/config/P800-3_cat5_FOA-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..ed1e8d6562bd9a9b025172a624db9bc496197909 --- /dev/null +++ b/experiments/characterization/P800-3/config/P800-3_cat5_FOA-26LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-3 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-3/proc_input/cat5" +output_path: "experiments/characterization/P800-3/proc_output/cat5/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-3/config/P800-3_cat5_FOA-36LKFS.yml b/experiments/characterization/P800-3/config/P800-3_cat5_FOA-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..db8f1c3b0b46c71e3c1c4646039a475b6c0d3f77 --- /dev/null +++ b/experiments/characterization/P800-3/config/P800-3_cat5_FOA-36LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-3 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-3/proc_input/cat5" +output_path: "experiments/characterization/P800-3/proc_output/cat5/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-3/config/P800-3_cat6_FOA-16LKFS.yml b/experiments/characterization/P800-3/config/P800-3_cat6_FOA-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..0b65ceb2205d94154d85a6cbefb742efa464e73d --- /dev/null +++ b/experiments/characterization/P800-3/config/P800-3_cat6_FOA-16LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-3 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-3/proc_input/cat6" +output_path: "experiments/characterization/P800-3/proc_output/cat6/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-3/config/P800-3_cat6_FOA-26LKFS.yml b/experiments/characterization/P800-3/config/P800-3_cat6_FOA-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..9b430b21e980d52e32410aaff4860def311ca472 --- /dev/null +++ b/experiments/characterization/P800-3/config/P800-3_cat6_FOA-26LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-3 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-3/proc_input/cat6" +output_path: "experiments/characterization/P800-3/proc_output/cat6/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-3/config/P800-3_cat6_FOA-36LKFS.yml b/experiments/characterization/P800-3/config/P800-3_cat6_FOA-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..d3f02716e7035c7cd4a24e37792dbe9ef2569565 --- /dev/null +++ b/experiments/characterization/P800-3/config/P800-3_cat6_FOA-36LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-3 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-3/proc_input/cat6" +output_path: "experiments/characterization/P800-3/proc_output/cat6/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-3/proc_input/cat1/.gitkeep b/experiments/characterization/P800-3/proc_input/cat1/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-3/proc_input/cat2/.gitkeep b/experiments/characterization/P800-3/proc_input/cat2/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-3/proc_input/cat3/.gitkeep b/experiments/characterization/P800-3/proc_input/cat3/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-3/proc_input/cat4/.gitkeep b/experiments/characterization/P800-3/proc_input/cat4/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-3/proc_input/cat5/.gitkeep b/experiments/characterization/P800-3/proc_input/cat5/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-3/proc_input/cat6/.gitkeep b/experiments/characterization/P800-3/proc_input/cat6/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-3/proc_output/cat1/out_-16LKFS/.gitkeep b/experiments/characterization/P800-3/proc_output/cat1/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-3/proc_output/cat1/out_-26LKFS/.gitkeep b/experiments/characterization/P800-3/proc_output/cat1/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-3/proc_output/cat1/out_-36LKFS/.gitkeep b/experiments/characterization/P800-3/proc_output/cat1/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-3/proc_output/cat2/out_-16LKFS/.gitkeep b/experiments/characterization/P800-3/proc_output/cat2/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-3/proc_output/cat2/out_-26LKFS/.gitkeep b/experiments/characterization/P800-3/proc_output/cat2/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-3/proc_output/cat2/out_-36LKFS/.gitkeep b/experiments/characterization/P800-3/proc_output/cat2/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-3/proc_output/cat3/out_-16LKFS/.gitkeep b/experiments/characterization/P800-3/proc_output/cat3/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-3/proc_output/cat3/out_-26LKFS/.gitkeep b/experiments/characterization/P800-3/proc_output/cat3/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-3/proc_output/cat3/out_-36LKFS/.gitkeep b/experiments/characterization/P800-3/proc_output/cat3/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-3/proc_output/cat4/out_-16LKFS/.gitkeep b/experiments/characterization/P800-3/proc_output/cat4/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-3/proc_output/cat4/out_-26LKFS/.gitkeep b/experiments/characterization/P800-3/proc_output/cat4/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-3/proc_output/cat4/out_-36LKFS/.gitkeep b/experiments/characterization/P800-3/proc_output/cat4/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-3/proc_output/cat5/out_-16LKFS/.gitkeep b/experiments/characterization/P800-3/proc_output/cat5/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-3/proc_output/cat5/out_-26LKFS/.gitkeep b/experiments/characterization/P800-3/proc_output/cat5/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-3/proc_output/cat5/out_-36LKFS/.gitkeep b/experiments/characterization/P800-3/proc_output/cat5/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-3/proc_output/cat6/out_-16LKFS/.gitkeep b/experiments/characterization/P800-3/proc_output/cat6/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-3/proc_output/cat6/out_-26LKFS/.gitkeep b/experiments/characterization/P800-3/proc_output/cat6/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-3/proc_output/cat6/out_-36LKFS/.gitkeep b/experiments/characterization/P800-3/proc_output/cat6/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-4/background_noise/.gitkeep b/experiments/characterization/P800-4/background_noise/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-4/config/P800-4_cat1_HOA2-16LKFS.yml b/experiments/characterization/P800-4/config/P800-4_cat1_HOA2-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..f5efed72325b1cefbb6381661b0354f45131656a --- /dev/null +++ b/experiments/characterization/P800-4/config/P800-4_cat1_HOA2-16LKFS.yml @@ -0,0 +1,443 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-4 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-4/proc_input/cat1" +output_path: "experiments/characterization/P800-4/proc_output/cat1/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "HOA2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-4/background_noise/ip04n1.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-4/config/P800-4_cat1_HOA2-26LKFS.yml b/experiments/characterization/P800-4/config/P800-4_cat1_HOA2-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..8860b7d705043425e630552432f55e878d1bbce6 --- /dev/null +++ b/experiments/characterization/P800-4/config/P800-4_cat1_HOA2-26LKFS.yml @@ -0,0 +1,443 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-4 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-4/proc_input/cat1" +output_path: "experiments/characterization/P800-4/proc_output/cat1/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "HOA2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-4/background_noise/ip04n1.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-4/config/P800-4_cat1_HOA2-36LKFS.yml b/experiments/characterization/P800-4/config/P800-4_cat1_HOA2-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..e9f239c5b362243e3069c456de637e186251cbff --- /dev/null +++ b/experiments/characterization/P800-4/config/P800-4_cat1_HOA2-36LKFS.yml @@ -0,0 +1,443 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-4 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-4/proc_input/cat1" +output_path: "experiments/characterization/P800-4/proc_output/cat1/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "HOA2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-4/background_noise/ip04n1.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-4/config/P800-4_cat2_HOA2-16LKFS.yml b/experiments/characterization/P800-4/config/P800-4_cat2_HOA2-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..37c1b9882f83a4716f7273c54343e8f53952018e --- /dev/null +++ b/experiments/characterization/P800-4/config/P800-4_cat2_HOA2-16LKFS.yml @@ -0,0 +1,443 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-4 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-4/proc_input/cat2" +output_path: "experiments/characterization/P800-4/proc_output/cat2/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "HOA2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-4/background_noise/ip04n2.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-4/config/P800-4_cat2_HOA2-26LKFS.yml b/experiments/characterization/P800-4/config/P800-4_cat2_HOA2-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..852a1e57d941dded8eef3615bd65d598983db106 --- /dev/null +++ b/experiments/characterization/P800-4/config/P800-4_cat2_HOA2-26LKFS.yml @@ -0,0 +1,443 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-4 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-4/proc_input/cat2" +output_path: "experiments/characterization/P800-4/proc_output/cat2/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "HOA2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-4/background_noise/ip04n2.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-4/config/P800-4_cat2_HOA2-36LKFS.yml b/experiments/characterization/P800-4/config/P800-4_cat2_HOA2-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..cd076889b7c7284d21f8f8e8e2cfe4efe47296d7 --- /dev/null +++ b/experiments/characterization/P800-4/config/P800-4_cat2_HOA2-36LKFS.yml @@ -0,0 +1,443 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-4 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-4/proc_input/cat2" +output_path: "experiments/characterization/P800-4/proc_output/cat2/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "HOA2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-4/background_noise/ip04n2.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-4/config/P800-4_cat3_HOA2-16LKFS.yml b/experiments/characterization/P800-4/config/P800-4_cat3_HOA2-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..2c7b8a0820fbd217270c5ce89bf598ded67fad0a --- /dev/null +++ b/experiments/characterization/P800-4/config/P800-4_cat3_HOA2-16LKFS.yml @@ -0,0 +1,443 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-4 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-4/proc_input/cat3" +output_path: "experiments/characterization/P800-4/proc_output/cat3/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "HOA2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-4/background_noise/ip04n3.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-4/config/P800-4_cat3_HOA2-26LKFS.yml b/experiments/characterization/P800-4/config/P800-4_cat3_HOA2-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..bd03b55ed92bb42a462edfc9ef723572d0a1227a --- /dev/null +++ b/experiments/characterization/P800-4/config/P800-4_cat3_HOA2-26LKFS.yml @@ -0,0 +1,443 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-4 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-4/proc_input/cat3" +output_path: "experiments/characterization/P800-4/proc_output/cat3/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "HOA2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-4/background_noise/ip04n3.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-4/config/P800-4_cat3_HOA2-36LKFS.yml b/experiments/characterization/P800-4/config/P800-4_cat3_HOA2-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..3d137d91eaef6caff6f51d1132f20ca6407906d0 --- /dev/null +++ b/experiments/characterization/P800-4/config/P800-4_cat3_HOA2-36LKFS.yml @@ -0,0 +1,443 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-4 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-4/proc_input/cat3" +output_path: "experiments/characterization/P800-4/proc_output/cat3/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "HOA2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-4/background_noise/ip04n3.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-4/config/P800-4_cat4_HOA2-16LKFS.yml b/experiments/characterization/P800-4/config/P800-4_cat4_HOA2-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..498f6f754f4514fd91a6e0b9666fab1759bb917e --- /dev/null +++ b/experiments/characterization/P800-4/config/P800-4_cat4_HOA2-16LKFS.yml @@ -0,0 +1,443 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-4 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-4/proc_input/cat4" +output_path: "experiments/characterization/P800-4/proc_output/cat4/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "HOA2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-4/background_noise/ip04n4.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-4/config/P800-4_cat4_HOA2-26LKFS.yml b/experiments/characterization/P800-4/config/P800-4_cat4_HOA2-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..5b7ee62542623ca91e7e7c0cc46cc7672042eb47 --- /dev/null +++ b/experiments/characterization/P800-4/config/P800-4_cat4_HOA2-26LKFS.yml @@ -0,0 +1,443 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-4 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-4/proc_input/cat4" +output_path: "experiments/characterization/P800-4/proc_output/cat4/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "HOA2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-4/background_noise/ip04n4.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-4/config/P800-4_cat4_HOA2-36LKFS.yml b/experiments/characterization/P800-4/config/P800-4_cat4_HOA2-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..8a8e5537757537bebc23f7b6d2ef9e8f3629452e --- /dev/null +++ b/experiments/characterization/P800-4/config/P800-4_cat4_HOA2-36LKFS.yml @@ -0,0 +1,443 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-4 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-4/proc_input/cat4" +output_path: "experiments/characterization/P800-4/proc_output/cat4/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "HOA2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-4/background_noise/ip04n4.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-4/config/P800-4_cat5_HOA2-16LKFS.yml b/experiments/characterization/P800-4/config/P800-4_cat5_HOA2-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..cfd39b58371ef10d12c429e80518d952a748ad08 --- /dev/null +++ b/experiments/characterization/P800-4/config/P800-4_cat5_HOA2-16LKFS.yml @@ -0,0 +1,440 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-4 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-4/proc_input/cat5" +output_path: "experiments/characterization/P800-4/proc_output/cat5/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "HOA2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-4/config/P800-4_cat5_HOA2-26LKFS.yml b/experiments/characterization/P800-4/config/P800-4_cat5_HOA2-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..eeb856b42247be8008868b1f24d381046d4c55aa --- /dev/null +++ b/experiments/characterization/P800-4/config/P800-4_cat5_HOA2-26LKFS.yml @@ -0,0 +1,440 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-4 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-4/proc_input/cat5" +output_path: "experiments/characterization/P800-4/proc_output/cat5/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "HOA2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-4/config/P800-4_cat5_HOA2-36LKFS.yml b/experiments/characterization/P800-4/config/P800-4_cat5_HOA2-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..a463091c6199f2b6662731f9c1c8ee582fe5ee22 --- /dev/null +++ b/experiments/characterization/P800-4/config/P800-4_cat5_HOA2-36LKFS.yml @@ -0,0 +1,440 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-4 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-4/proc_input/cat5" +output_path: "experiments/characterization/P800-4/proc_output/cat5/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "HOA2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-4/config/P800-4_cat6_HOA2-16LKFS.yml b/experiments/characterization/P800-4/config/P800-4_cat6_HOA2-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..db8520abe3b3084340ecee6c583382f854845481 --- /dev/null +++ b/experiments/characterization/P800-4/config/P800-4_cat6_HOA2-16LKFS.yml @@ -0,0 +1,440 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-4 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-4/proc_input/cat6" +output_path: "experiments/characterization/P800-4/proc_output/cat6/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "HOA2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-4/config/P800-4_cat6_HOA2-26LKFS.yml b/experiments/characterization/P800-4/config/P800-4_cat6_HOA2-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..daf95750185f4365749ea9e3dbced9fba403c24e --- /dev/null +++ b/experiments/characterization/P800-4/config/P800-4_cat6_HOA2-26LKFS.yml @@ -0,0 +1,440 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-4 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-4/proc_input/cat6" +output_path: "experiments/characterization/P800-4/proc_output/cat6/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "HOA2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-4/config/P800-4_cat6_HOA2-36LKFS.yml b/experiments/characterization/P800-4/config/P800-4_cat6_HOA2-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..8ecfb9ab6495af379a89c476b0c9febe592f9fd2 --- /dev/null +++ b/experiments/characterization/P800-4/config/P800-4_cat6_HOA2-36LKFS.yml @@ -0,0 +1,440 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-4 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-4/proc_input/cat6" +output_path: "experiments/characterization/P800-4/proc_output/cat6/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "HOA2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-4/proc_input/cat1/.gitkeep b/experiments/characterization/P800-4/proc_input/cat1/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-4/proc_input/cat2/.gitkeep b/experiments/characterization/P800-4/proc_input/cat2/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-4/proc_input/cat3/.gitkeep b/experiments/characterization/P800-4/proc_input/cat3/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-4/proc_input/cat4/.gitkeep b/experiments/characterization/P800-4/proc_input/cat4/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-4/proc_input/cat5/.gitkeep b/experiments/characterization/P800-4/proc_input/cat5/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-4/proc_input/cat6/.gitkeep b/experiments/characterization/P800-4/proc_input/cat6/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-4/proc_output/cat1/out_-16LKFS/.gitkeep b/experiments/characterization/P800-4/proc_output/cat1/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-4/proc_output/cat1/out_-26LKFS/.gitkeep b/experiments/characterization/P800-4/proc_output/cat1/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-4/proc_output/cat1/out_-36LKFS/.gitkeep b/experiments/characterization/P800-4/proc_output/cat1/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-4/proc_output/cat2/out_-16LKFS/.gitkeep b/experiments/characterization/P800-4/proc_output/cat2/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-4/proc_output/cat2/out_-26LKFS/.gitkeep b/experiments/characterization/P800-4/proc_output/cat2/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-4/proc_output/cat2/out_-36LKFS/.gitkeep b/experiments/characterization/P800-4/proc_output/cat2/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-4/proc_output/cat3/out_-16LKFS/.gitkeep b/experiments/characterization/P800-4/proc_output/cat3/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-4/proc_output/cat3/out_-26LKFS/.gitkeep b/experiments/characterization/P800-4/proc_output/cat3/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-4/proc_output/cat3/out_-36LKFS/.gitkeep b/experiments/characterization/P800-4/proc_output/cat3/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-4/proc_output/cat4/out_-16LKFS/.gitkeep b/experiments/characterization/P800-4/proc_output/cat4/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-4/proc_output/cat4/out_-26LKFS/.gitkeep b/experiments/characterization/P800-4/proc_output/cat4/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-4/proc_output/cat4/out_-36LKFS/.gitkeep b/experiments/characterization/P800-4/proc_output/cat4/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-4/proc_output/cat5/out_-16LKFS/.gitkeep b/experiments/characterization/P800-4/proc_output/cat5/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-4/proc_output/cat5/out_-26LKFS/.gitkeep b/experiments/characterization/P800-4/proc_output/cat5/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-4/proc_output/cat5/out_-36LKFS/.gitkeep b/experiments/characterization/P800-4/proc_output/cat5/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-4/proc_output/cat6/out_-16LKFS/.gitkeep b/experiments/characterization/P800-4/proc_output/cat6/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-4/proc_output/cat6/out_-26LKFS/.gitkeep b/experiments/characterization/P800-4/proc_output/cat6/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-4/proc_output/cat6/out_-36LKFS/.gitkeep b/experiments/characterization/P800-4/proc_output/cat6/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-5/background_noise/.gitkeep b/experiments/characterization/P800-5/background_noise/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-5/config/P800-5_cat1_HOA3-16LKFS.yml b/experiments/characterization/P800-5/config/P800-5_cat1_HOA3-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..08ffdc8a4e811dd7854fd85610928d8a7d368a3b --- /dev/null +++ b/experiments/characterization/P800-5/config/P800-5_cat1_HOA3-16LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-5 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-5/proc_input/cat1" +output_path: "experiments/characterization/P800-5/proc_output/cat1/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "HOA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-5/background_noise/ap05n1.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-5/config/P800-5_cat1_HOA3-26LKFS.yml b/experiments/characterization/P800-5/config/P800-5_cat1_HOA3-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..8b90995ab5ccc78d26d89f88ddf12e1e89ae0b65 --- /dev/null +++ b/experiments/characterization/P800-5/config/P800-5_cat1_HOA3-26LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-5 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-5/proc_input/cat1" +output_path: "experiments/characterization/P800-5/proc_output/cat1/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "HOA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-5/background_noise/ap05n1.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-5/config/P800-5_cat1_HOA3-36LKFS.yml b/experiments/characterization/P800-5/config/P800-5_cat1_HOA3-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..21c28a8974bd0d7b01d1629f02e192537196baf2 --- /dev/null +++ b/experiments/characterization/P800-5/config/P800-5_cat1_HOA3-36LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-5 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-5/proc_input/cat1" +output_path: "experiments/characterization/P800-5/proc_output/cat1/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "HOA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-5/background_noise/ap05n1.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-5/config/P800-5_cat2_HOA3-16LKFS.yml b/experiments/characterization/P800-5/config/P800-5_cat2_HOA3-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..2eb970a7b58fa388b15c1d6076a83bb1123ec7f0 --- /dev/null +++ b/experiments/characterization/P800-5/config/P800-5_cat2_HOA3-16LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-5 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-5/proc_input/cat2" +output_path: "experiments/characterization/P800-5/proc_output/cat2/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "HOA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-5/background_noise/ap05n2.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-5/config/P800-5_cat2_HOA3-26LKFS.yml b/experiments/characterization/P800-5/config/P800-5_cat2_HOA3-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..5c5b93bfc3de7ff441b459c225c4d0cd39c39597 --- /dev/null +++ b/experiments/characterization/P800-5/config/P800-5_cat2_HOA3-26LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-5 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-5/proc_input/cat2" +output_path: "experiments/characterization/P800-5/proc_output/cat2/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "HOA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-5/background_noise/ap05n2.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-5/config/P800-5_cat2_HOA3-36LKFS.yml b/experiments/characterization/P800-5/config/P800-5_cat2_HOA3-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..ab430bc08bc5afc588016b66c45eae7a652fcd4e --- /dev/null +++ b/experiments/characterization/P800-5/config/P800-5_cat2_HOA3-36LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-5 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-5/proc_input/cat2" +output_path: "experiments/characterization/P800-5/proc_output/cat2/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "HOA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-5/background_noise/ap05n2.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-5/config/P800-5_cat3_HOA3-16LKFS.yml b/experiments/characterization/P800-5/config/P800-5_cat3_HOA3-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..b7351e550096206aae530eaba4d09301ed0bc7fa --- /dev/null +++ b/experiments/characterization/P800-5/config/P800-5_cat3_HOA3-16LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-5 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-5/proc_input/cat3" +output_path: "experiments/characterization/P800-5/proc_output/cat3/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "HOA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-5/background_noise/ap05n3.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-5/config/P800-5_cat3_HOA3-26LKFS.yml b/experiments/characterization/P800-5/config/P800-5_cat3_HOA3-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..3ef1b8996e0ede5e5516c081a4e1511d7fe1d8f6 --- /dev/null +++ b/experiments/characterization/P800-5/config/P800-5_cat3_HOA3-26LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-5 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-5/proc_input/cat3" +output_path: "experiments/characterization/P800-5/proc_output/cat3/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "HOA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-5/background_noise/ap05n3.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-5/config/P800-5_cat3_HOA3-36LKFS.yml b/experiments/characterization/P800-5/config/P800-5_cat3_HOA3-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..f816b4664dbc6421da4cfca646c7dc46035e6484 --- /dev/null +++ b/experiments/characterization/P800-5/config/P800-5_cat3_HOA3-36LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-5 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-5/proc_input/cat3" +output_path: "experiments/characterization/P800-5/proc_output/cat3/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "HOA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-5/background_noise/ap05n3.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-5/config/P800-5_cat4_HOA3-16LKFS.yml b/experiments/characterization/P800-5/config/P800-5_cat4_HOA3-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..ee545ed3ce559fa7fe8285e9515f3c1ac42d07dd --- /dev/null +++ b/experiments/characterization/P800-5/config/P800-5_cat4_HOA3-16LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-5 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-5/proc_input/cat4" +output_path: "experiments/characterization/P800-5/proc_output/cat4/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "HOA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-5/background_noise/ap05n4.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-5/config/P800-5_cat4_HOA3-26LKFS.yml b/experiments/characterization/P800-5/config/P800-5_cat4_HOA3-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..45983a671d41a129d7ce8031d8f3b24ec7a2f18f --- /dev/null +++ b/experiments/characterization/P800-5/config/P800-5_cat4_HOA3-26LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-5 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-5/proc_input/cat4" +output_path: "experiments/characterization/P800-5/proc_output/cat4/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "HOA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-5/background_noise/ap05n4.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-5/config/P800-5_cat4_HOA3-36LKFS.yml b/experiments/characterization/P800-5/config/P800-5_cat4_HOA3-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..3230ecd31cc6d3efa2a098bdbf4d2f0056c0fe4d --- /dev/null +++ b/experiments/characterization/P800-5/config/P800-5_cat4_HOA3-36LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-5 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-5/proc_input/cat4" +output_path: "experiments/characterization/P800-5/proc_output/cat4/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "HOA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-5/background_noise/ap05n4.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-5/config/P800-5_cat5_HOA3-16LKFS.yml b/experiments/characterization/P800-5/config/P800-5_cat5_HOA3-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..9f96016242bae53313ff640da8537cd683e4a3b7 --- /dev/null +++ b/experiments/characterization/P800-5/config/P800-5_cat5_HOA3-16LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-5 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-5/proc_input/cat5" +output_path: "experiments/characterization/P800-5/proc_output/cat5/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "HOA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-5/config/P800-5_cat5_HOA3-26LKFS.yml b/experiments/characterization/P800-5/config/P800-5_cat5_HOA3-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..8acae43b0d4f2e8ca77cf9594b88981d00d28da1 --- /dev/null +++ b/experiments/characterization/P800-5/config/P800-5_cat5_HOA3-26LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-5 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-5/proc_input/cat5" +output_path: "experiments/characterization/P800-5/proc_output/cat5/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "HOA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-5/config/P800-5_cat5_HOA3-36LKFS.yml b/experiments/characterization/P800-5/config/P800-5_cat5_HOA3-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..7ec85fe3fdd2ebd5f1ec3479b5173aa3e129812f --- /dev/null +++ b/experiments/characterization/P800-5/config/P800-5_cat5_HOA3-36LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-5 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-5/proc_input/cat5" +output_path: "experiments/characterization/P800-5/proc_output/cat5/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "HOA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-5/config/P800-5_cat6_HOA3-16LKFS.yml b/experiments/characterization/P800-5/config/P800-5_cat6_HOA3-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..bea6b66403f5abcbbfae1da352ea4b7a3cb0af9e --- /dev/null +++ b/experiments/characterization/P800-5/config/P800-5_cat6_HOA3-16LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-5 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-5/proc_input/cat6" +output_path: "experiments/characterization/P800-5/proc_output/cat6/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "HOA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-5/config/P800-5_cat6_HOA3-26LKFS.yml b/experiments/characterization/P800-5/config/P800-5_cat6_HOA3-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..bc126ab4ec5f31882109ac1e84e37fe8b78dda54 --- /dev/null +++ b/experiments/characterization/P800-5/config/P800-5_cat6_HOA3-26LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-5 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-5/proc_input/cat6" +output_path: "experiments/characterization/P800-5/proc_output/cat6/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "HOA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-5/config/P800-5_cat6_HOA3-36LKFS.yml b/experiments/characterization/P800-5/config/P800-5_cat6_HOA3-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..917801e8a20ab36d68ea3066dcb302618dd5e460 --- /dev/null +++ b/experiments/characterization/P800-5/config/P800-5_cat6_HOA3-36LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-5 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-5/proc_input/cat6" +output_path: "experiments/characterization/P800-5/proc_output/cat6/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "HOA3" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 512000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-5/proc_input/cat1/.gitkeep b/experiments/characterization/P800-5/proc_input/cat1/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-5/proc_input/cat2/.gitkeep b/experiments/characterization/P800-5/proc_input/cat2/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-5/proc_input/cat3/.gitkeep b/experiments/characterization/P800-5/proc_input/cat3/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-5/proc_input/cat4/.gitkeep b/experiments/characterization/P800-5/proc_input/cat4/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-5/proc_input/cat5/.gitkeep b/experiments/characterization/P800-5/proc_input/cat5/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-5/proc_input/cat6/.gitkeep b/experiments/characterization/P800-5/proc_input/cat6/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-5/proc_output/cat1/out_-16LKFS/.gitkeep b/experiments/characterization/P800-5/proc_output/cat1/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-5/proc_output/cat1/out_-26LKFS/.gitkeep b/experiments/characterization/P800-5/proc_output/cat1/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-5/proc_output/cat1/out_-36LKFS/.gitkeep b/experiments/characterization/P800-5/proc_output/cat1/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-5/proc_output/cat2/out_-16LKFS/.gitkeep b/experiments/characterization/P800-5/proc_output/cat2/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-5/proc_output/cat2/out_-26LKFS/.gitkeep b/experiments/characterization/P800-5/proc_output/cat2/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-5/proc_output/cat2/out_-36LKFS/.gitkeep b/experiments/characterization/P800-5/proc_output/cat2/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-5/proc_output/cat3/out_-16LKFS/.gitkeep b/experiments/characterization/P800-5/proc_output/cat3/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-5/proc_output/cat3/out_-26LKFS/.gitkeep b/experiments/characterization/P800-5/proc_output/cat3/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-5/proc_output/cat3/out_-36LKFS/.gitkeep b/experiments/characterization/P800-5/proc_output/cat3/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-5/proc_output/cat4/out_-16LKFS/.gitkeep b/experiments/characterization/P800-5/proc_output/cat4/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-5/proc_output/cat4/out_-26LKFS/.gitkeep b/experiments/characterization/P800-5/proc_output/cat4/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-5/proc_output/cat4/out_-36LKFS/.gitkeep b/experiments/characterization/P800-5/proc_output/cat4/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-5/proc_output/cat5/out_-16LKFS/.gitkeep b/experiments/characterization/P800-5/proc_output/cat5/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-5/proc_output/cat5/out_-26LKFS/.gitkeep b/experiments/characterization/P800-5/proc_output/cat5/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-5/proc_output/cat5/out_-36LKFS/.gitkeep b/experiments/characterization/P800-5/proc_output/cat5/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-5/proc_output/cat6/out_-16LKFS/.gitkeep b/experiments/characterization/P800-5/proc_output/cat6/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-5/proc_output/cat6/out_-26LKFS/.gitkeep b/experiments/characterization/P800-5/proc_output/cat6/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-5/proc_output/cat6/out_-36LKFS/.gitkeep b/experiments/characterization/P800-5/proc_output/cat6/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-6/background_noise/.gitkeep b/experiments/characterization/P800-6/background_noise/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-6/config/P800-6_cat1_5_1-16LKFS.yml b/experiments/characterization/P800-6/config/P800-6_cat1_5_1-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..f7339a17d0549748ed9eaba9177c6da43c04656c --- /dev/null +++ b/experiments/characterization/P800-6/config/P800-6_cat1_5_1-16LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-6 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-6/proc_input/cat1" +output_path: "experiments/characterization/P800-6/proc_output/cat1/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "5_1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-6/background_noise/fp06n1.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-6/config/P800-6_cat1_5_1-26LKFS.yml b/experiments/characterization/P800-6/config/P800-6_cat1_5_1-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..fa629830d9f630031d9bef2e6991b3a87bec26bf --- /dev/null +++ b/experiments/characterization/P800-6/config/P800-6_cat1_5_1-26LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-6 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-6/proc_input/cat1" +output_path: "experiments/characterization/P800-6/proc_output/cat1/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "5_1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-6/background_noise/fp06n1.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-6/config/P800-6_cat1_5_1-36LKFS.yml b/experiments/characterization/P800-6/config/P800-6_cat1_5_1-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..2575447333bb30dac008629c41b013e8aa4c6620 --- /dev/null +++ b/experiments/characterization/P800-6/config/P800-6_cat1_5_1-36LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-6 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-6/proc_input/cat1" +output_path: "experiments/characterization/P800-6/proc_output/cat1/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "5_1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-6/background_noise/fp06n1.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-6/config/P800-6_cat2_7_1-16LKFS.yml b/experiments/characterization/P800-6/config/P800-6_cat2_7_1-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..03438f941ad8feeb9b1b21121505c6f5d2e7e5f7 --- /dev/null +++ b/experiments/characterization/P800-6/config/P800-6_cat2_7_1-16LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-6 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-6/proc_input/cat2" +output_path: "experiments/characterization/P800-6/proc_output/cat2/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "7_1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-6/background_noise/fp06n2.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-6/config/P800-6_cat2_7_1-26LKFS.yml b/experiments/characterization/P800-6/config/P800-6_cat2_7_1-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..05448631b5cf21361dd12ba09b23a76f833ce261 --- /dev/null +++ b/experiments/characterization/P800-6/config/P800-6_cat2_7_1-26LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-6 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-6/proc_input/cat2" +output_path: "experiments/characterization/P800-6/proc_output/cat2/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "7_1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-6/background_noise/fp06n2.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-6/config/P800-6_cat2_7_1-36LKFS.yml b/experiments/characterization/P800-6/config/P800-6_cat2_7_1-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..0f69e130af5bfb3e345ef0671387f3eb6621fca8 --- /dev/null +++ b/experiments/characterization/P800-6/config/P800-6_cat2_7_1-36LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-6 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-6/proc_input/cat2" +output_path: "experiments/characterization/P800-6/proc_output/cat2/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "7_1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-6/background_noise/fp06n2.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-6/config/P800-6_cat3_5_1-16LKFS.yml b/experiments/characterization/P800-6/config/P800-6_cat3_5_1-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..0329cf33f04b15ef7ba559d19cf73f9eb9c568b2 --- /dev/null +++ b/experiments/characterization/P800-6/config/P800-6_cat3_5_1-16LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-6 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-6/proc_input/cat3" +output_path: "experiments/characterization/P800-6/proc_output/cat3/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "5_1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-6/background_noise/fp06n3.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-6/config/P800-6_cat3_5_1-26LKFS.yml b/experiments/characterization/P800-6/config/P800-6_cat3_5_1-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..47b625df8bb11b88b94fd197a0b4f9f82a1c6040 --- /dev/null +++ b/experiments/characterization/P800-6/config/P800-6_cat3_5_1-26LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-6 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-6/proc_input/cat3" +output_path: "experiments/characterization/P800-6/proc_output/cat3/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "5_1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-6/background_noise/fp06n3.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-6/config/P800-6_cat3_5_1-36LKFS.yml b/experiments/characterization/P800-6/config/P800-6_cat3_5_1-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..e76a9fd57c7c6697759af26dc5fdf21483ee1f6b --- /dev/null +++ b/experiments/characterization/P800-6/config/P800-6_cat3_5_1-36LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-6 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-6/proc_input/cat3" +output_path: "experiments/characterization/P800-6/proc_output/cat3/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "5_1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-6/background_noise/fp06n3.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-6/config/P800-6_cat4_7_1-16LKFS.yml b/experiments/characterization/P800-6/config/P800-6_cat4_7_1-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..91d92bc7557990fa0106f2df0dd5908434d72427 --- /dev/null +++ b/experiments/characterization/P800-6/config/P800-6_cat4_7_1-16LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-6 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-6/proc_input/cat4" +output_path: "experiments/characterization/P800-6/proc_output/cat4/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "7_1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-6/background_noise/fp06n4.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-6/config/P800-6_cat4_7_1-26LKFS.yml b/experiments/characterization/P800-6/config/P800-6_cat4_7_1-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..b212f1916bb5004292b8bb291f91f4fe90431818 --- /dev/null +++ b/experiments/characterization/P800-6/config/P800-6_cat4_7_1-26LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-6 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-6/proc_input/cat4" +output_path: "experiments/characterization/P800-6/proc_output/cat4/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "7_1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-6/background_noise/fp06n4.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-6/config/P800-6_cat4_7_1-36LKFS.yml b/experiments/characterization/P800-6/config/P800-6_cat4_7_1-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..a2fef2cb4a58809f3b9770ad1ab05c5b2d7d561f --- /dev/null +++ b/experiments/characterization/P800-6/config/P800-6_cat4_7_1-36LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-6 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-6/proc_input/cat4" +output_path: "experiments/characterization/P800-6/proc_output/cat4/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "7_1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-6/background_noise/fp06n4.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-6/config/P800-6_cat5_5_1-16LKFS.yml b/experiments/characterization/P800-6/config/P800-6_cat5_5_1-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..65ecdddd6d40d14fc92571762e659b527a01e519 --- /dev/null +++ b/experiments/characterization/P800-6/config/P800-6_cat5_5_1-16LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-6 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-6/proc_input/cat5" +output_path: "experiments/characterization/P800-6/proc_output/cat5/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "5_1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-6/config/P800-6_cat5_5_1-26LKFS.yml b/experiments/characterization/P800-6/config/P800-6_cat5_5_1-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..ad7d5f6d9dd407ad3160b3a8e5ec2649e366487c --- /dev/null +++ b/experiments/characterization/P800-6/config/P800-6_cat5_5_1-26LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-6 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-6/proc_input/cat5" +output_path: "experiments/characterization/P800-6/proc_output/cat5/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "5_1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-6/config/P800-6_cat5_5_1-36LKFS.yml b/experiments/characterization/P800-6/config/P800-6_cat5_5_1-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..55ceb57f19813107d6e932e216d77d957840bef1 --- /dev/null +++ b/experiments/characterization/P800-6/config/P800-6_cat5_5_1-36LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-6 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-6/proc_input/cat5" +output_path: "experiments/characterization/P800-6/proc_output/cat5/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "5_1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-6/config/P800-6_cat6_7_1-16LKFS.yml b/experiments/characterization/P800-6/config/P800-6_cat6_7_1-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..9e7115fc075ec45f15075c16ed3eafd75e1080b6 --- /dev/null +++ b/experiments/characterization/P800-6/config/P800-6_cat6_7_1-16LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-6 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-6/proc_input/cat6" +output_path: "experiments/characterization/P800-6/proc_output/cat6/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "7_1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-6/config/P800-6_cat6_7_1-26LKFS.yml b/experiments/characterization/P800-6/config/P800-6_cat6_7_1-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..84443aabaafbe9bce2beac1bbd1bc1c002c13659 --- /dev/null +++ b/experiments/characterization/P800-6/config/P800-6_cat6_7_1-26LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-6 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-6/proc_input/cat6" +output_path: "experiments/characterization/P800-6/proc_output/cat6/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "7_1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-6/config/P800-6_cat6_7_1-36LKFS.yml b/experiments/characterization/P800-6/config/P800-6_cat6_7_1-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..14ea2369d78a02ffaf7a2440c3513bfae766b7cc --- /dev/null +++ b/experiments/characterization/P800-6/config/P800-6_cat6_7_1-36LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-6 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-6/proc_input/cat6" +output_path: "experiments/characterization/P800-6/proc_output/cat6/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "7_1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-6/proc_input/cat1/.gitkeep b/experiments/characterization/P800-6/proc_input/cat1/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-6/proc_input/cat2/.gitkeep b/experiments/characterization/P800-6/proc_input/cat2/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-6/proc_input/cat3/.gitkeep b/experiments/characterization/P800-6/proc_input/cat3/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-6/proc_input/cat4/.gitkeep b/experiments/characterization/P800-6/proc_input/cat4/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-6/proc_input/cat5/.gitkeep b/experiments/characterization/P800-6/proc_input/cat5/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-6/proc_input/cat6/.gitkeep b/experiments/characterization/P800-6/proc_input/cat6/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-6/proc_output/cat1/out_-16LKFS/.gitkeep b/experiments/characterization/P800-6/proc_output/cat1/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-6/proc_output/cat1/out_-26LKFS/.gitkeep b/experiments/characterization/P800-6/proc_output/cat1/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-6/proc_output/cat1/out_-36LKFS/.gitkeep b/experiments/characterization/P800-6/proc_output/cat1/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-6/proc_output/cat2/out_-16LKFS/.gitkeep b/experiments/characterization/P800-6/proc_output/cat2/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-6/proc_output/cat2/out_-26LKFS/.gitkeep b/experiments/characterization/P800-6/proc_output/cat2/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-6/proc_output/cat2/out_-36LKFS/.gitkeep b/experiments/characterization/P800-6/proc_output/cat2/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-6/proc_output/cat3/out_-16LKFS/.gitkeep b/experiments/characterization/P800-6/proc_output/cat3/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-6/proc_output/cat3/out_-26LKFS/.gitkeep b/experiments/characterization/P800-6/proc_output/cat3/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-6/proc_output/cat3/out_-36LKFS/.gitkeep b/experiments/characterization/P800-6/proc_output/cat3/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-6/proc_output/cat4/out_-16LKFS/.gitkeep b/experiments/characterization/P800-6/proc_output/cat4/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-6/proc_output/cat4/out_-26LKFS/.gitkeep b/experiments/characterization/P800-6/proc_output/cat4/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-6/proc_output/cat4/out_-36LKFS/.gitkeep b/experiments/characterization/P800-6/proc_output/cat4/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-6/proc_output/cat5/out_-16LKFS/.gitkeep b/experiments/characterization/P800-6/proc_output/cat5/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-6/proc_output/cat5/out_-26LKFS/.gitkeep b/experiments/characterization/P800-6/proc_output/cat5/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-6/proc_output/cat5/out_-36LKFS/.gitkeep b/experiments/characterization/P800-6/proc_output/cat5/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-6/proc_output/cat6/out_-16LKFS/.gitkeep b/experiments/characterization/P800-6/proc_output/cat6/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-6/proc_output/cat6/out_-26LKFS/.gitkeep b/experiments/characterization/P800-6/proc_output/cat6/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-6/proc_output/cat6/out_-36LKFS/.gitkeep b/experiments/characterization/P800-6/proc_output/cat6/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-7/background_noise/.gitkeep b/experiments/characterization/P800-7/background_noise/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-7/config/P800-7_cat1_5_1_4-16LKFS.yml b/experiments/characterization/P800-7/config/P800-7_cat1_5_1_4-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..411f6f9ef30fe9f91d241e60836aac421e6ac750 --- /dev/null +++ b/experiments/characterization/P800-7/config/P800-7_cat1_5_1_4-16LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-7 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-7/proc_input/cat1" +output_path: "experiments/characterization/P800-7/proc_output/cat1/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "5_1_4" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-7/background_noise/cp07n1.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-7/config/P800-7_cat1_5_1_4-26LKFS.yml b/experiments/characterization/P800-7/config/P800-7_cat1_5_1_4-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..f88c720be5989e6bc6953945a6d2c93773917a23 --- /dev/null +++ b/experiments/characterization/P800-7/config/P800-7_cat1_5_1_4-26LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-7 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-7/proc_input/cat1" +output_path: "experiments/characterization/P800-7/proc_output/cat1/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "5_1_4" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-7/background_noise/cp07n1.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-7/config/P800-7_cat1_5_1_4-36LKFS.yml b/experiments/characterization/P800-7/config/P800-7_cat1_5_1_4-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..bcf31e64ec3d593997dec3618471dc4d269e7e1a --- /dev/null +++ b/experiments/characterization/P800-7/config/P800-7_cat1_5_1_4-36LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-7 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-7/proc_input/cat1" +output_path: "experiments/characterization/P800-7/proc_output/cat1/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "5_1_4" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-7/background_noise/cp07n1.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-7/config/P800-7_cat2_7_1_4-16LKFS.yml b/experiments/characterization/P800-7/config/P800-7_cat2_7_1_4-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..9c479945e8d89fabfc012357d10c5741bd382c70 --- /dev/null +++ b/experiments/characterization/P800-7/config/P800-7_cat2_7_1_4-16LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-7 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-7/proc_input/cat2" +output_path: "experiments/characterization/P800-7/proc_output/cat2/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "7_1_4" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-7/background_noise/cp07n2.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-7/config/P800-7_cat2_7_1_4-26LKFS.yml b/experiments/characterization/P800-7/config/P800-7_cat2_7_1_4-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..ed121e7427812cdb264b1e0adc77963a68e44299 --- /dev/null +++ b/experiments/characterization/P800-7/config/P800-7_cat2_7_1_4-26LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-7 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-7/proc_input/cat2" +output_path: "experiments/characterization/P800-7/proc_output/cat2/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "7_1_4" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-7/background_noise/cp07n2.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-7/config/P800-7_cat2_7_1_4-36LKFS.yml b/experiments/characterization/P800-7/config/P800-7_cat2_7_1_4-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..0b5171adb07a3f4b3a5a121f42e4d7730cfc1449 --- /dev/null +++ b/experiments/characterization/P800-7/config/P800-7_cat2_7_1_4-36LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-7 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-7/proc_input/cat2" +output_path: "experiments/characterization/P800-7/proc_output/cat2/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "7_1_4" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-7/background_noise/cp07n2.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-7/config/P800-7_cat3_5_1_4-16LKFS.yml b/experiments/characterization/P800-7/config/P800-7_cat3_5_1_4-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..7a135c7321eb9c56e0c8e79c53cbb2960eaad373 --- /dev/null +++ b/experiments/characterization/P800-7/config/P800-7_cat3_5_1_4-16LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-7 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-7/proc_input/cat3" +output_path: "experiments/characterization/P800-7/proc_output/cat3/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "5_1_4" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-7/background_noise/cp07n3.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-7/config/P800-7_cat3_5_1_4-26LKFS.yml b/experiments/characterization/P800-7/config/P800-7_cat3_5_1_4-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..b52f66e876fb648ce9da453984c8596711fc241f --- /dev/null +++ b/experiments/characterization/P800-7/config/P800-7_cat3_5_1_4-26LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-7 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-7/proc_input/cat3" +output_path: "experiments/characterization/P800-7/proc_output/cat3/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "5_1_4" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-7/background_noise/cp07n3.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-7/config/P800-7_cat3_5_1_4-36LKFS.yml b/experiments/characterization/P800-7/config/P800-7_cat3_5_1_4-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..867363e23197e8ee4a8a41ce52101ef4708bf64e --- /dev/null +++ b/experiments/characterization/P800-7/config/P800-7_cat3_5_1_4-36LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-7 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-7/proc_input/cat3" +output_path: "experiments/characterization/P800-7/proc_output/cat3/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "5_1_4" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-7/background_noise/cp07n3.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-7/config/P800-7_cat4_7_1_4-16LKFS.yml b/experiments/characterization/P800-7/config/P800-7_cat4_7_1_4-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..b240bb022fbb959a1f0350caf11238b3474f9926 --- /dev/null +++ b/experiments/characterization/P800-7/config/P800-7_cat4_7_1_4-16LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-7 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-7/proc_input/cat4" +output_path: "experiments/characterization/P800-7/proc_output/cat4/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "7_1_4" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-7/background_noise/cp07n4.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-7/config/P800-7_cat4_7_1_4-26LKFS.yml b/experiments/characterization/P800-7/config/P800-7_cat4_7_1_4-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..6ae89a3230498eec4780f0ee89dd438a875e7c88 --- /dev/null +++ b/experiments/characterization/P800-7/config/P800-7_cat4_7_1_4-26LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-7 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-7/proc_input/cat4" +output_path: "experiments/characterization/P800-7/proc_output/cat4/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "7_1_4" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-7/background_noise/cp07n4.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-7/config/P800-7_cat4_7_1_4-36LKFS.yml b/experiments/characterization/P800-7/config/P800-7_cat4_7_1_4-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..5f1c97c88cf5d52ef7ab4944b89877f82e218f07 --- /dev/null +++ b/experiments/characterization/P800-7/config/P800-7_cat4_7_1_4-36LKFS.yml @@ -0,0 +1,330 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-7 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-7/proc_input/cat4" +output_path: "experiments/characterization/P800-7/proc_output/cat4/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "7_1_4" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-7/background_noise/cp07n4.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-7/config/P800-7_cat5_5_1_4-16LKFS.yml b/experiments/characterization/P800-7/config/P800-7_cat5_5_1_4-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..95d2044441a8b28bcccb2dbb44e37c65925de8bf --- /dev/null +++ b/experiments/characterization/P800-7/config/P800-7_cat5_5_1_4-16LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-7 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-7/proc_input/cat5" +output_path: "experiments/characterization/P800-7/proc_output/cat5/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "5_1_4" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-7/config/P800-7_cat5_5_1_4-26LKFS.yml b/experiments/characterization/P800-7/config/P800-7_cat5_5_1_4-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..283cd51eec8df170a766072a01771d07585ae922 --- /dev/null +++ b/experiments/characterization/P800-7/config/P800-7_cat5_5_1_4-26LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-7 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-7/proc_input/cat5" +output_path: "experiments/characterization/P800-7/proc_output/cat5/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "5_1_4" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-7/config/P800-7_cat5_5_1_4-36LKFS.yml b/experiments/characterization/P800-7/config/P800-7_cat5_5_1_4-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..d27d4bfae8e022ebd967aa2bfbd1153f698b9ecb --- /dev/null +++ b/experiments/characterization/P800-7/config/P800-7_cat5_5_1_4-36LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-7 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-7/proc_input/cat5" +output_path: "experiments/characterization/P800-7/proc_output/cat5/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "5_1_4" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-7/config/P800-7_cat6_7_1_4-16LKFS.yml b/experiments/characterization/P800-7/config/P800-7_cat6_7_1_4-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..873b2340df4c13e1e6725733adb472c7a14e654d --- /dev/null +++ b/experiments/characterization/P800-7/config/P800-7_cat6_7_1_4-16LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-7 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-7/proc_input/cat6" +output_path: "experiments/characterization/P800-7/proc_output/cat6/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "7_1_4" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-7/config/P800-7_cat6_7_1_4-26LKFS.yml b/experiments/characterization/P800-7/config/P800-7_cat6_7_1_4-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..96e21db7c05dbf01156fcab8bb87e7092690363b --- /dev/null +++ b/experiments/characterization/P800-7/config/P800-7_cat6_7_1_4-26LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-7 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-7/proc_input/cat6" +output_path: "experiments/characterization/P800-7/proc_output/cat6/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "7_1_4" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-7/config/P800-7_cat6_7_1_4-36LKFS.yml b/experiments/characterization/P800-7/config/P800-7_cat6_7_1_4-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..72b21acceff64362e00a6f812bf01f71a77cb1b7 --- /dev/null +++ b/experiments/characterization/P800-7/config/P800-7_cat6_7_1_4-36LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-7 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-7/proc_input/cat6" +output_path: "experiments/characterization/P800-7/proc_output/cat6/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "7_1_4" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-7/proc_input/cat1/.gitkeep b/experiments/characterization/P800-7/proc_input/cat1/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-7/proc_input/cat2/.gitkeep b/experiments/characterization/P800-7/proc_input/cat2/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-7/proc_input/cat3/.gitkeep b/experiments/characterization/P800-7/proc_input/cat3/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-7/proc_input/cat4/.gitkeep b/experiments/characterization/P800-7/proc_input/cat4/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-7/proc_input/cat5/.gitkeep b/experiments/characterization/P800-7/proc_input/cat5/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-7/proc_input/cat6/.gitkeep b/experiments/characterization/P800-7/proc_input/cat6/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-7/proc_output/cat1/out_-16LKFS/.gitkeep b/experiments/characterization/P800-7/proc_output/cat1/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-7/proc_output/cat1/out_-26LKFS/.gitkeep b/experiments/characterization/P800-7/proc_output/cat1/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-7/proc_output/cat1/out_-36LKFS/.gitkeep b/experiments/characterization/P800-7/proc_output/cat1/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-7/proc_output/cat2/out_-16LKFS/.gitkeep b/experiments/characterization/P800-7/proc_output/cat2/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-7/proc_output/cat2/out_-26LKFS/.gitkeep b/experiments/characterization/P800-7/proc_output/cat2/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-7/proc_output/cat2/out_-36LKFS/.gitkeep b/experiments/characterization/P800-7/proc_output/cat2/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-7/proc_output/cat3/out_-16LKFS/.gitkeep b/experiments/characterization/P800-7/proc_output/cat3/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-7/proc_output/cat3/out_-26LKFS/.gitkeep b/experiments/characterization/P800-7/proc_output/cat3/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-7/proc_output/cat3/out_-36LKFS/.gitkeep b/experiments/characterization/P800-7/proc_output/cat3/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-7/proc_output/cat4/out_-16LKFS/.gitkeep b/experiments/characterization/P800-7/proc_output/cat4/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-7/proc_output/cat4/out_-26LKFS/.gitkeep b/experiments/characterization/P800-7/proc_output/cat4/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-7/proc_output/cat4/out_-36LKFS/.gitkeep b/experiments/characterization/P800-7/proc_output/cat4/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-7/proc_output/cat5/out_-16LKFS/.gitkeep b/experiments/characterization/P800-7/proc_output/cat5/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-7/proc_output/cat5/out_-26LKFS/.gitkeep b/experiments/characterization/P800-7/proc_output/cat5/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-7/proc_output/cat5/out_-36LKFS/.gitkeep b/experiments/characterization/P800-7/proc_output/cat5/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-7/proc_output/cat6/out_-16LKFS/.gitkeep b/experiments/characterization/P800-7/proc_output/cat6/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-7/proc_output/cat6/out_-26LKFS/.gitkeep b/experiments/characterization/P800-7/proc_output/cat6/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-7/proc_output/cat6/out_-36LKFS/.gitkeep b/experiments/characterization/P800-7/proc_output/cat6/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-8/background_noise/.gitkeep b/experiments/characterization/P800-8/background_noise/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-8/config/P800-8_cat1_5_1-16LKFS.yml b/experiments/characterization/P800-8/config/P800-8_cat1_5_1-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..5e2642bf84322073e20051cdd9130cc0038c824d --- /dev/null +++ b/experiments/characterization/P800-8/config/P800-8_cat1_5_1-16LKFS.yml @@ -0,0 +1,411 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-8 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-8/proc_input/cat1" +output_path: "experiments/characterization/P800-8/proc_output/cat1/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "5_1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-8/background_noise/fp08n1.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-8/config/P800-8_cat1_5_1-26LKFS.yml b/experiments/characterization/P800-8/config/P800-8_cat1_5_1-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..d162a86d5ccb19cec3be0516f08346f54ea0fefe --- /dev/null +++ b/experiments/characterization/P800-8/config/P800-8_cat1_5_1-26LKFS.yml @@ -0,0 +1,411 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-8 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-8/proc_input/cat1" +output_path: "experiments/characterization/P800-8/proc_output/cat1/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "5_1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-8/background_noise/fp08n1.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-8/config/P800-8_cat1_5_1-36LKFS.yml b/experiments/characterization/P800-8/config/P800-8_cat1_5_1-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..cba1a9769c87508263f3fdd44681d84c4d31a7c1 --- /dev/null +++ b/experiments/characterization/P800-8/config/P800-8_cat1_5_1-36LKFS.yml @@ -0,0 +1,411 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-8 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-8/proc_input/cat1" +output_path: "experiments/characterization/P800-8/proc_output/cat1/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "5_1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-8/background_noise/fp08n1.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-8/config/P800-8_cat2_7_1-16LKFS.yml b/experiments/characterization/P800-8/config/P800-8_cat2_7_1-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..d91d4bc00a4d40f243464e810b42f442c35d5bf0 --- /dev/null +++ b/experiments/characterization/P800-8/config/P800-8_cat2_7_1-16LKFS.yml @@ -0,0 +1,411 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-8 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-8/proc_input/cat2" +output_path: "experiments/characterization/P800-8/proc_output/cat2/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "7_1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-8/background_noise/fp08n2.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-8/config/P800-8_cat2_7_1-26LKFS.yml b/experiments/characterization/P800-8/config/P800-8_cat2_7_1-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..567d9c08e2fab0cc053b287718c43787adfde74d --- /dev/null +++ b/experiments/characterization/P800-8/config/P800-8_cat2_7_1-26LKFS.yml @@ -0,0 +1,411 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-8 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-8/proc_input/cat2" +output_path: "experiments/characterization/P800-8/proc_output/cat2/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "7_1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-8/background_noise/fp08n2.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-8/config/P800-8_cat2_7_1-36LKFS.yml b/experiments/characterization/P800-8/config/P800-8_cat2_7_1-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..8a3ae937292c9be3e812294b9c5963f87649fc14 --- /dev/null +++ b/experiments/characterization/P800-8/config/P800-8_cat2_7_1-36LKFS.yml @@ -0,0 +1,411 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-8 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-8/proc_input/cat2" +output_path: "experiments/characterization/P800-8/proc_output/cat2/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "7_1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-8/background_noise/fp08n2.wav + snr: 45 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-8/config/P800-8_cat3_5_1_4-16LKFS.yml b/experiments/characterization/P800-8/config/P800-8_cat3_5_1_4-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..73d256e9841af4ee03b31222bdc9c086103a67d8 --- /dev/null +++ b/experiments/characterization/P800-8/config/P800-8_cat3_5_1_4-16LKFS.yml @@ -0,0 +1,411 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-8 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-8/proc_input/cat3" +output_path: "experiments/characterization/P800-8/proc_output/cat3/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "5_1_4" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-8/background_noise/fp08n3.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-8/config/P800-8_cat3_5_1_4-26LKFS.yml b/experiments/characterization/P800-8/config/P800-8_cat3_5_1_4-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..3c471aec11f94556e4e780f8c89b91250e6b4268 --- /dev/null +++ b/experiments/characterization/P800-8/config/P800-8_cat3_5_1_4-26LKFS.yml @@ -0,0 +1,411 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-8 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-8/proc_input/cat3" +output_path: "experiments/characterization/P800-8/proc_output/cat3/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "5_1_4" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-8/background_noise/fp08n3.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-8/config/P800-8_cat3_5_1_4-36LKFS.yml b/experiments/characterization/P800-8/config/P800-8_cat3_5_1_4-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..d7abdc1877eccfcc8553b70ed7cd4be992733f3b --- /dev/null +++ b/experiments/characterization/P800-8/config/P800-8_cat3_5_1_4-36LKFS.yml @@ -0,0 +1,411 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-8 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-8/proc_input/cat3" +output_path: "experiments/characterization/P800-8/proc_output/cat3/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "5_1_4" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-8/background_noise/fp08n3.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-8/config/P800-8_cat4_7_1_4-16LKFS.yml b/experiments/characterization/P800-8/config/P800-8_cat4_7_1_4-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..42d00fbcb01bf81cf85a07e2a88e58e0c1965511 --- /dev/null +++ b/experiments/characterization/P800-8/config/P800-8_cat4_7_1_4-16LKFS.yml @@ -0,0 +1,411 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-8 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-8/proc_input/cat4" +output_path: "experiments/characterization/P800-8/proc_output/cat4/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "7_1_4" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-8/background_noise/fp08n4.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-8/config/P800-8_cat4_7_1_4-26LKFS.yml b/experiments/characterization/P800-8/config/P800-8_cat4_7_1_4-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..8da7af5470e5964ec319311eb769540ce7cd63d7 --- /dev/null +++ b/experiments/characterization/P800-8/config/P800-8_cat4_7_1_4-26LKFS.yml @@ -0,0 +1,411 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-8 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-8/proc_input/cat4" +output_path: "experiments/characterization/P800-8/proc_output/cat4/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "7_1_4" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-8/background_noise/fp08n4.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-8/config/P800-8_cat4_7_1_4-36LKFS.yml b/experiments/characterization/P800-8/config/P800-8_cat4_7_1_4-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..8fb64043a9710c82f73d360cd9256317d532c9fe --- /dev/null +++ b/experiments/characterization/P800-8/config/P800-8_cat4_7_1_4-36LKFS.yml @@ -0,0 +1,411 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-8 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-8/proc_input/cat4" +output_path: "experiments/characterization/P800-8/proc_output/cat4/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "7_1_4" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + background_noise: + background_noise_path: experiments/characterization/P800-8/background_noise/fp08n4.wav + snr: 15 + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-8/config/P800-8_cat5_5_1-16LKFS.yml b/experiments/characterization/P800-8/config/P800-8_cat5_5_1-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..12a509c1cfb1529782431899460cface30a7d679 --- /dev/null +++ b/experiments/characterization/P800-8/config/P800-8_cat5_5_1-16LKFS.yml @@ -0,0 +1,408 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-8 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-8/proc_input/cat5" +output_path: "experiments/characterization/P800-8/proc_output/cat5/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "5_1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-8/config/P800-8_cat5_5_1-26LKFS.yml b/experiments/characterization/P800-8/config/P800-8_cat5_5_1-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..6c3419e47bdd6d8017df50eb22eba695d42ea4a5 --- /dev/null +++ b/experiments/characterization/P800-8/config/P800-8_cat5_5_1-26LKFS.yml @@ -0,0 +1,408 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-8 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-8/proc_input/cat5" +output_path: "experiments/characterization/P800-8/proc_output/cat5/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "5_1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-8/config/P800-8_cat5_5_1-36LKFS.yml b/experiments/characterization/P800-8/config/P800-8_cat5_5_1-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..c365d7e050d36eb917afd7630177c873f2f933fb --- /dev/null +++ b/experiments/characterization/P800-8/config/P800-8_cat5_5_1-36LKFS.yml @@ -0,0 +1,408 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-8 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-8/proc_input/cat5" +output_path: "experiments/characterization/P800-8/proc_output/cat5/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "5_1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-8/config/P800-8_cat6_7_1_4-16LKFS.yml b/experiments/characterization/P800-8/config/P800-8_cat6_7_1_4-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..9301d3d66c0ee991db3c73fc31d4fdd16b603c3b --- /dev/null +++ b/experiments/characterization/P800-8/config/P800-8_cat6_7_1_4-16LKFS.yml @@ -0,0 +1,408 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-8 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-8/proc_input/cat6" +output_path: "experiments/characterization/P800-8/proc_output/cat6/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "7_1_4" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-8/config/P800-8_cat6_7_1_4-26LKFS.yml b/experiments/characterization/P800-8/config/P800-8_cat6_7_1_4-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..89b1163f9dd98258300c2c1b352669b4971e96ef --- /dev/null +++ b/experiments/characterization/P800-8/config/P800-8_cat6_7_1_4-26LKFS.yml @@ -0,0 +1,408 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-8 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-8/proc_input/cat6" +output_path: "experiments/characterization/P800-8/proc_output/cat6/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "7_1_4" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-8/config/P800-8_cat6_7_1_4-36LKFS.yml b/experiments/characterization/P800-8/config/P800-8_cat6_7_1_4-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..58dfeab8b9f9c320b39a9801f4ac24cb5236066a --- /dev/null +++ b/experiments/characterization/P800-8/config/P800-8_cat6_7_1_4-36LKFS.yml @@ -0,0 +1,408 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-8 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-8/proc_input/cat6" +output_path: "experiments/characterization/P800-8/proc_output/cat6/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "7_1_4" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 32 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 27 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 22 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 17 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.8 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.6 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.4 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.2 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c11: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c12: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c13: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c14: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c15: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c16: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c17: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c18: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c20: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c24: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c25: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c26: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + c27: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + tx: + type: FER + error_rate: 5 + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c29: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c30: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c31: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c32: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c33: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c34: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c35: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c36: + type: ivas + bitrates: + - 384000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-8/proc_input/cat1/.gitkeep b/experiments/characterization/P800-8/proc_input/cat1/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-8/proc_input/cat2/.gitkeep b/experiments/characterization/P800-8/proc_input/cat2/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-8/proc_input/cat3/.gitkeep b/experiments/characterization/P800-8/proc_input/cat3/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-8/proc_input/cat4/.gitkeep b/experiments/characterization/P800-8/proc_input/cat4/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-8/proc_input/cat5/.gitkeep b/experiments/characterization/P800-8/proc_input/cat5/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-8/proc_input/cat6/.gitkeep b/experiments/characterization/P800-8/proc_input/cat6/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-8/proc_output/cat1/out_-16LKFS/.gitkeep b/experiments/characterization/P800-8/proc_output/cat1/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-8/proc_output/cat1/out_-26LKFS/.gitkeep b/experiments/characterization/P800-8/proc_output/cat1/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-8/proc_output/cat1/out_-36LKFS/.gitkeep b/experiments/characterization/P800-8/proc_output/cat1/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-8/proc_output/cat2/out_-16LKFS/.gitkeep b/experiments/characterization/P800-8/proc_output/cat2/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-8/proc_output/cat2/out_-26LKFS/.gitkeep b/experiments/characterization/P800-8/proc_output/cat2/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-8/proc_output/cat2/out_-36LKFS/.gitkeep b/experiments/characterization/P800-8/proc_output/cat2/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-8/proc_output/cat3/out_-16LKFS/.gitkeep b/experiments/characterization/P800-8/proc_output/cat3/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-8/proc_output/cat3/out_-26LKFS/.gitkeep b/experiments/characterization/P800-8/proc_output/cat3/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-8/proc_output/cat3/out_-36LKFS/.gitkeep b/experiments/characterization/P800-8/proc_output/cat3/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-8/proc_output/cat4/out_-16LKFS/.gitkeep b/experiments/characterization/P800-8/proc_output/cat4/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-8/proc_output/cat4/out_-26LKFS/.gitkeep b/experiments/characterization/P800-8/proc_output/cat4/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-8/proc_output/cat4/out_-36LKFS/.gitkeep b/experiments/characterization/P800-8/proc_output/cat4/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-9/config/P800-9_cat1_ISM1-16LKFS.yml b/experiments/characterization/P800-9/config/P800-9_cat1_ISM1-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..9bb8af134abe521dc887452591fdfdf5280cb209 --- /dev/null +++ b/experiments/characterization/P800-9/config/P800-9_cat1_ISM1-16LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-9 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-9/proc_input/cat1" +output_path: "experiments/characterization/P800-9/proc_output/cat1/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-9/config/P800-9_cat1_ISM1-26LKFS.yml b/experiments/characterization/P800-9/config/P800-9_cat1_ISM1-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..3462811a62bb63bb48a6076b68729e7169d83106 --- /dev/null +++ b/experiments/characterization/P800-9/config/P800-9_cat1_ISM1-26LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-9 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-9/proc_input/cat1" +output_path: "experiments/characterization/P800-9/proc_output/cat1/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-9/config/P800-9_cat1_ISM1-36LKFS.yml b/experiments/characterization/P800-9/config/P800-9_cat1_ISM1-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..ab2e3d90238301d665bc2e467b8c5cb66f8a0ebc --- /dev/null +++ b/experiments/characterization/P800-9/config/P800-9_cat1_ISM1-36LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-9 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-9/proc_input/cat1" +output_path: "experiments/characterization/P800-9/proc_output/cat1/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-9/config/P800-9_cat2_ISM1-16LKFS.yml b/experiments/characterization/P800-9/config/P800-9_cat2_ISM1-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..dccf844b35808ea47f599c81b7c153209a2d5d4b --- /dev/null +++ b/experiments/characterization/P800-9/config/P800-9_cat2_ISM1-16LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-9 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-9/proc_input/cat2" +output_path: "experiments/characterization/P800-9/proc_output/cat2/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-9/config/P800-9_cat2_ISM1-26LKFS.yml b/experiments/characterization/P800-9/config/P800-9_cat2_ISM1-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..826b098b032e12c9247057fa0c515b01a26f1acf --- /dev/null +++ b/experiments/characterization/P800-9/config/P800-9_cat2_ISM1-26LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-9 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-9/proc_input/cat2" +output_path: "experiments/characterization/P800-9/proc_output/cat2/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-9/config/P800-9_cat2_ISM1-36LKFS.yml b/experiments/characterization/P800-9/config/P800-9_cat2_ISM1-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..667baafe05d1cc555d6681d17fd68ebaf7e3f645 --- /dev/null +++ b/experiments/characterization/P800-9/config/P800-9_cat2_ISM1-36LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-9 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-9/proc_input/cat2" +output_path: "experiments/characterization/P800-9/proc_output/cat2/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-9/config/P800-9_cat3_ISM2-16LKFS.yml b/experiments/characterization/P800-9/config/P800-9_cat3_ISM2-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..70150da2666c738733aa2c00fd418d66788d8a15 --- /dev/null +++ b/experiments/characterization/P800-9/config/P800-9_cat3_ISM2-16LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-9 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-9/proc_input/cat3" +output_path: "experiments/characterization/P800-9/proc_output/cat3/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-9/config/P800-9_cat3_ISM2-26LKFS.yml b/experiments/characterization/P800-9/config/P800-9_cat3_ISM2-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..ec1a7db3b5e895b873283b90cb4725dde7f94660 --- /dev/null +++ b/experiments/characterization/P800-9/config/P800-9_cat3_ISM2-26LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-9 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-9/proc_input/cat3" +output_path: "experiments/characterization/P800-9/proc_output/cat3/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-9/config/P800-9_cat3_ISM2-36LKFS.yml b/experiments/characterization/P800-9/config/P800-9_cat3_ISM2-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..572a55003bd5c7146282166a92e45b9efa5302c8 --- /dev/null +++ b/experiments/characterization/P800-9/config/P800-9_cat3_ISM2-36LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-9 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-9/proc_input/cat3" +output_path: "experiments/characterization/P800-9/proc_output/cat3/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-9/config/P800-9_cat4_ISM2-16LKFS.yml b/experiments/characterization/P800-9/config/P800-9_cat4_ISM2-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..64b8030844c58f00772e607d572402c75ded7722 --- /dev/null +++ b/experiments/characterization/P800-9/config/P800-9_cat4_ISM2-16LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-9 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-9/proc_input/cat4" +output_path: "experiments/characterization/P800-9/proc_output/cat4/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-9/config/P800-9_cat4_ISM2-26LKFS.yml b/experiments/characterization/P800-9/config/P800-9_cat4_ISM2-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..3ad83475afe6f15e1fd996745066effc2c599267 --- /dev/null +++ b/experiments/characterization/P800-9/config/P800-9_cat4_ISM2-26LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-9 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-9/proc_input/cat4" +output_path: "experiments/characterization/P800-9/proc_output/cat4/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-9/config/P800-9_cat4_ISM2-36LKFS.yml b/experiments/characterization/P800-9/config/P800-9_cat4_ISM2-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..e1748cb01f7651dc49c2827c51c4d8d28cc6c17f --- /dev/null +++ b/experiments/characterization/P800-9/config/P800-9_cat4_ISM2-36LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-9 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-9/proc_input/cat4" +output_path: "experiments/characterization/P800-9/proc_output/cat4/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-9/config/P800-9_cat5_ISM1-16LKFS.yml b/experiments/characterization/P800-9/config/P800-9_cat5_ISM1-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..b7b29fdafca2b6d09293e213c98999a25ebc36e6 --- /dev/null +++ b/experiments/characterization/P800-9/config/P800-9_cat5_ISM1-16LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-9 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-9/proc_input/cat5" +output_path: "experiments/characterization/P800-9/proc_output/cat5/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-9/config/P800-9_cat5_ISM1-26LKFS.yml b/experiments/characterization/P800-9/config/P800-9_cat5_ISM1-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..70c3a5cc52b65d323398b2d24714673301d8b9a7 --- /dev/null +++ b/experiments/characterization/P800-9/config/P800-9_cat5_ISM1-26LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-9 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-9/proc_input/cat5" +output_path: "experiments/characterization/P800-9/proc_output/cat5/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-9/config/P800-9_cat5_ISM1-36LKFS.yml b/experiments/characterization/P800-9/config/P800-9_cat5_ISM1-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..638ff3e4f07cadca9666076c64c28964bc043205 --- /dev/null +++ b/experiments/characterization/P800-9/config/P800-9_cat5_ISM1-36LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-9 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-9/proc_input/cat5" +output_path: "experiments/characterization/P800-9/proc_output/cat5/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM1" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-9/config/P800-9_cat6_ISM2-16LKFS.yml b/experiments/characterization/P800-9/config/P800-9_cat6_ISM2-16LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..d3bf06e5650220732faf97e89d8e17f38cab0c84 --- /dev/null +++ b/experiments/characterization/P800-9/config/P800-9_cat6_ISM2-16LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-9 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-9/proc_input/cat6" +output_path: "experiments/characterization/P800-9/proc_output/cat6/out_-16LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -16 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-9/config/P800-9_cat6_ISM2-26LKFS.yml b/experiments/characterization/P800-9/config/P800-9_cat6_ISM2-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..4bdffeb30aaa00c8e7e4bc2b256608bf2f2676c6 --- /dev/null +++ b/experiments/characterization/P800-9/config/P800-9_cat6_ISM2-26LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-9 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-9/proc_input/cat6" +output_path: "experiments/characterization/P800-9/proc_output/cat6/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-9/config/P800-9_cat6_ISM2-36LKFS.yml b/experiments/characterization/P800-9/config/P800-9_cat6_ISM2-36LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..78e51aa79c637cb929478787fce82b79c94130d0 --- /dev/null +++ b/experiments/characterization/P800-9/config/P800-9_cat6_ISM2-36LKFS.yml @@ -0,0 +1,327 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800-9 +master_seed: 47192 +prerun_seed: 2 + +input_path: "experiments/characterization/P800-9/proc_input/cat6" +output_path: "experiments/characterization/P800-9/proc_output/cat6/out_-36LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2" + fs: 48000 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -36 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Anchor conditions ### + c01: + type: ref + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + ### MNRU conditions ### + c02: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 36 + c03: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 30 + c04: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 24 + c05: + type: mnru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + q: 18 + ### ESDRU conditions ### + c06: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.7 + c07: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.5 + c08: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.3 + c09: + type: esdru + ivas_rend: + fmt: BINAURAL + bin: ivas_processing_scripts/bin/IVAS_rend + alpha: 0.1 + ### IVAS FX/FL mix conditions ### + c10: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c11: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c12: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c13: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c14: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c15: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c16: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c17: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c18: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FL conditions ### + c19: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c20: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c21: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c22: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c23: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c24: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c25: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c26: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + c27: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_flt_ref + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_flt_ref + ### IVAS FX conditions ### + c28: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800-9/proc_input/cat1/.gitkeep b/experiments/characterization/P800-9/proc_input/cat1/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-9/proc_input/cat2/.gitkeep b/experiments/characterization/P800-9/proc_input/cat2/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-9/proc_input/cat3/.gitkeep b/experiments/characterization/P800-9/proc_input/cat3/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-9/proc_input/cat4/.gitkeep b/experiments/characterization/P800-9/proc_input/cat4/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-9/proc_input/cat5/.gitkeep b/experiments/characterization/P800-9/proc_input/cat5/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-9/proc_input/cat6/.gitkeep b/experiments/characterization/P800-9/proc_input/cat6/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-9/proc_output/cat1/out_-16LKFS/.gitkeep b/experiments/characterization/P800-9/proc_output/cat1/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-9/proc_output/cat1/out_-26LKFS/.gitkeep b/experiments/characterization/P800-9/proc_output/cat1/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-9/proc_output/cat1/out_-36LKFS/.gitkeep b/experiments/characterization/P800-9/proc_output/cat1/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-9/proc_output/cat2/out_-16LKFS/.gitkeep b/experiments/characterization/P800-9/proc_output/cat2/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-9/proc_output/cat2/out_-26LKFS/.gitkeep b/experiments/characterization/P800-9/proc_output/cat2/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-9/proc_output/cat2/out_-36LKFS/.gitkeep b/experiments/characterization/P800-9/proc_output/cat2/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-9/proc_output/cat3/out_-16LKFS/.gitkeep b/experiments/characterization/P800-9/proc_output/cat3/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-9/proc_output/cat3/out_-26LKFS/.gitkeep b/experiments/characterization/P800-9/proc_output/cat3/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-9/proc_output/cat3/out_-36LKFS/.gitkeep b/experiments/characterization/P800-9/proc_output/cat3/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-9/proc_output/cat4/out_-16LKFS/.gitkeep b/experiments/characterization/P800-9/proc_output/cat4/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-9/proc_output/cat4/out_-26LKFS/.gitkeep b/experiments/characterization/P800-9/proc_output/cat4/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-9/proc_output/cat4/out_-36LKFS/.gitkeep b/experiments/characterization/P800-9/proc_output/cat4/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-9/proc_output/cat5/out_-16LKFS/.gitkeep b/experiments/characterization/P800-9/proc_output/cat5/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-9/proc_output/cat5/out_-26LKFS/.gitkeep b/experiments/characterization/P800-9/proc_output/cat5/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-9/proc_output/cat5/out_-36LKFS/.gitkeep b/experiments/characterization/P800-9/proc_output/cat5/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-9/proc_output/cat6/out_-16LKFS/.gitkeep b/experiments/characterization/P800-9/proc_output/cat6/out_-16LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-9/proc_output/cat6/out_-26LKFS/.gitkeep b/experiments/characterization/P800-9/proc_output/cat6/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800-9/proc_output/cat6/out_-36LKFS/.gitkeep b/experiments/characterization/P800-9/proc_output/cat6/out_-36LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800_ACR-1/background_noise/.gitkeep b/experiments/characterization/P800_ACR-1/background_noise/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800_ACR-1/config/P800_ACR-1_cat1_STEREO-26LKFS.yml b/experiments/characterization/P800_ACR-1/config/P800_ACR-1_cat1_STEREO-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..ea306faf8f53578f21e8c06b8726f12ffce61ed2 --- /dev/null +++ b/experiments/characterization/P800_ACR-1/config/P800_ACR-1_cat1_STEREO-26LKFS.yml @@ -0,0 +1,674 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800_ACR-1 +master_seed: 25 +prerun_seed: 2 + +input_path: "experiments/characterization/P800_ACR-1/proc_input/cat1" +output_path: "experiments/characterization/P800_ACR-1/proc_output/cat1/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "STEREO" + fs: 48000 + aligned_to: + len: 20 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Low-pass anchor conditions ### + c01: + type: ref + c02: + type: ref + out_fc: 16000 + c03: + type: ref + out_fc: 14000 + c04: + type: ref + out_fc: 12000 + c05: + type: ref + out_fc: 10000 + c06: + type: ref + out_fc: 8000 + c07: + type: ref + out_fc: 6000 + c08: + type: ref + out_fc: 4000 + ### MNRU conditions ### + c09: + type: mnru + q: 30 + c10: + type: mnru + q: 26 + c11: + type: mnru + q: 22 + c12: + type: mnru + q: 18 + ### ESDRU conditions ### + c13: + type: esdru + alpha: 0.8 + c14: + type: esdru + alpha: 0.6 + c15: + type: esdru + alpha: 0.4 + c16: + type: esdru + alpha: 0.2 + ### IVAS WB conditions ### + c17: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + opts: + - -max_band + - WB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c18: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + opts: + - -max_band + - WB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + opts: + - -max_band + - WB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + opts: + - -max_band + - WB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + opts: + - -max_band + - WB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + opts: + - -max_band + - WB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + opts: + - -max_band + - WB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + opts: + - -max_band + - WB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS SWB conditions ### + c25: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c26: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c27: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c37: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c38: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c39: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c40: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c41: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c42: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx +################# +## DTX conditions +################# + c43: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + opts: + - -dtx + - -max_band + - WB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c44: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + opts: + - -dtx + - -max_band + - WB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c45: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c46: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c47: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c48: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx +################# +## FER conditions +################# + c49: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + opts: + - -max_band + - WB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c50: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + opts: + - -max_band + - WB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c51: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c52: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + opts: + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c53: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c54: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 +########################## +## DTX with FER conditions +########################## + c55: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + opts: + - -dtx + - -max_band + - WB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c56: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + opts: + - -dtx + - -max_band + - WB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c57: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c58: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + opts: + - -dtx + - -max_band + - SWB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c59: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c60: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "STEREO" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800_ACR-1/config/P800_ACR-1_cat2_FOA-26LKFS.yml b/experiments/characterization/P800_ACR-1/config/P800_ACR-1_cat2_FOA-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..f5a625ef431e52755d3a5c07fac7ca470035132e --- /dev/null +++ b/experiments/characterization/P800_ACR-1/config/P800_ACR-1_cat2_FOA-26LKFS.yml @@ -0,0 +1,605 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800_ACR-1 +master_seed: 25 +prerun_seed: 2 + +input_path: "experiments/characterization/P800_ACR-1/proc_input/cat2" +output_path: "experiments/characterization/P800_ACR-1/proc_output/cat2/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "FOA" + fs: 48000 + aligned_to: + len: 20 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Low-pass anchor conditions ### + c01: + type: ref + c02: + type: ref + out_fc: 16000 + c03: + type: ref + out_fc: 14000 + c04: + type: ref + out_fc: 12000 + c05: + type: ref + out_fc: 10000 + c06: + type: ref + out_fc: 8000 + c07: + type: ref + out_fc: 6000 + c08: + type: ref + out_fc: 4000 + ### MNRU conditions ### + c09: + type: mnru + q: 30 + c10: + type: mnru + q: 26 + c11: + type: mnru + q: 22 + c12: + type: mnru + q: 18 + ### ESDRU conditions ### + c13: + type: esdru + alpha: 0.8 + c14: + type: esdru + alpha: 0.6 + c15: + type: esdru + alpha: 0.4 + c16: + type: esdru + alpha: 0.2 + ### IVAS WB conditions ### + c17: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c18: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS SWB conditions ### + c25: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c26: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c27: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c33: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c37: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c38: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c39: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c40: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c41: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c42: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx +################# +## DTX conditions +################# + c43: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c44: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c45: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c46: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c47: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c48: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx +################# +## FER conditions +################# + c49: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c50: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c51: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c52: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c53: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c54: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 +########################## +## DTX with FER conditions +########################## + c55: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c56: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c57: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c58: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c59: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c60: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800_ACR-1/config/P800_ACR-1_cat3_HOA3-26LKFS.yml b/experiments/characterization/P800_ACR-1/config/P800_ACR-1_cat3_HOA3-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..cd99f85829d1ba9bc6fcc4f2721ee5287bb01780 --- /dev/null +++ b/experiments/characterization/P800_ACR-1/config/P800_ACR-1_cat3_HOA3-26LKFS.yml @@ -0,0 +1,606 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800_ACR-1 +master_seed: 25 +prerun_seed: 2 + +input_path: "experiments/characterization/P800_ACR-1/proc_input/cat3" +output_path: "experiments/characterization/P800_ACR-1/proc_output/cat3/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "HOA3" + fs: 48000 + aligned_to: + len: 20 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Low-pass anchor conditions ### + c01: + type: ref + c02: + type: ref + out_fc: 16000 + c03: + type: ref + out_fc: 14000 + c04: + type: ref + out_fc: 12000 + c05: + type: ref + out_fc: 10000 + c06: + type: ref + out_fc: 8000 + c07: + type: ref + out_fc: 6000 + c08: + type: ref + out_fc: 4000 + ### MNRU conditions ### + c09: + type: mnru + q: 30 + c10: + type: mnru + q: 26 + c11: + type: mnru + q: 22 + c12: + type: mnru + q: 18 + ### ESDRU conditions ### + c13: + type: esdru + alpha: 0.8 + c14: + type: esdru + alpha: 0.6 + c15: + type: esdru + alpha: 0.4 + c16: + type: esdru + alpha: 0.2 + ### IVAS WB conditions ### + c17: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c18: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS SWB conditions ### + c25: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c26: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c27: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FB conditions ### + c33: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c37: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c38: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c39: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c40: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c41: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c42: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx +################# +## DTX conditions +################# + c43: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c44: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c45: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c46: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c47: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c48: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx +################# +## FER conditions +################# + c49: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c50: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c51: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c52: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c53: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c54: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 +########################## +## DTX with FER conditions +########################## + c55: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c56: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c57: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c58: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c59: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c60: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800_ACR-1/config/P800_ACR-1_cat4_MASA1-26LKFS.yml b/experiments/characterization/P800_ACR-1/config/P800_ACR-1_cat4_MASA1-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..79311e85667394193d24c6a9f89e8d40ddfa8186 --- /dev/null +++ b/experiments/characterization/P800_ACR-1/config/P800_ACR-1_cat4_MASA1-26LKFS.yml @@ -0,0 +1,606 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800_ACR-1 +master_seed: 25 +prerun_seed: 2 + +input_path: "experiments/characterization/P800_ACR-1/proc_input/cat4" +output_path: "experiments/characterization/P800_ACR-1/proc_output/cat4/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "MASA1DIR2" + fs: 48000 + aligned_to: + len: 20 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Low-pass anchor conditions ### + c01: + type: ref + c02: + type: ref + out_fc: 16000 + c03: + type: ref + out_fc: 14000 + c04: + type: ref + out_fc: 12000 + c05: + type: ref + out_fc: 10000 + c06: + type: ref + out_fc: 8000 + c07: + type: ref + out_fc: 6000 + c08: + type: ref + out_fc: 4000 + ### MNRU conditions ### + c09: + type: mnru + q: 30 + c10: + type: mnru + q: 26 + c11: + type: mnru + q: 22 + c12: + type: mnru + q: 18 + ### ESDRU conditions ### + c13: + type: esdru + alpha: 0.8 + c14: + type: esdru + alpha: 0.6 + c15: + type: esdru + alpha: 0.4 + c16: + type: esdru + alpha: 0.2 + ### IVAS WB conditions ### + c17: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c18: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS SWB conditions ### + c25: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c26: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c27: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FB conditions ### + c33: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c37: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c38: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c39: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c40: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c41: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c42: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx +################# +## DTX conditions +################# + c43: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c44: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c45: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c46: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c47: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c48: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx +################# +## FER conditions +################# + c49: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c50: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c51: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c52: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c53: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c54: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 +########################## +## DTX with FER conditions +########################## + c55: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c56: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c57: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c58: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c59: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c60: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800_ACR-1/config/P800_ACR-1_cat5_MASA2-26LKFS.yml b/experiments/characterization/P800_ACR-1/config/P800_ACR-1_cat5_MASA2-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..8e2f5c594aa7da602e3782efdc1354b3583a7441 --- /dev/null +++ b/experiments/characterization/P800_ACR-1/config/P800_ACR-1_cat5_MASA2-26LKFS.yml @@ -0,0 +1,606 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800_ACR-1 +master_seed: 25 +prerun_seed: 2 + +input_path: "experiments/characterization/P800_ACR-1/proc_input/cat5" +output_path: "experiments/characterization/P800_ACR-1/proc_output/cat5/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "MASA2DIR2" + fs: 48000 + aligned_to: + len: 20 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Low-pass anchor conditions ### + c01: + type: ref + c02: + type: ref + out_fc: 16000 + c03: + type: ref + out_fc: 14000 + c04: + type: ref + out_fc: 12000 + c05: + type: ref + out_fc: 10000 + c06: + type: ref + out_fc: 8000 + c07: + type: ref + out_fc: 6000 + c08: + type: ref + out_fc: 4000 + ### MNRU conditions ### + c09: + type: mnru + q: 30 + c10: + type: mnru + q: 26 + c11: + type: mnru + q: 22 + c12: + type: mnru + q: 18 + ### ESDRU conditions ### + c13: + type: esdru + alpha: 0.8 + c14: + type: esdru + alpha: 0.6 + c15: + type: esdru + alpha: 0.4 + c16: + type: esdru + alpha: 0.2 + ### IVAS WB conditions ### + c17: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c18: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS SWB conditions ### + c25: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c26: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c27: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FB conditions ### + c33: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c37: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c38: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c39: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c40: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c41: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c42: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx +################# +## DTX conditions +################# + c43: + type: ivas + bitrates: + - 13200 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c44: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c45: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c46: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c47: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c48: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx +################# +## FER conditions +################# + c49: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c50: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c51: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c52: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c53: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c54: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 +########################## +## DTX with FER conditions +########################## + c55: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c56: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c57: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c58: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c59: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c60: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800_ACR-1/config/P800_ACR-1_cat6_ISM2-26LKFS.yml b/experiments/characterization/P800_ACR-1/config/P800_ACR-1_cat6_ISM2-26LKFS.yml new file mode 100644 index 0000000000000000000000000000000000000000..a6d7f3b9877390e9190be5bb9879ebf8470a6f02 --- /dev/null +++ b/experiments/characterization/P800_ACR-1/config/P800_ACR-1_cat6_ISM2-26LKFS.yml @@ -0,0 +1,606 @@ +--- +# test plan based on S4aA250068 v0.8.0 + +################################################ +# General configuration +################################################ + +name: P800_ACR-1 +master_seed: 25 +prerun_seed: 2 + +input_path: "experiments/characterization/P800_ACR-1/proc_input/cat6" +output_path: "experiments/characterization/P800_ACR-1/proc_output/cat6/out_-26LKFS" +use_windows_codec_binaries: false +condition_in_output_filename: true + +################################################ +### Input configuration +################################################ +input: + fmt: "ISM2" + fs: 48000 + aligned_to: + len: 20 + +################################################ +### Pre-processing on individual items +################################################ +preprocessing: + mask: "20KBP" + loudness: -26 + window: 100 + +################################################ +### Pre-processing on whole signal(s) +################################################ +preprocessing_2: + concatenate_input: true + preamble_noise: true + preamble: 10000 + repeat_signal: true + +################################################ +### Configuration for conditions under test +################################################ +conditions_to_generate: + ### Reference and Low-pass anchor conditions ### + c01: + type: ref + c02: + type: ref + out_fc: 16000 + c03: + type: ref + out_fc: 14000 + c04: + type: ref + out_fc: 12000 + c05: + type: ref + out_fc: 10000 + c06: + type: ref + out_fc: 8000 + c07: + type: ref + out_fc: 6000 + c08: + type: ref + out_fc: 4000 + ### MNRU conditions ### + c09: + type: mnru + q: 30 + c10: + type: mnru + q: 26 + c11: + type: mnru + q: 22 + c12: + type: mnru + q: 18 + ### ESDRU conditions ### + c13: + type: esdru + alpha: 0.8 + c14: + type: esdru + alpha: 0.6 + c15: + type: esdru + alpha: 0.4 + c16: + type: esdru + alpha: 0.2 + ### IVAS WB conditions ### + c17: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c18: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c19: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c20: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c21: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c22: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c23: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c24: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS SWB conditions ### + c25: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c26: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c27: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c28: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c29: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c30: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c31: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c32: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + ### IVAS FB conditions ### + c33: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c34: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c35: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c36: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c37: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c38: + type: ivas + bitrates: + - 96000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c39: + type: ivas + bitrates: + - 128000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c40: + type: ivas + bitrates: + - 160000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c41: + type: ivas + bitrates: + - 192000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c42: + type: ivas + bitrates: + - 256000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx +################# +## DTX conditions +################# + c43: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c44: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c45: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c46: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c47: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + c48: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx +################# +## FER conditions +################# + c49: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c50: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c51: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c52: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c53: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c54: + type: ivas + bitrates: + - 80000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 +########################## +## DTX with FER conditions +########################## + c55: + type: ivas + bitrates: + - 16400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c56: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 16000 + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c57: + type: ivas + bitrates: + - 24400 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c58: + type: ivas + bitrates: + - 32000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + fs: 32000 + opts: + - -dtx + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c59: + type: ivas + bitrates: + - 48000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 + c60: + type: ivas + bitrates: + - 64000 + cod: + bin: ivas_processing_scripts/bin/IVAS_cod_fx + opts: + - -dtx + - -max_band + - FB + dec: + bin: ivas_processing_scripts/bin/IVAS_dec_fx + tx: + type: FER + error_rate: 5 +################################################ +### Post-processing +################################################ +postprocessing: + fmt: "BINAURAL" + fs: 48000 + loudness: -26 diff --git a/experiments/characterization/P800_ACR-1/proc_input/cat1/.gitkeep b/experiments/characterization/P800_ACR-1/proc_input/cat1/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800_ACR-1/proc_input/cat2/.gitkeep b/experiments/characterization/P800_ACR-1/proc_input/cat2/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800_ACR-1/proc_input/cat3/.gitkeep b/experiments/characterization/P800_ACR-1/proc_input/cat3/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800_ACR-1/proc_input/cat4/.gitkeep b/experiments/characterization/P800_ACR-1/proc_input/cat4/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800_ACR-1/proc_input/cat5/.gitkeep b/experiments/characterization/P800_ACR-1/proc_input/cat5/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800_ACR-1/proc_input/cat6/.gitkeep b/experiments/characterization/P800_ACR-1/proc_input/cat6/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800_ACR-1/proc_output/cat1/out_-26LKFS/.gitkeep b/experiments/characterization/P800_ACR-1/proc_output/cat1/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800_ACR-1/proc_output/cat2/out_-26LKFS/.gitkeep b/experiments/characterization/P800_ACR-1/proc_output/cat2/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800_ACR-1/proc_output/cat3/out_-26LKFS/.gitkeep b/experiments/characterization/P800_ACR-1/proc_output/cat3/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800_ACR-1/proc_output/cat4/out_-26LKFS/.gitkeep b/experiments/characterization/P800_ACR-1/proc_output/cat4/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800_ACR-1/proc_output/cat5/out_-26LKFS/.gitkeep b/experiments/characterization/P800_ACR-1/proc_output/cat5/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/experiments/characterization/P800_ACR-1/proc_output/cat6/out_-26LKFS/.gitkeep b/experiments/characterization/P800_ACR-1/proc_output/cat6/out_-26LKFS/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/generate_test.py b/generate_test_selection.py similarity index 100% rename from generate_test.py rename to generate_test_selection.py diff --git a/ivas_processing_scripts/__init__.py b/ivas_processing_scripts/__init__.py index f36bdc9af33039bb02c1d63e191bcfef671e2acc..243ac32b672fe210b9260fd203850d248af32a30 100755 --- a/ivas_processing_scripts/__init__.py +++ b/ivas_processing_scripts/__init__.py @@ -31,10 +31,7 @@ # import logging -import sys from itertools import product -from multiprocessing import Pool -from time import sleep from ivas_processing_scripts.audiotools.metadata import ( check_ISM_metadata, @@ -53,12 +50,7 @@ from ivas_processing_scripts.processing.processing import ( process_item, reorder_items_list, ) -from ivas_processing_scripts.utils import ( - DirManager, - apply_func_parallel, - progressbar_update, - spinner, -) +from ivas_processing_scripts.utils import DirManager, apply_func_parallel def logging_init(args, cfg): @@ -125,12 +117,9 @@ def main(args): item_names=cfg.items_list, ) # print info about found and used metadata files - for i in range(len(metadata_ISM)): - metadata_str = [] - for o in range(len(metadata_ISM[i])): - metadata_str.append(str(metadata_ISM[i][o])) + for audio, meta in zip(cfg.items_list, metadata_ISM): logger.debug( - f" ISM metadata files item {cfg.items_list[i]}: {', '.join(metadata_str)}" + f" ISM metadata file item {audio}: {', '.join(str(m) for m in meta)}" ) metadata = metadata_ISM @@ -142,15 +131,14 @@ def main(args): item_names=cfg.items_list, ) # print info about found and used metadata files - for i in range(len(metadata_MASA)): - metadata_str = [] - for o in range(len(metadata_MASA[i])): - metadata_str.append(str(metadata_MASA[i][o])) + for audio, meta in zip(cfg.items_list, metadata_MASA): logger.debug( - f" MASA metadata file item {cfg.items_list[i]}: {', '.join(metadata_str)}" + f" MASA metadata file item {audio}: {', '.join(str(m) for m in meta)}" ) - for i, meta in enumerate(metadata): - meta.extend(metadata_MASA[i]) + # extend the list in case ISM metadata already is present + metadata = [ + meta_list + met for meta_list, met in zip(metadata, metadata_MASA) + ] if not cfg.input["fmt"].startswith("ISM") and "MASA" not in cfg.input["fmt"]: metadata = [None] * len(cfg.items_list) @@ -168,13 +156,7 @@ def main(args): # save process info to revert it later cfg.pre2 = cfg.proc_chains[0]["processes"][0] # preprocess background noise - if ( - hasattr(cfg, "preprocessing") - and hasattr(cfg.pre2, "background_noise") - and cfg.pre2.background_noise is not None - and cfg.pre2.background_noise.get("background_noise_path") - ): - preprocess_background_noise(cfg) + preprocess_background_noise(cfg) # preprocess 2 preprocess_2(cfg, logger) @@ -190,33 +172,9 @@ def main(args): (item, tmp_dir, out_dir, chain["processes"], logger, metadata) ) - if cfg.multiprocessing: - # set up values for progress display and chunksize - count = len(item_args) - width = 80 - - # submit tasks to the pool - p = Pool() - results = p.starmap_async( - process_item, - item_args, - ) - - # poll progress - progressbar_update(0, count, width) - while not results.ready(): - progressbar_update(count - int(results._number_left), count, width) - spinner() - sleep(0.1) - progressbar_update(count, count, width) - print("", flush=True, file=sys.stdout) - results.get() - - p.close() - p.join() - - else: - apply_func_parallel(process_item, item_args, None, None, True) + apply_func_parallel( + process_item, item_args, None, "mp" if cfg.multiprocessing else None, True + ) # copy configuration to output directory cfg.to_file(cfg.output_path.joinpath(f"{cfg.name}.yml")) diff --git a/ivas_processing_scripts/audiotools/audio.py b/ivas_processing_scripts/audiotools/audio.py index a38084d42eb85b4a812f3ddad502c8d97cb175dd..292a061bfbd396e68f862d167bee00080a735454 100755 --- a/ivas_processing_scripts/audiotools/audio.py +++ b/ivas_processing_scripts/audiotools/audio.py @@ -36,7 +36,6 @@ from typing import Optional, Union from warnings import warn import numpy as np - from ivas_processing_scripts.audiotools.audiofile import read from ivas_processing_scripts.audiotools.constants import ( BINAURAL_AUDIO_FORMATS, @@ -63,7 +62,6 @@ class Audio(ABC): self.audio = None self.fs = None self.num_channels = None - # self.logger = None # TODO needed? def __repr__(self): return f"{self.__class__} : {self.__dict__}" @@ -284,7 +282,9 @@ class ObjectBasedAudio(Audio): if file_name_meta.is_file(): obj.metadata_files.append(file_name_meta) else: - raise ValueError(f"Metadata file {file_name_meta} not found.") + raise FileNotFoundError( + f"Metadata file {file_name_meta} not found." + ) warn( f"No metadata files specified: The following files were found and used: \n {*obj.metadata_files,}" ) @@ -423,7 +423,9 @@ class OMASAAudio(Audio): if file_name_meta.is_file(): obj.metadata_files.append(file_name_meta) else: - raise ValueError(f"Metadata file {file_name_meta} not found.") + raise FileNotFoundError( + f"Metadata file {file_name_meta} not found." + ) warn( f"No metadata files specified: The following files were found and used: \n {*obj.metadata_files,}" ) @@ -528,7 +530,9 @@ class OSBAAudio(Audio): if file_name_meta.is_file(): obj.metadata_files.append(file_name_meta) else: - raise ValueError(f"Metadata file {file_name_meta} not found.") + raise FileNotFoundError( + f"Metadata file {file_name_meta} not found." + ) warn( f"No metadata files specified: The following files were found and used: \n {*obj.metadata_files,}" ) diff --git a/ivas_processing_scripts/audiotools/audioarray.py b/ivas_processing_scripts/audiotools/audioarray.py index 3e7d4c13b4fcd4ac56a13e0ec215171d0dc939dc..62c30d19bab694aa83b05972eaa91185e9b724a9 100755 --- a/ivas_processing_scripts/audiotools/audioarray.py +++ b/ivas_processing_scripts/audiotools/audioarray.py @@ -522,9 +522,7 @@ def lpfilter( N, Wn = sig.cheb2ord(fc / (fs / 2), (fc + 500) / (fs / 2), 3, 60) b, a = sig.cheby2(N, 60, Wn, "low") - # Apply the Butterworth filter for each channels, across time axis - # y = sig.lfilter(b, a, axis=0) # non zero-phase filter - y = sig.filtfilt(b, a, x, axis=0) # zero-phase filer, batch processing + y = sig.filtfilt(b, a, x, axis=0) # zero-phase filter, batch processing else: y = x diff --git a/ivas_processing_scripts/audiotools/binaural_datasets/binaural_dataset.py b/ivas_processing_scripts/audiotools/binaural_datasets/binaural_dataset.py index cf8b03b8aadf115b58f26d9d0a999c1b5b6eae12..d92709f511f498a3d8b84aa6f64a7fc80303d126 100755 --- a/ivas_processing_scripts/audiotools/binaural_datasets/binaural_dataset.py +++ b/ivas_processing_scripts/audiotools/binaural_datasets/binaural_dataset.py @@ -35,8 +35,6 @@ from typing import Optional, Tuple, Union from warnings import warn import numpy as np -from scipy.io import loadmat - from ivas_processing_scripts.audiotools.audio import fromtype from ivas_processing_scripts.audiotools.constants import ( CHANNEL_BASED_AUDIO_FORMATS, @@ -44,6 +42,7 @@ from ivas_processing_scripts.audiotools.constants import ( SCENE_BASED_AUDIO_FORMATS, ) from ivas_processing_scripts.audiotools.EFAP import wrap_angles +from scipy.io import loadmat def load_hrtf( diff --git a/ivas_processing_scripts/audiotools/binauralobjectrenderer.py b/ivas_processing_scripts/audiotools/binauralobjectrenderer.py index aa97c73b3d60710e09f5d5f6968bdfc906340230..276e36a387bae1873c32252ef2fa24f2b22fa7a8 100755 --- a/ivas_processing_scripts/audiotools/binauralobjectrenderer.py +++ b/ivas_processing_scripts/audiotools/binauralobjectrenderer.py @@ -35,14 +35,13 @@ from itertools import repeat from typing import Optional, Tuple import numpy as np -from scipy.signal import convolve - from ivas_processing_scripts.audiotools.binaural_datasets.binaural_dataset import ( find_ir, ) from ivas_processing_scripts.audiotools.constants import IVAS_FRAME_LEN_MS from ivas_processing_scripts.audiotools.EFAP import wrap_angles from ivas_processing_scripts.utils import apply_func_parallel +from scipy.signal import convolve def barycentric_weights( @@ -338,7 +337,7 @@ def interpolate_2d( W_1 + W_2 + W_3 > 1.5 ): # on sphere sum of weights is not necessarily equal to one! raise ValueError( - f"Sum of positive barycentric weights larger than expected: {W_1 +W_2 +W_3}" + f"Sum of positive barycentric weights larger than expected: {W_1 + W_2 + W_3}" ) threshold_error = -1 * 10**-10 @@ -517,7 +516,6 @@ def binaural_fftconv_framewise( fade_in = fade_in[:, np.newaxis] fade_out = 1.0 - fade_in - # compute both ears in parallel i_ear = list(range(2)) result = apply_func_parallel( render_ear, @@ -588,7 +586,6 @@ def render_ear( IR=IR[:, i_ear], ) - # frame wise parallel computation slow (many frames, small computational load per frame) i_frame = list(range(N_frames)) result = apply_func_parallel( convolve_frame, @@ -607,7 +604,7 @@ def render_ear( repeat(N_HRIR_taps), ), None, - None, + None, # frame wise parallel computation slow (many frames, small computational load per frame) False, ) diff --git a/ivas_processing_scripts/audiotools/convert/__init__.py b/ivas_processing_scripts/audiotools/convert/__init__.py index 691ca1daa57aa3eddcf8769fc456b4a7e2d9f1aa..7a7235ce2dc5bc256116a79b41d0560f81f5a307 100755 --- a/ivas_processing_scripts/audiotools/convert/__init__.py +++ b/ivas_processing_scripts/audiotools/convert/__init__.py @@ -35,8 +35,10 @@ from copy import copy from pathlib import Path, PurePath from shutil import copyfile from typing import Optional, Union +from warnings import warn from ivas_processing_scripts.audiotools import audio, audioarray, metadata +from ivas_processing_scripts.audiotools.audioarray import lpfilter from ivas_processing_scripts.audiotools.audiofile import write from ivas_processing_scripts.audiotools.convert.channelbased import convert_channelbased from ivas_processing_scripts.audiotools.convert.masa import convert_masa @@ -74,7 +76,7 @@ def convert_file( # get audio class object - can be either a regular single audio or scene description .txt if not isinstance(in_fmt, PurePath) and in_fmt.startswith("META"): - input = metadata.Metadata(in_file) + input = metadata.SceneDescription(in_file) else: # first check prevents crash on custom_ls setup formats if isinstance(in_fmt, str) and in_fmt.startswith("MASA") and in_meta is None: @@ -90,7 +92,7 @@ def convert_file( out_fs = input.fs if not out_fmt: - if isinstance(input, metadata.Metadata): + if isinstance(input, metadata.SceneDescription): raise ValueError( "Output format must be specified for scene description files!" ) @@ -139,7 +141,7 @@ def convert_file( output.metadata_files = copy(input.metadata_files) # apply actual conversion - if isinstance(input, metadata.Metadata): + if isinstance(input, metadata.SceneDescription): if logger: logger.debug(f"Converting metadata to {out_fmt} : {in_file} -> {out_file}") @@ -324,34 +326,44 @@ def process_audio( if mask is not None: if logger: logger.debug("Applying mask filter using ITU STL filter") - x.audio = maskfilter_itu(x, mask) + x.audio = maskfilter_itu(x, mask, logger=logger) """resampling""" if x.fs != fs: if logger: logger.debug(f"Resampling from {x.fs} to {fs} using ITU STL filter") - x.audio = resample_itu(x, fs) + x.audio = resample_itu(x, fs, logger=logger) x.fs = fs """low-pass filtering""" if fc is not None: - if logger: - logger.debug( - f"Applying low-pass filter with cutoff {fc} Hz using ITU STL filter" + try: + if logger: + logger.debug( + f"Applying low-pass filter with cutoff {fc}Hz using ITU STL filter" + ) + x.audio = lpfilter_itu(x, fc, logger=logger) + except NotImplementedError: + warn( + f"Low-pass filter cutoff {fc}Hz not supported by ITU filter. Falling back to python implementation." ) - x.audio = lpfilter_itu(x, fc) + if logger: + logger.debug( + f" Applying low-pass filter with cutoff {fc}Hz using python" + ) + x.audio = lpfilter(x.audio, fc, x.fs) """MNRU""" if mnru_q is not None: if logger: logger.debug("Applying P.50 Fullband MNRU") - x.audio = p50fbmnru(x, mnru_q) + x.audio = p50fbmnru(x, mnru_q, logger=logger) """ESDRU""" if esdru_alpha is not None: if logger: logger.debug("Applying ESDRU Recommendation ITU-T P.811") - x.audio = esdru(x, esdru_alpha) + x.audio = esdru(x, esdru_alpha, logger=logger) """Spatial distortion""" if ( @@ -368,7 +380,7 @@ def process_audio( if loudness is not None: if logger: logger.debug( - f"Applying loudness adjustment to {loudness} LKFS for format {loudness_fmt} using ITU STL bs1770demo" + f"Applying loudness adjustment to {loudness} LKFS for format {x.name} (measured using {loudness_fmt}) using ITU STL bs1770demo" ) x.audio, _ = loudness_norm(x, loudness, loudness_fmt, logger=logger) @@ -427,7 +439,7 @@ def format_conversion( if fmt.startswith("MASA"): output.metadata_file = input.metadata_file elif fmt.startswith("ISM"): # also includes combined formats - output.metadata_files = list(output.metadata_files) + output.metadata_files = list(input.metadata_files) else: if isinstance(input, audio.BinauralAudio): diff --git a/ivas_processing_scripts/audiotools/convert/channelbased.py b/ivas_processing_scripts/audiotools/convert/channelbased.py index 8e14b4a819f71e21ed48887575933b5e91bf1714..b4e4730ce5c03e4a1b4c40488cd548b2e8628539 100755 --- a/ivas_processing_scripts/audiotools/convert/channelbased.py +++ b/ivas_processing_scripts/audiotools/convert/channelbased.py @@ -34,7 +34,6 @@ from pathlib import Path from typing import Optional, Tuple, Union import numpy as np - from ivas_processing_scripts.audiotools import audio from ivas_processing_scripts.audiotools.audioarray import delay, framewise_io from ivas_processing_scripts.audiotools.binaural_datasets.binaural_dataset import ( diff --git a/ivas_processing_scripts/audiotools/convert/masa.py b/ivas_processing_scripts/audiotools/convert/masa.py index b4e099c89b70666d93052cb4f019aa2e7ee77732..6f872f5eb5a7772d6beee636d5d7ac19e2a4bafe 100755 --- a/ivas_processing_scripts/audiotools/convert/masa.py +++ b/ivas_processing_scripts/audiotools/convert/masa.py @@ -35,8 +35,7 @@ from typing import Optional, Union from warnings import warn from ivas_processing_scripts.audiotools import audio -from ivas_processing_scripts.audiotools.convert import channelbased -from ivas_processing_scripts.audiotools.wrappers.masaRenderer import masaRenderer +from ivas_processing_scripts.audiotools.wrappers.masaRenderer import ivasRendMasa """ MetadataAssistedSpatialAudio functions """ @@ -90,6 +89,8 @@ def render_masa_to_binaural( Name of binaural dataset without prefix or suffix """ + # Needed if using masaRenderer (deprecated) + """ if "ROOM" in bin.name: cba_tmp = audio.fromtype("7_1_4") cba_tmp.fs = masa.fs @@ -108,6 +109,19 @@ def render_masa_to_binaural( ) bin.audio = masaRenderer(masa, "BINAURAL") + """ + + if bin_dataset is not None: + warn( + "Binaural dataset selection not supported by IVAS_rend - please render manually" + ) + if bin.name == "BINAURAL_ROOM": + warn( + "BINAURAL_ROOM is not a valid output format for IVAS_rend. Defaulting to BINAURAL_ROOM_IR." + ) + bin.name += "_IR" + + bin.audio = ivasRendMasa(masa, bin.name, trajectory) def render_masa_to_cba( @@ -125,6 +139,8 @@ def render_masa_to_cba( Channel-based output audio """ + # Needed if using masaRenderer (deprecated) + """ if cba.name not in ["5_1", "7_1_4"]: warn( f"MasaRenderer does not support {cba.name} natively. Using 7_1_4 as an intermediate format." @@ -137,6 +153,8 @@ def render_masa_to_cba( channelbased.render_cba_to_cba(cba_tmp, cba) else: cba.audio = masaRenderer(masa, cba.name) + """ + cba.audio = ivasRendMasa(masa, cba.name) def render_masa_to_sba( @@ -154,6 +172,8 @@ def render_masa_to_sba( SBA output audio """ + # Needed if using masaRenderer (deprecated) + """ warn( f"MasaRenderer does not support {sba.name} natively. Using 7_1_4 as an intermediate format." ) @@ -163,3 +183,5 @@ def render_masa_to_sba( cba_tmp.audio = masaRenderer(masa, cba_tmp.name) channelbased.render_cba_to_sba(cba_tmp, sba) + """ + sba.audio = ivasRendMasa(masa, sba.name) diff --git a/ivas_processing_scripts/audiotools/convert/objectbased.py b/ivas_processing_scripts/audiotools/convert/objectbased.py index b251a28fcb6a9fb052969dad38bf4932114b8444..bd0d6846005b0af3daa5a9b8935fe59a74a57cc6 100755 --- a/ivas_processing_scripts/audiotools/convert/objectbased.py +++ b/ivas_processing_scripts/audiotools/convert/objectbased.py @@ -35,7 +35,6 @@ from pathlib import Path from typing import Optional, Tuple, Union import numpy as np - from ivas_processing_scripts.audiotools import audio from ivas_processing_scripts.audiotools.audioarray import delay, framewise_io from ivas_processing_scripts.audiotools.binaural_datasets.binaural_dataset import ( diff --git a/ivas_processing_scripts/audiotools/convert/omasa.py b/ivas_processing_scripts/audiotools/convert/omasa.py index 35f2782fdeada8af9910f225e74c8a5ae4d905ed..9df3782959bc140b0daf8c508f5ac543de12e113 100644 --- a/ivas_processing_scripts/audiotools/convert/omasa.py +++ b/ivas_processing_scripts/audiotools/convert/omasa.py @@ -32,7 +32,6 @@ from copy import copy, deepcopy import numpy as np - from ivas_processing_scripts.audiotools import audio from ivas_processing_scripts.audiotools.convert.masa import ( render_masa_to_binaural, diff --git a/ivas_processing_scripts/audiotools/convert/osba.py b/ivas_processing_scripts/audiotools/convert/osba.py index 1ea643d52e708c5d5a02ef54cc5b00ec09be354e..f97329b3c94dac616f07d6f79b39c9658a131729 100644 --- a/ivas_processing_scripts/audiotools/convert/osba.py +++ b/ivas_processing_scripts/audiotools/convert/osba.py @@ -32,7 +32,6 @@ from copy import copy, deepcopy import numpy as np - from ivas_processing_scripts.audiotools import audio from ivas_processing_scripts.audiotools.convert.objectbased import ( render_oba_to_binaural, @@ -81,14 +80,14 @@ def convert_osba( # combine results try: - out.audio = 0.5 * (out_ism.audio + out_sba.audio) + out.audio = out_ism.audio + out_sba.audio except ValueError as e: if ( out_ism.audio.shape[0] != out_sba.audio.shape[0] and out_sba.audio.shape[0] == osba.audio.shape[0] ): - out.audio = 0.5 * out_sba.audio - out.audio[: out_ism.audio.shape[0], :] += 0.5 * out_ism.audio + out.audio = out_sba.audio + out.audio[: out_ism.audio.shape[0], :] += out_ism.audio else: raise e @@ -104,7 +103,7 @@ def convert_osba( render_sba_to_cba(sba, out_sba) # combine results - out.audio = 0.5 * (out_ism.audio + out_sba.audio) + out.audio = out_ism.audio + out_sba.audio # OSBA -> SBA elif isinstance(out, audio.SceneBasedAudio): @@ -118,7 +117,7 @@ def convert_osba( render_sba_to_sba(sba, out_sba) # combine results - out.audio = 0.5 * (out_ism.audio + out_sba.audio) + out.audio = out_ism.audio + out_sba.audio # OSBA -> OMASA elif isinstance(out, audio.OMASAAudio): @@ -129,14 +128,20 @@ def convert_osba( ) # only render SBA part to MASA - out_sba = audio.fromtype(out.name[4:]) - out_sba.metadata_file = out.metadata_files[-1] - render_sba_to_masa(sba, out_sba) + out_masa = audio.fromtype(out.name[4:]) + if str(out.metadata_files[-1]).endswith(".met"): + # if MASA metadata filename is given, copy it + out_masa.metadata_file = copy(out.metadata_files[-1]) + render_sba_to_masa(sba, out_masa) + + # combine ISM audio with MASA audio into OMASA audio + out.audio = np.concatenate((oba.audio, out_masa.audio), axis=1) - # ism audio is passed through - ism_audio = osba.audio[:, : osba.num_ism_channels] + # combine ISM metadata with MASA metadata filenames + out.metadata_files = oba.metadata_files + [out_masa.metadata_file] - out.audio = np.concatenate((ism_audio, out_sba.audio), axis=1) + # copy ISM object positions + out.object_pos = copy(oba.object_pos) # OSBA -> OSBA elif isinstance(out, audio.OSBAAudio): diff --git a/ivas_processing_scripts/audiotools/convert/scenebased.py b/ivas_processing_scripts/audiotools/convert/scenebased.py index 4930526bae8b8e0b5206ef5ce4e850234b9647ac..1967dc3209a4dfc3a0cb6169d5be90d1b6f54ad8 100755 --- a/ivas_processing_scripts/audiotools/convert/scenebased.py +++ b/ivas_processing_scripts/audiotools/convert/scenebased.py @@ -35,8 +35,6 @@ from typing import Optional, Union from warnings import warn import numpy as np -from scipy.special import factorial, lpmv - from ivas_processing_scripts.audiotools import audio from ivas_processing_scripts.audiotools.audioarray import delay, framewise_io from ivas_processing_scripts.audiotools.binaural_datasets.binaural_dataset import ( @@ -54,6 +52,7 @@ from ivas_processing_scripts.audiotools.EFAP import EFAP from ivas_processing_scripts.audiotools.rotation import Quat2RotMat, SHrotmatgen from ivas_processing_scripts.audiotools.wrappers.filter import resample_itu from ivas_processing_scripts.audiotools.wrappers.masaAnalyzer import masaAnalyzer +from scipy.special import factorial, lpmv """ SceneBasedAudio functions """ @@ -197,6 +196,17 @@ def render_sba_to_masa( masa_out: audio.MetadataAssistedSpatialAudio, ) -> None: num_tcs = masa_out.num_channels + + # convert to HOA2 if input is HOA3 + if sba_in.name.endswith("HOA3"): + warn( + "MASA conversion only supports up to 2nd order ambisonics! Converting to HOA2 format." + ) + sba_hoa2 = audio.fromtype("HOA2") + sba_hoa2.fs = sba_in.fs + render_sba_to_sba(sba_in, sba_hoa2) + sba_in = sba_hoa2 + masa = masaAnalyzer(sba_in, num_tcs, masa_out.dirs, masa_out.metadata_file) masa_out.audio = masa.audio diff --git a/ivas_processing_scripts/audiotools/metadata.py b/ivas_processing_scripts/audiotools/metadata.py index 6eb1199abc40be3edcb03c1a6d18fce88a5c3682..021400c74175b967bf726ebe48a8ee0afcbda15e 100755 --- a/ivas_processing_scripts/audiotools/metadata.py +++ b/ivas_processing_scripts/audiotools/metadata.py @@ -31,11 +31,13 @@ # import csv +import logging from pathlib import Path +from shutil import copyfile, copyfileobj +from tempfile import TemporaryDirectory from typing import Optional, TextIO, Tuple, Union import numpy as np - from ivas_processing_scripts.audiotools import audio from ivas_processing_scripts.audiotools.audio import fromtype from ivas_processing_scripts.audiotools.audioarray import trim @@ -47,7 +49,7 @@ from ivas_processing_scripts.audiotools.constants import ( ) -class Metadata: +class SceneDescription: def __init__(self, meta_file: Union[str, Path]): self.meta_file = Path(meta_file) @@ -203,6 +205,8 @@ def write_ISM_metadata_in_file( file_names = file_name for i, csv_file in enumerate(file_names): + if not str(csv_file).endswith(".csv"): + continue # skip MASA metadata number_frames = metadata[i].shape[0] number_columns = metadata[i].shape[1] with open(csv_file, "w", newline="") as file: @@ -297,7 +301,7 @@ def trim_meta( return -def concat_meta_from_file( +def concat_ism_metadata_files( audio_files: list[str], meta_files: list[list[str]], out_file: list[str], @@ -376,7 +380,9 @@ def concat_meta_from_file( # add preamble if preamble: - concat_meta_all_obj = add_remove_preamble(concat_meta_all_obj, preamble) + concat_meta_all_obj = add_remove_ism_metadata_preamble( + concat_meta_all_obj, preamble + ) write_ISM_metadata_in_file(concat_meta_all_obj, out_file) @@ -584,7 +590,7 @@ def metadata_search_ISM( if file_name_meta.is_file(): list_item.append(Path(file_name_meta).resolve()) else: - raise ValueError(f"Metadata file {file_name_meta} not found.") + raise FileNotFoundError(f"Metadata file {file_name_meta} not found.") if len(item_names) == 1: list_meta = list_item else: @@ -612,7 +618,7 @@ def metadata_search_MASA( if file_name_meta.is_file(): list_item.append(Path(file_name_meta).resolve()) else: - raise ValueError(f"Metadata file {file_name_meta} not found.") + raise FileNotFoundError(f"Metadata file {file_name_meta} not found.") if len(item_names) == 1: list_meta = list_item else: @@ -621,7 +627,7 @@ def metadata_search_MASA( return list_meta -def add_remove_preamble( +def add_remove_ism_metadata_preamble( metadata, preamble, add: Optional[bool] = True, @@ -655,3 +661,90 @@ def add_remove_preamble( ) return metadata + + +def concat_masa_metadata_files( + meta_files: list[list[str]], + out_file: Union[str, Path], +) -> None: + """ + Concatenate ISM metadata from files + + Parameters + ---------- + meta_files: list[list[str]] + List of corresponding metadata file names + out_file: Union[str, Path] + Name of concatenated output file + """ + # meta_files is a list of lists + # this could be a list of ISM metadata files (OMASA) + # or just a single MASA metadata file, so we use the last index + with open(out_file, "wb") as out_file: + for meta in meta_files: + with open(meta[-1], "rb") as in_file: + copyfileobj(in_file, out_file) + + +def add_masa_metadata_preamble_repeat( + masa: audio.MetadataAssistedSpatialAudio, + metadata_in: Path, + metadata_out: Path, + preamble: int, + repeat: Optional[bool] = False, + logger: Optional[logging.Logger] = None, +) -> None: + preamble_frames = preamble / IVAS_FRAME_LEN_MS + if not preamble_frames.is_integer(): + raise ValueError( + f"Application of preamble for MASA metadata is only possible if preamble length is multiple of frame length. " + f"Frame length: {IVAS_FRAME_LEN_MS}ms" + ) + preamble_frames = int(preamble_frames) + + from ivas_processing_scripts.audiotools.wrappers.masaAnalyzer import masaAnalyzer + + with TemporaryDirectory() as tmp_dir: + tmp_dir = Path(tmp_dir) + tmp_meta = tmp_dir.joinpath("preamble.met") + + # generate zero metadata for preamble + if preamble > 0: + frame_smp = 48 * IVAS_FRAME_LEN_MS + preamble_smp = int(frame_smp * (preamble / IVAS_FRAME_LEN_MS)) + + fmt = "HOA2" if masa.dirs == 2 else "FOA" + sba = audio.fromtype(fmt) + sba.audio = np.zeros([preamble_smp, sba.num_channels]) + sba.fs = 48000 + + num_tc = masa.num_channels - getattr(masa, "num_ism_channels", 0) + + masaAnalyzer(sba, num_tc, masa.dirs, tmp_meta, logger=logger) + + if logger: + logger.debug(f"Preamble Metadata size {tmp_meta.stat().st_size}") + + # concatenate preamble and metadata + with open(tmp_meta, "ab") as out_meta: + # append out the original input metadata + with open(metadata_in, "rb") as in_meta: + copyfileobj(in_meta, out_meta) + + if logger: + logger.debug(f"Input Metadata size {metadata_in.stat().st_size}") + logger.debug( + f"Input + Preamble concatenated metadata size {tmp_meta.stat().st_size}" + ) + + if repeat: + # repeat the entire file + with open(tmp_meta, "rb") as in_meta: + md = in_meta.read() + with open(metadata_out, "wb") as out_meta: + out_meta.write(md * 2) + else: + copyfile(tmp_meta, metadata_out) + + if logger: + logger.debug(f"Output Metadata size {metadata_out.stat().st_size}") diff --git a/ivas_processing_scripts/audiotools/utils.py b/ivas_processing_scripts/audiotools/utils.py index 1233f949fba0acca62e3c494e74c56c5523c34a5..b5c0c093f919a2eb724fe8311b66e2b2a4bccd39 100755 --- a/ivas_processing_scripts/audiotools/utils.py +++ b/ivas_processing_scripts/audiotools/utils.py @@ -31,10 +31,11 @@ # from pathlib import Path +from typing import Union import numpy as np - from ivas_processing_scripts.audiotools.rotation import Euler2Quat, Quat2Euler +from ivas_processing_scripts.utils import get_abs_path def read_trajectory(trj_file: Path, return_quat=True): @@ -69,3 +70,29 @@ def write_trajectory(trj, out_file, write_quat=True): for pos in trj: f.write(", ".join([f"{q:.6f}" for q in pos])) f.write("\n") + + +def get_trajectory_or_dir( + trj: Union[str, Path, bool], input_path: Path +) -> tuple[Path, Path]: + trajectory = None + trajectory_dir = None + if isinstance(trj, bool): + trajectory_dir = input_path + else: + trajectory = get_abs_path(trj) + + return trajectory, trajectory_dir + + +def truncate_trajectory_3dof( + in_file: Path, + out_file: Path, +) -> None: + data = np.genfromtxt(in_file, delimiter=",") + data = data[:, :4] + + with open(out_file, "w") as f: + for pos in data: + f.write(", ".join([f"{q:.6f}" for q in pos])) + f.write("\n") diff --git a/ivas_processing_scripts/audiotools/wrappers/bs1770.py b/ivas_processing_scripts/audiotools/wrappers/bs1770.py index 818adaadd3870bb108b94291db20da54e0580911..f282158f0dfc82313f16c173590e75cc205b11e2 100755 --- a/ivas_processing_scripts/audiotools/wrappers/bs1770.py +++ b/ivas_processing_scripts/audiotools/wrappers/bs1770.py @@ -39,7 +39,6 @@ from typing import Optional, Tuple, Union from warnings import warn import numpy as np - from ivas_processing_scripts.audiotools import audio, convert from ivas_processing_scripts.audiotools.audiofile import write from ivas_processing_scripts.audiotools.wrappers.filter import resample_itu @@ -51,6 +50,7 @@ def bs1770demo( input: audio.Audio, target_loudness: Optional[float] = -26, rms: Optional[bool] = False, + logger: Optional[logging.Logger] = None, ) -> Tuple[float, float]: """ Wrapper for ITU-R BS.1770-4, requires bs1770demo binary @@ -98,7 +98,7 @@ def bs1770demo( warn( "ITU-R BS.1770-4 only supports 48kHz sampling rate. Temporarily resampling signal for measurement." ) - tmp_sig = resample_itu(input, 48000) + tmp_sig = resample_itu(input, 48000, logger=logger) else: tmp_sig = input.audio @@ -143,7 +143,7 @@ def bs1770demo( cmd.insert(1, "-rms") # run command - result = run(cmd) + result = run(cmd, logger=logger) # parse output # we are looking for the (floating-point) number after the search string - '( )' around the number denotes the first group @@ -162,6 +162,7 @@ def get_loudness( target_loudness: Optional[float] = -26, loudness_format: Optional[str] = None, rms: Optional[bool] = False, + logger: Optional[logging.Logger] = None, ) -> Tuple[float, float, str]: """ Loudness measurement using ITU-R BS.1770-4 @@ -214,7 +215,9 @@ def get_loudness( convert.format_conversion(input, tmp) else: tmp.audio = input.audio - measured_loudness, scale_factor = bs1770demo(tmp, target_loudness, rms) + measured_loudness, scale_factor = bs1770demo( + tmp, target_loudness, rms, logger=logger + ) return measured_loudness, scale_factor, loudness_format @@ -261,7 +264,7 @@ def loudness_norm( # save loudness before and after scaling for the logger info loudness_before, scale_factor_new, loundness_fmt_used = get_loudness( - scaled_input, target_loudness, loudness_format, rms + scaled_input, target_loudness, loudness_format, rms, logger=logger ) # repeat until convergence of loudness @@ -272,7 +275,7 @@ def loudness_norm( # measure loudness and get scaling factor measured_loudness, scale_factor_new, _ = get_loudness( - scaled_input, target_loudness, loudness_format, rms + scaled_input, target_loudness, loudness_format, rms, logger=logger ) num_iter += 1 diff --git a/ivas_processing_scripts/audiotools/wrappers/dlyerr_2_errpat.py b/ivas_processing_scripts/audiotools/wrappers/dlyerr_2_errpat.py index 4088993912ee668366382ccd2aacdc5e0ef7b982..ea900a068bcf52e64c0749447e45c168f6edc8ea 100644 --- a/ivas_processing_scripts/audiotools/wrappers/dlyerr_2_errpat.py +++ b/ivas_processing_scripts/audiotools/wrappers/dlyerr_2_errpat.py @@ -30,6 +30,7 @@ # the United Nations Convention on Contracts on the International Sales of Goods. # +import logging from pathlib import Path from typing import Optional, Union from warnings import warn @@ -56,6 +57,7 @@ def dlyerr_2_errpat( flag_word: Optional[bool] = None, flag_lf: Optional[bool] = None, delay: Optional[int] = None, + logger: Optional[logging.Logger] = None, ) -> None: """ Wrapper for dlyerr_2_errpat binary to convert delay and error profiles to frame error patterns for EVS JBM @@ -124,16 +126,16 @@ def dlyerr_2_errpat( if late_loss_rate is not None: cmd.extend(["-l", str(late_loss_rate)]) if flag_byte is not None: - cmd.extend(["-b", str(flag_byte)]) + cmd.extend(["-b"]) if flag_word is not None: - cmd.extend(["-w", str(flag_word)]) + cmd.extend(["-w"]) if flag_lf is not None: - cmd.extend(["-c", str(flag_lf)]) + cmd.extend(["-c"]) if delay is not None: cmd.extend(["-d", str(delay)]) # run command - run(cmd) + run(cmd, logger=logger) return @@ -148,6 +150,7 @@ def evs_jbm( errpatt_seed, errpatt_frames_packet, master_seed, + logger: Optional[logging.Logger] = None, ): # convert delay and error profile delay = None @@ -167,10 +170,12 @@ def evs_jbm( dlyerr_pattern = error_pattern # compute offset of error pattern len_pattern = length_pattern(dlyerr_pattern) - shift = random_seed((0, len_pattern - 1), master_seed, errpatt_seed) + shift = random_seed( + (0, len_pattern - 1), master_seed, errpatt_seed, logger=logger + ) elif error_profile is not None: - # if eror profile number is given + # if error profile number is given if error_profile == 1 or error_profile == 2 or error_profile == 3: delay = 200 num_frames_packet = 1 @@ -202,7 +207,9 @@ def evs_jbm( # compute offset of error pattern len_pattern = length_pattern(dlyerr_pattern) - shift = random_seed((0, len_pattern - 1), master_seed, error_profile, False) + shift = random_seed( + (0, len_pattern - 1), master_seed, error_profile, False, logger=logger + ) fer_pattern = Path(bitstream).with_suffix(".evs_jbm_fer.192") @@ -215,10 +222,11 @@ def evs_jbm( shift=shift, late_loss_rate=late_loss_rate, length=length, + logger=logger, ) # apply FER pattern with eid-xor - eid_xor(fer_pattern, bitstream, bitstream_processed) + eid_xor(fer_pattern, bitstream, bitstream_processed, logger=logger) def validate_evs_jbm( @@ -288,6 +296,6 @@ def validate_evs_jbm( ) if n_frames_per_packet is not None and n_frames_per_packet not in [1, 2]: raise ValueError( - f"n_frames_per_paket is {n_frames_per_packet}. Should be 1 or 2. Please check your configuration." + f"n_frames_per_packet is {n_frames_per_packet}. Should be 1 or 2. Please check your configuration." ) return diff --git a/ivas_processing_scripts/audiotools/wrappers/eid_xor.py b/ivas_processing_scripts/audiotools/wrappers/eid_xor.py index 6040c7e871dd0aaded6535cd7ced73e983c7f3b0..95b053d522e54b28a9ce96f0ff987cdde9d64a71 100644 --- a/ivas_processing_scripts/audiotools/wrappers/eid_xor.py +++ b/ivas_processing_scripts/audiotools/wrappers/eid_xor.py @@ -30,6 +30,7 @@ # the United Nations Convention on Contracts on the International Sales of Goods. # +import logging import os.path from pathlib import Path from typing import Optional, Union @@ -43,6 +44,7 @@ def eid_xor( error_pattern: Union[str, Path], in_bitstream: Union[str, Path], out_bitstream: Union[str, Path], + logger: Optional[logging.Logger] = None, ) -> None: """ Wrapper for eid-xor binary to apply error patterns for the bitstream processing @@ -87,7 +89,7 @@ def eid_xor( ] # run command - run(cmd) + run(cmd, logger=logger) return @@ -101,6 +103,7 @@ def create_and_apply_error_pattern( preamble: Optional[int] = 0, master_seed: Optional[int] = 0, prerun_seed: Optional[int] = 0, + logger: Optional[logging.Logger] = None, ) -> None: """ Function to create (or use existing) frame error pattern for bitstream processing @@ -132,7 +135,13 @@ def create_and_apply_error_pattern( ".192" ) create_error_pattern( - len_sig, error_pattern, error_rate, preamble, master_seed, prerun_seed + len_sig, + error_pattern, + error_rate, + preamble, + master_seed, + prerun_seed, + logger=logger, ) else: raise ValueError( @@ -144,7 +153,7 @@ def create_and_apply_error_pattern( ) # apply error pattern - eid_xor(error_pattern, in_bitstream, out_bitstream) + eid_xor(error_pattern, in_bitstream, out_bitstream, logger=logger) return diff --git a/ivas_processing_scripts/audiotools/wrappers/esdru.py b/ivas_processing_scripts/audiotools/wrappers/esdru.py index 64a7636f57bf47f86a656df041fc3afe9f81bc8a..6396991577de7027b0e39d87fb6d76175540bfc5 100755 --- a/ivas_processing_scripts/audiotools/wrappers/esdru.py +++ b/ivas_processing_scripts/audiotools/wrappers/esdru.py @@ -30,13 +30,13 @@ # the United Nations Convention on Contracts on the International Sales of Goods. # +import logging from copy import deepcopy from pathlib import Path from tempfile import TemporaryDirectory from typing import Optional import numpy as np - from ivas_processing_scripts.audiotools import audio from ivas_processing_scripts.audiotools.audiofile import read, write from ivas_processing_scripts.constants import DEFAULT_CONFIG_BINARIES @@ -49,6 +49,7 @@ def esdru( sf: Optional[int] = 48000, e_step: Optional[float] = 0.5, seed: Optional[int] = 1, + logger: Optional[logging.Logger] = None, ) -> np.ndarray: """ Wrapper for ESDRU (Ericsson spatial distortion reference unit) Recommendation ITU-T P.811, requires esdru binary @@ -122,7 +123,7 @@ def esdru( write(tmp_input_file, tmp_input_signal, sf) # run command - run(cmd, cwd=tmp_dir) + run(cmd, cwd=tmp_dir, logger=logger) tmp_output_signal, out_fs = read(tmp_output_file, 2, sf) diff --git a/ivas_processing_scripts/audiotools/wrappers/filter.py b/ivas_processing_scripts/audiotools/wrappers/filter.py index 062592ed0b4e32d1cf8ad84f4d63a96db51397db..7c6e592cf5e4999bbccbf4c4c15b54fdc2ee2a87 100755 --- a/ivas_processing_scripts/audiotools/wrappers/filter.py +++ b/ivas_processing_scripts/audiotools/wrappers/filter.py @@ -30,24 +30,55 @@ # the United Nations Convention on Contracts on the International Sales of Goods. # +import logging +import platform import re from copy import deepcopy +from itertools import repeat from pathlib import Path from tempfile import TemporaryDirectory from typing import Optional from warnings import warn import numpy as np - from ivas_processing_scripts.audiotools.audio import Audio, ChannelBasedAudio from ivas_processing_scripts.audiotools.audioarray import delay_compensation, pad_delay from ivas_processing_scripts.audiotools.audiofile import read, write from ivas_processing_scripts.constants import DEFAULT_CONFIG_BINARIES -from ivas_processing_scripts.utils import find_binary, run +from ivas_processing_scripts.utils import apply_func_parallel, find_binary, run FILTER_TYPES_REGEX = r"[\n][\s]{3}[A-Z0-9]\w+\s+" +def run_filter( + cmd_base: list[str], + audio: np.ndarray, + fs: int, + chan: int, + skip_channel: list[int], + block_size: Optional[int] = None, + logger: Optional[logging.Logger] = None, +): + if chan in skip_channel: + return audio + + with TemporaryDirectory() as tmp_dir: + tmp_dir = Path(tmp_dir) + tmp_in = tmp_dir.joinpath(f"tmpFilterOut_{chan}.pcm") + tmp_out = tmp_dir.joinpath(f"tmpFilterIn_{chan}.pcm") + + cmd = cmd_base.copy() + cmd.append(str(tmp_in)) + cmd.append(str(tmp_out)) + if block_size: + cmd.append(str(block_size)) + + write(tmp_in, audio, fs) + run(cmd, logger=logger) + out, _ = read(tmp_out, nchannels=1, fs=fs) + return out + + def filter_itu( input: Audio, flt_type: str, @@ -58,6 +89,7 @@ def filter_itu( is_async: Optional[bool] = False, delay: Optional[int] = None, skip_channel: Optional[list[int]] = None, + logger: Optional[logging.Logger] = None, ) -> np.ndarray: """ Low-pass filter a multi-channel audio array @@ -155,32 +187,26 @@ def filter_itu( # normal filtering -> size remains output = np.zeros_like(input.audio) - with TemporaryDirectory() as tmp_dir: - tmp_dir = Path(tmp_dir) - - # process channels separately - for channel in range(input.num_channels): - if skip_channel and channel in skip_channel: - output[:, channel] = input.audio[:, channel] - continue - - cmd_in_out = cmd.copy() - - tmp_in = tmp_dir.joinpath(f"tmp_filterIn{channel}.pcm") - tmp_out = tmp_dir.joinpath(f"tmp_filterOut{channel}.pcm") - - cmd_in_out.append(str(tmp_in)) - cmd_in_out.append(str(tmp_out)) - - if block_size: - cmd_in_out.append(str(block_size)) - - write(tmp_in, input.audio[:, channel], input.fs) - - run(cmd_in_out) - - a, _ = read(tmp_out, nchannels=1, fs=input.fs) - output[:, channel][:, None] = a + # make sure this is an empty list + skip_channel = skip_channel or [] + + filtered = apply_func_parallel( + run_filter, + zip( + repeat(cmd), + [input.audio[:, ch] for ch in range(input.num_channels)], + repeat(input.fs), + range(input.num_channels), + repeat(skip_channel), + repeat(block_size), + ), + repeat({"logger": logger}), + "mp" if platform.system() != "Windows" else None, + show_progress=False, + ) + + for ch, filt in enumerate(filtered): + output[:, [ch]] = filt.reshape(-1, 1) return output @@ -188,6 +214,7 @@ def filter_itu( def lpfilter_itu( x: Audio, fc: int, + logger: Optional[logging.Logger] = None, ) -> np.ndarray: """ Low-pass filter a multi-channel audio array @@ -210,8 +237,10 @@ def lpfilter_itu( flt_vals = [1500, 3500, 7000, 10000, 12000, 14000, 20000] try: flt_type = flt_types[flt_vals.index(fc)] - except Exception: - raise ValueError(f"LP cut-off frequency {fc}Hz not supported.") + except ValueError as e: + raise NotImplementedError( + f"LP cut-off frequency {fc}Hz not supported by ITU filter." + ) from e # resample if samplingrate is not supported old_fs = None @@ -221,14 +250,14 @@ def lpfilter_itu( f"Filter type {flt_type} only supported for 48kHz samplingrate, not for {x.fs}Hz -> resampling" ) old_fs = x.fs - tmp.audio = resample_itu(tmp, 48000) + tmp.audio = resample_itu(tmp, 48000, logger=logger) tmp.fs = 48000 # pad to avoid loosing samples due to delay tmp.audio = pad_delay(tmp.audio, flt_type=flt_type, fs=tmp.fs) # apply filter - y = filter_itu(tmp, flt_type=flt_type, block_size=960) + y = filter_itu(tmp, flt_type=flt_type, block_size=960, logger=logger) # delay compensation y = delay_compensation(y, flt_type=flt_type) @@ -236,13 +265,14 @@ def lpfilter_itu( # reverse resampling if old_fs: tmp.audio = y - y = resample_itu(tmp, old_fs) + y = resample_itu(tmp, old_fs, logger=logger) return y def hp50filter_itu( x: Audio, + logger: Optional[logging.Logger] = None, ) -> np.ndarray: """ High-pass 50Hz filter a multi-channel audio array @@ -272,7 +302,7 @@ def hp50filter_itu( ) flt_type = "HP50_48KHZ" old_fs = x.fs - tmp.audio = resample_itu(tmp, 48000) + tmp.audio = resample_itu(tmp, 48000, logger=logger) tmp.fs = 48000 # don't apply high-pass filtering to LFE channel @@ -285,7 +315,7 @@ def hp50filter_itu( tmp.audio = pad_delay(tmp.audio, flt_type=flt_type, fs=tmp.fs) # apply filter - y = filter_itu(tmp, flt_type=flt_type, skip_channel=skip_channel) + y = filter_itu(tmp, flt_type=flt_type, skip_channel=skip_channel, logger=logger) # delay compensation y = delay_compensation(y, flt_type=flt_type) @@ -293,13 +323,14 @@ def hp50filter_itu( # reverse resampling if old_fs: tmp.audio = y - y = resample_itu(tmp, old_fs) + y = resample_itu(tmp, old_fs, logger=logger) return y def kbp20filter_itu( x: Audio, + logger: Optional[logging.Logger] = None, ) -> np.ndarray: """ 20Hz to 20kHz bandpass filter for multi-channel audio array @@ -327,7 +358,7 @@ def kbp20filter_itu( ) flt_type = "20KBP" old_fs = x.fs - tmp.audio = resample_itu(tmp, 48000) + tmp.audio = resample_itu(tmp, 48000, logger=logger) tmp.fs = 48000 # don't apply band-pass filtering to LFE channel @@ -340,7 +371,7 @@ def kbp20filter_itu( tmp.audio = pad_delay(tmp.audio, flt_type=flt_type, fs=tmp.fs) # apply filter - y = filter_itu(tmp, flt_type=flt_type, skip_channel=skip_channel) + y = filter_itu(tmp, flt_type=flt_type, skip_channel=skip_channel, logger=logger) # delay compensation y = delay_compensation(y, flt_type=flt_type) @@ -348,7 +379,7 @@ def kbp20filter_itu( # reverse resampling if old_fs: tmp.audio = y - y = resample_itu(tmp, old_fs) + y = resample_itu(tmp, old_fs, logger=logger) return y @@ -356,6 +387,7 @@ def kbp20filter_itu( def maskfilter_itu( x: Audio, mask: str, + logger: Optional[logging.Logger] = None, ) -> np.ndarray: """ Mask filter for multi-channel audio array @@ -374,9 +406,9 @@ def maskfilter_itu( """ if mask == "HP50": - y = hp50filter_itu(x) + y = hp50filter_itu(x, logger=logger) elif mask == "20KBP": - y = kbp20filter_itu(x) + y = kbp20filter_itu(x, logger=logger) else: raise ValueError("Invalid mask filter defined") @@ -386,6 +418,7 @@ def maskfilter_itu( def resample_itu( x: Audio, fs_new: int, + logger: Optional[logging.Logger] = None, ) -> np.ndarray: """ Resampling of multi-channel audio array @@ -446,7 +479,7 @@ def resample_itu( ) # resampling - y.audio = filter_itu(y, flt_type=flt, up=up[i], down=down[i]) + y.audio = filter_itu(y, flt_type=flt, up=up[i], down=down[i], logger=logger) # delay compensation y.audio = delay_compensation(y.audio, flt_type=flt, up=up[i], down=down[i]) diff --git a/ivas_processing_scripts/audiotools/wrappers/gen_patt.py b/ivas_processing_scripts/audiotools/wrappers/gen_patt.py index 6766567f7fbf669b443fa6fe15809f01e3128b75..34e9ad212b66ca9218a832c7c9f526e31bcde7f5 100644 --- a/ivas_processing_scripts/audiotools/wrappers/gen_patt.py +++ b/ivas_processing_scripts/audiotools/wrappers/gen_patt.py @@ -30,6 +30,7 @@ # the United Nations Convention on Contracts on the International Sales of Goods. # +import logging from os import getcwd from pathlib import Path from tempfile import TemporaryDirectory @@ -48,6 +49,7 @@ def gen_patt( error_rate: float, start: Optional[int] = 0, working_dir: Optional[Union[Path, str]] = None, + logger: Optional[logging.Logger] = None, ) -> None: """ Wrapper for gen-patt binary to create error patterns for the bitstream processing @@ -99,7 +101,7 @@ def gen_patt( ] # run command - run(cmd, cwd=working_dir) + run(cmd, cwd=working_dir, logger=logger) return @@ -111,6 +113,7 @@ def create_error_pattern( preamble: Optional[int] = 0, master_seed: Optional[int] = 0, prerun_seed: Optional[int] = 0, + logger: Optional[logging.Logger] = None, ) -> None: """ Creates error pattern with desired frame error rate for bitstream processing @@ -148,22 +151,22 @@ def create_error_pattern( tmp_sta_file = tmp_dir.joinpath("sta") # compute seed - seed = random_seed((0, 99999999), master_seed, prerun_seed) + seed = random_seed((0, 99999999), master_seed, prerun_seed, logger=logger) # open file and modify lines = [] with open(sta_file, "r") as sta_file_txt: lines.append(sta_file_txt.readline()) # not changed - lines.append(f"{sta_file_txt.readline()[:-2]}{frame_error_rate/100}\n") + lines.append(f"{sta_file_txt.readline()[:-2]}{frame_error_rate / 100}\n") lines.append(sta_file_txt.readline()) # not changed lines.append(f"{sta_file_txt.readline()[:-2]}{seed}\n") lines.append(sta_file_txt.readline()) # not changed lines.append( - f"{sta_file_txt.readline()[:-2]}{1-(frame_error_rate/100*2)}\n" + f"{sta_file_txt.readline()[:-2]}{1 - (frame_error_rate / 100 * 2)}\n" ) lines.append(sta_file_txt.readline()) # not changed lines.append( - f"{sta_file_txt.readline()[:-2]}{1-(frame_error_rate/100*2)}\n" + f"{sta_file_txt.readline()[:-2]}{1 - (frame_error_rate / 100 * 2)}\n" ) lines.append(sta_file_txt.readline()) # not changed @@ -176,6 +179,7 @@ def create_error_pattern( path_pattern=path_pattern, start=preamble, working_dir=tmp_dir, + logger=logger, ) return diff --git a/ivas_processing_scripts/audiotools/wrappers/masaAnalyzer.py b/ivas_processing_scripts/audiotools/wrappers/masaAnalyzer.py index 65f2048ecfbcf87309f23940e92d2c285addc845..26310bc1c76d7fae5f44e554265e95a3b388fc24 100644 --- a/ivas_processing_scripts/audiotools/wrappers/masaAnalyzer.py +++ b/ivas_processing_scripts/audiotools/wrappers/masaAnalyzer.py @@ -29,6 +29,7 @@ # accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and # the United Nations Convention on Contracts on the International Sales of Goods. # +import logging from pathlib import Path from tempfile import TemporaryDirectory from typing import Optional @@ -45,6 +46,7 @@ def masaAnalyzer( num_tcs: int, num_dirs: int, metadata_out_filename: Optional[Path] = None, + logger: Optional[logging.Logger] = None, ) -> audio.MetadataAssistedSpatialAudio: """ Wrapper for masaAnalyzer (from MASA reference software) @@ -111,11 +113,11 @@ def masaAnalyzer( cmd[5] = str(tmp_out_pcm) cmd[6] = str(metadata_out_filename.resolve()) - tmp_audio = resample_itu(sba, 48000) + tmp_audio = resample_itu(sba, 48000, logger=logger) write(tmp_in, tmp_audio, 48000) # we need to run in the masaAnalyzer directory to use the .bin files it requires - run(cmd, cwd=binary.resolve().parent) + run(cmd, cwd=binary.resolve().parent, logger=logger) fmt = f"MASA{num_tcs}DIR{num_dirs}" masa = audio.fromfile(fmt, tmp_out_pcm, 48000, metadata_out_filename) diff --git a/ivas_processing_scripts/audiotools/wrappers/masaRenderer.py b/ivas_processing_scripts/audiotools/wrappers/masaRenderer.py index 47ec8c6edc1c2a6abb572051baedc3b54b7974ea..b0f6f85336cbc5f30345ef4351632b6e1a8af0bb 100755 --- a/ivas_processing_scripts/audiotools/wrappers/masaRenderer.py +++ b/ivas_processing_scripts/audiotools/wrappers/masaRenderer.py @@ -30,21 +30,88 @@ # the United Nations Convention on Contracts on the International Sales of Goods. # +import logging from pathlib import Path from tempfile import TemporaryDirectory +from typing import Optional +from warnings import warn import numpy as np - from ivas_processing_scripts.audiotools import audio from ivas_processing_scripts.audiotools.audiofile import read, write from ivas_processing_scripts.audiotools.wrappers.filter import resample_itu from ivas_processing_scripts.constants import DEFAULT_CONFIG_BINARIES -from ivas_processing_scripts.utils import find_binary, run +from ivas_processing_scripts.utils import find_binary, get_binary_path, run + + +def ivasRendMasa( + masa: audio.MetadataAssistedSpatialAudio, + out_fmt: str, + trajectory: Path = None, + logger: Optional[logging.Logger] = None, +) -> np.ndarray: + """ + Wrapper for IVAS_rend MASA Rendering + + Parameters + ---------- + masa : MetadataAssistedSpatialAudio + Input MASA audio + out_fmt: str + Desired output format + trajectory: Path + Head rotation trajectory + + Returns + ------- + output : np.ndarray + MASA rendered to out_fmt + """ + # This import is needed here and not at the top of the file to avoid a circular dependency with imports! + from ivas_processing_scripts.processing.ivas import IVAS_rend + + if "IVAS_rend" in DEFAULT_CONFIG_BINARIES["binary_paths"]: + binary = find_binary( + DEFAULT_CONFIG_BINARIES["binary_paths"]["IVAS_rend"].name, + binary_path=DEFAULT_CONFIG_BINARIES["binary_paths"]["IVAS_rend"].parent, + ) + else: + binary = find_binary("IVAS_rend") + + binary = get_binary_path(binary, False) + + rend = IVAS_rend( + { + "bin": binary, + "in_fmt": masa.name, + "in_fs": masa.fs, + "out_fmt": out_fmt, + "trajectory": trajectory, + "use_windows_codec_binaries": False, + } + ) + + with TemporaryDirectory() as tmp_dir: + tmp_dir = Path(tmp_dir) + tmp_in = tmp_dir.joinpath("tmp_masaRendIn.wav") + tmp_out = tmp_dir.joinpath("tmp_masaRendOut.wav") + + write(tmp_in, masa.audio, masa.fs) + + masa_metadata_file = masa.metadata_file + if masa_metadata_file is not None and not isinstance(masa_metadata_file, Path): + masa_metadata_file = Path(masa_metadata_file) + + rend.process(tmp_in, tmp_out, in_meta=[masa_metadata_file], logger=logger) + + output, _ = read(tmp_out) + return output def masaRenderer( masa: audio.MetadataAssistedSpatialAudio, out_fmt: str, + logger: Optional[logging.Logger] = None, ) -> np.ndarray: """ Wrapper for masaRenderer (from MASA reference software) @@ -61,6 +128,9 @@ def masaRenderer( output : np.ndarray MASA rendered to out_fmt """ + warn( + "This function (masaRenderer) has been replaced by ivasRendMasa, please switch code to use that instead" + ) if "masaRenderer" in DEFAULT_CONFIG_BINARIES["binary_paths"]: binary = find_binary( @@ -104,19 +174,19 @@ def masaRenderer( cmd[2] = str(tmp_in) cmd[4] = str(tmp_out) - tmp_audio = resample_itu(masa, 48000) + tmp_audio = resample_itu(masa, 48000, logger=logger) old_fs = masa.fs write(tmp_in, tmp_audio, 48000) # we need to run in the masaRenderer directory to use the .bin files it requires - run(cmd, cwd=binary.resolve().parent) + run(cmd, cwd=binary.resolve().parent, logger=logger) output, _ = read(tmp_out, num_channels) output_audio = audio.fromtype(out_fmt) output_audio.audio = output output_audio.fs = 48000 - output = resample_itu(output_audio, old_fs) + output = resample_itu(output_audio, old_fs, logger=logger) return output diff --git a/ivas_processing_scripts/audiotools/wrappers/networkSimulator.py b/ivas_processing_scripts/audiotools/wrappers/networkSimulator.py index 615c846c796a1e9cc87062074f792c65bb07751a..08dda1afe27924c1bb58399bdc25d1901ffcc2bd 100644 --- a/ivas_processing_scripts/audiotools/wrappers/networkSimulator.py +++ b/ivas_processing_scripts/audiotools/wrappers/networkSimulator.py @@ -90,7 +90,7 @@ def validate_network_simulator( ) if n_frames_per_packet is not None and n_frames_per_packet not in [1, 2]: raise ValueError( - f"n_frames_per_paket is {n_frames_per_packet}. Should be 1 or 2. Please check your configuration." + f"n_frames_per_packet is {n_frames_per_packet}. Should be 1 or 2. Please check your configuration." ) return @@ -222,9 +222,13 @@ def apply_network_simulator( # compute offset of error pattern len_pattern = length_pattern(error_pattern) if error_profile: - offset = random_seed((0, len_pattern - 1), master_seed, error_profile, False) + offset = random_seed( + (0, len_pattern - 1), master_seed, error_profile, False, logger=logger + ) else: - offset = random_seed((0, len_pattern - 1), master_seed, errpatt_seed, False) + offset = random_seed( + (0, len_pattern - 1), master_seed, errpatt_seed, False, logger=logger + ) # apply error pattern network_simulator( diff --git a/ivas_processing_scripts/audiotools/wrappers/p50fbmnru.py b/ivas_processing_scripts/audiotools/wrappers/p50fbmnru.py index 922536be0b8c87b553a15526d552edf08454ba6c..e59d6818a2daef0f4b9d0171fe20a52d7761a41f 100755 --- a/ivas_processing_scripts/audiotools/wrappers/p50fbmnru.py +++ b/ivas_processing_scripts/audiotools/wrappers/p50fbmnru.py @@ -30,13 +30,14 @@ # the United Nations Convention on Contracts on the International Sales of Goods. # +import logging from copy import deepcopy from pathlib import Path from tempfile import TemporaryDirectory +from typing import Optional from warnings import warn import numpy as np - from ivas_processing_scripts.audiotools import audio from ivas_processing_scripts.audiotools.audiofile import read, write from ivas_processing_scripts.audiotools.wrappers.filter import resample_itu @@ -47,6 +48,7 @@ from ivas_processing_scripts.utils import find_binary, run def p50fbmnru( input: audio.Audio, q_db: float, + logger: Optional[logging.Logger] = None, # noqa: F821 ) -> np.ndarray: """ Wrapper for P.50 Fullband MNRU (Modulated Noise Reference Unit), requires p50fbmnru binary @@ -80,7 +82,7 @@ def p50fbmnru( warn( "P.50 Fullband MNRU requires a sampling rate of 48kHz. Resampling will be applied" ) - tmp_audio_obj.audio = resample_itu(tmp_audio_obj, 48000) + tmp_audio_obj.audio = resample_itu(tmp_audio_obj, 48000, logger=logger) tmp_audio_obj.fs = 48000 with TemporaryDirectory() as tmp_dir: @@ -104,13 +106,13 @@ def p50fbmnru( write(tmp_input_file, tmp_audio_obj.audio) # run command - run(cmd) + run(cmd, logger=logger) tmp_output_signal, _ = read(tmp_output_file, input.num_channels) tmp_audio_obj.audio = tmp_output_signal # revert resampling if input.fs != 48000: - tmp_output_signal = resample_itu(tmp_audio_obj, input.fs) + tmp_output_signal = resample_itu(tmp_audio_obj, input.fs, logger=logger) return tmp_output_signal diff --git a/ivas_processing_scripts/audiotools/wrappers/random_seed.py b/ivas_processing_scripts/audiotools/wrappers/random_seed.py index 440b63a929775d6eb59cf838872901076e21c479..3f81686a1ccb51a3f28ae367164bc41893e5b341 100644 --- a/ivas_processing_scripts/audiotools/wrappers/random_seed.py +++ b/ivas_processing_scripts/audiotools/wrappers/random_seed.py @@ -30,6 +30,7 @@ # the United Nations Convention on Contracts on the International Sales of Goods. # +import logging from typing import Optional, Tuple from ivas_processing_scripts.constants import DEFAULT_CONFIG_BINARIES @@ -41,6 +42,7 @@ def random_seed( master_seed: Optional[int] = 0, prerun_seed: Optional[int] = 0, hexa: Optional[bool] = True, + logger: Optional[logging.Logger] = None, ) -> int: """ @@ -83,7 +85,7 @@ def random_seed( ] # run command - result = run(cmd) + result = run(cmd, logger=logger) result = int(result.stdout[:-1]) if hexa: diff --git a/ivas_processing_scripts/audiotools/wrappers/reverb.py b/ivas_processing_scripts/audiotools/wrappers/reverb.py index bfbe39eb8ce696008a73069128fb1358add6f062..1628ee3ed3566ac7cf6e77b3800e81d0465581a6 100644 --- a/ivas_processing_scripts/audiotools/wrappers/reverb.py +++ b/ivas_processing_scripts/audiotools/wrappers/reverb.py @@ -30,26 +30,28 @@ # the United Nations Convention on Contracts on the International Sales of Goods. # +import logging from copy import copy from pathlib import Path from tempfile import TemporaryDirectory from typing import Optional import numpy as np -from scipy.fft import fft - from ivas_processing_scripts.audiotools import audio from ivas_processing_scripts.audiotools.audio import Audio from ivas_processing_scripts.audiotools.audiofile import read, write from ivas_processing_scripts.audiotools.wrappers.filter import resample_itu from ivas_processing_scripts.constants import DEFAULT_CONFIG_BINARIES from ivas_processing_scripts.utils import find_binary, run +from scipy.fft import fft def reverb( input: Audio, IR: Audio, align: Optional[float] = None, + mode: Optional[str] = None, + logger: Optional[logging.Logger] = None, ) -> Audio: """ Wrapper for the ITU-T reverb binary to convolve mono audio signal with an impulse response @@ -63,6 +65,9 @@ def reverb( Impulse response align: float multiplicative factor to apply to the reverberated sound in order to align its energy level with a second filePath to the output file + mode: str, optional + Mode of operation, None - no operation on the output, "same" centers the output signals by trimming left and right edge effects equally + "trim_left" - trims the left edge, "trim_right" - trims the right edge. Returns ------- @@ -87,7 +92,7 @@ def reverb( tmp_input = copy(input) if input.fs != IR.fs: old_fs = input.fs - tmp_input.audio = resample_itu(tmp_input, IR.fs) + tmp_input.audio = resample_itu(tmp_input, IR.fs, logger=logger) tmp_input.fs = IR.fs # add trailing zeros @@ -122,18 +127,28 @@ def reverb( tmp_output_file = tmp_dir.joinpath("tmp_reverbOut.pcm") cmd.extend([tmp_input_file, tmp_IR_file, tmp_output_file]) - # run the 'reverb' command - run(cmd) + # run the 'reverb' command (automatically prepends N zeros to the input signal to keep the output length the same as the input) + run(cmd, logger=logger) # read the reverberated output file output = copy(tmp_input) output.audio, _ = read(tmp_output_file, nchannels=1, fs=tmp_input.fs) - # remove trailing part (to ensure that the length of the output is the same as the input) - output.audio = output.audio[: -(IR.audio.shape[0] - 1), :] + # trim the output + if mode == "same": + # center the output by trimming left and right edge effects equally + output.audio = output.audio[ + (IR.audio.shape[0] - 1) // 2 : -(IR.audio.shape[0] - 1) // 2, : + ] + elif mode == "trim_left": + # trim the left edge + output.audio = output.audio[(IR.audio.shape[0] - 1) :, :] + elif mode == "trim_right": + # trim the right edge + output.audio = output.audio[: -(IR.audio.shape[0] - 1), :] if old_fs: - output.audio = resample_itu(output, old_fs) + output.audio = resample_itu(output, old_fs, logger=logger) output.fs = old_fs return output @@ -143,6 +158,8 @@ def reverb_stereo( input: Audio, stereo_IR: Audio, align: Optional[float] = None, + mode: Optional[str] = None, + logger: Optional[logging.Logger] = None, ) -> Audio: """ Wrapper for the ITU-T reverb binary to convolve mono audio signal with a stereo impulse response @@ -155,6 +172,9 @@ def reverb_stereo( Impulse response align: float multiplicative factor to apply to the reverberated sound in order to align its energy level with the second file + mode: str, optional + Mode of operation, None - no operation on the output, "same" centers the output signals by trimming left and right edge effects equally + "trim_left" - trims the left edge, "trim_right" - trims the right edge. Returns ------- @@ -182,8 +202,8 @@ def reverb_stereo( align = 1.0 / np.max(np.abs(H)) # convolve mono input with left and right IR - y_left = reverb(input, IR_left, align=align) - y_right = reverb(input, IR_right, align=align) + y_left = reverb(input, IR_left, align=align, mode=mode, logger=logger) + y_right = reverb(input, IR_right, align=align, mode=mode, logger=logger) # combine into stereo output y = audio.fromtype("STEREO") @@ -197,6 +217,8 @@ def reverb_foa( input: Audio, foa_IR: Audio, align: Optional[float] = None, + mode: Optional[str] = None, + logger: Optional[logging.Logger] = None, ) -> Audio: """ Convolve mono audio signal with an FOA impulse response @@ -209,6 +231,9 @@ def reverb_foa( FOA impulse response align: float multiplicative factor to apply to the reverberated sound in order to align its energy level with the second file + mode: str, optional + Mode of operation, None - no operation on the output, "same" centers the output signals by trimming left and right edge effects equally + "trim_left" - trims the left edge, "trim_right" - trims the right edge. Returns ------- @@ -246,10 +271,10 @@ def reverb_foa( align = 1.0 / np.max(np.abs(H)) # convolve mono input with FOA IR - y_w = reverb(input, IR_w, align=align) - y_x = reverb(input, IR_x, align=align) - y_y = reverb(input, IR_y, align=align) - y_z = reverb(input, IR_z, align=align) + y_w = reverb(input, IR_w, align=align, mode=mode, logger=logger) + y_x = reverb(input, IR_x, align=align, mode=mode, logger=logger) + y_y = reverb(input, IR_y, align=align, mode=mode, logger=logger) + y_z = reverb(input, IR_z, align=align, mode=mode, logger=logger) # combine into FOA output y = audio.fromtype("FOA") @@ -263,6 +288,8 @@ def reverb_hoa2( input: Audio, hoa2_IR: Audio, align: Optional[float] = None, + mode: Optional[str] = None, + logger: Optional[logging.Logger] = None, ) -> Audio: """ Convolve mono audio signal with an HOA2 impulse response @@ -300,7 +327,7 @@ def reverb_hoa2( # separate IR into each channel IR.audio = hoa2_IR.audio[:, [i]] # convolve mono input with channel IR - ych.append(reverb(input, IR, align=align)) + ych.append(reverb(input, IR, align=align, mode=mode), logger=logger) # combine into HOA2 output y = audio.fromtype("HOA2") @@ -314,6 +341,8 @@ def reverb_hoa3( input: Audio, hoa3_IR: Audio, align: Optional[float] = None, + mode: Optional[str] = None, + logger: Optional[logging.Logger] = None, ) -> Audio: """ Convolve mono audio signal with an HOA3 impulse response @@ -351,7 +380,7 @@ def reverb_hoa3( # separate IR into each channel IR.audio = hoa3_IR.audio[:, [i]] # convolve mono input with channel IR - ych.append(reverb(input, IR, align=align)) + ych.append(reverb(input, IR, align=align, mode=mode), logger=logger) # combine into HOA3 output y = audio.fromtype("HOA3") diff --git a/ivas_processing_scripts/bin/README.md b/ivas_processing_scripts/bin/README.md index 494ed5ed1c0c00d2babb1d6d3411d5634718a34b..8c44045e118ded975285284503d042f9470763c9 100755 --- a/ivas_processing_scripts/bin/README.md +++ b/ivas_processing_scripts/bin/README.md @@ -1,17 +1,27 @@ +# Necessary additional executables -Necessary additional executables: + -| Processing step | Executable | Where to find | -|-------------------------------------------------|-----------------------|-------------------------------------------------------------------------------------------------------------| -| Loudness measurement and adjustment | bs1770demo | https://github.com/ErikNorvell-Ericsson/STL (Note branch) | -| MNRU | p50fbmnru | https://github.com/openitu/STL | -| ESDRU | esdru | https://github.com/openitu/STL | -| Frame error pattern application | eid-xor | https://github.com/openitu/STL | -| Reverberation module | reverb | https://github.com/openitu/STL | -| Error pattern generation | gen-patt | https://www.itu.int/rec/T-REC-G.191-201003-S/en (Note: Version in https://github.com/openitu/STL is buggy!) | -| Filtering, Resampling | filter | https://www.3gpp.org/ftp/tsg_sa/WG4_CODEC/TSGS4_76/docs/S4-131277.zip | -| Random offset/seed generation (necessary for background noise and FER bitstream processing) | random | https://www.3gpp.org/ftp/tsg_sa/WG4_CODEC/TSGS4_76/docs/S4-131277.zip | -| JBM network simulator | networkSimulator_g192 | https://www.3gpp.org/ftp/tsg_sa/WG4_CODEC/TSGS4_76/docs/S4-131277.zip | -| MASA rendering (also used in loudness measurement of MASA items) | masaRenderer | https://www.3gpp.org/ftp/TSG_SA/WG4_CODEC/TSGS4_122_Athens/Docs/S4-230221.zip | -| EVS reference conditions | EVS_cod, EVS_dec | https://www.3gpp.org/ftp/Specs/archive/26_series/26.443/26443-h00.zip | -| EVS JBM conditions | dlyerr_2_errpat | http://ftp.3gpp.org/tsg_sa/WG4_CODEC/TSGS4_70/Docs/S4-121077.zip | \ No newline at end of file +| Processing Step | Executable | Source | +| -------------------------------------------- | -------------------------- | ------------------------------------------------------------------------------------------ | +| Loudness measurement and adjustment | `bs1770demo` | [openitu/STL](https://github.com/openitu/STL) | +| EVS JBM conditions | `dlyerr_2_errpat` | [3GPP S4-121077](http://ftp.3gpp.org/tsg_sa/WG4_CODEC/TSGS4_70/Docs/S4-121077.zip) | +| Frame error pattern application | `eid-xor` | [openitu/STL](https://github.com/openitu/STL) | +| ESDRU | `esdru` | [openitu/STL](https://github.com/openitu/STL) | +| EVS reference conditions (floating-point) | `EVS_cod`, `EVS_dec` | [3GPP 26.443](https://www.3gpp.org/ftp/Specs/archive/26_series/26.443/26443-h00.zip) | +| EVS reference conditions (fixed-point) | `EVS_cod_fx`, `EVS_dec_fx` | [3GPP 26.452](https://www.3gpp.org/ftp/Specs/archive/26_series/26.452/26452-i00.zip) | +| Filtering, Resampling | `filter` | [3GPP S4-131277](https://www.3gpp.org/ftp/tsg_sa/WG4_CODEC/TSGS4_76/docs/S4-131277.zip) | +| Error pattern generation | `gen-patt` | [openitu/STL](https://github.com/openitu/STL) | +| MASA rendering and loudness measurement [^1] | `IVAS_rend` | [IVAS Codec](https://forge.3gpp.org/rep/ivas-codec-pc/ivas-codec) | +| MASA format creation | `masaAnalyzer` | [Nokia MASA tools](https://github.com/Nokia-Bell-Labs/MASA_tools_for_IVAS) | +| JBM network simulator [^2] | `networkSimulator_g192` | [3GPP S4-131277](https://www.3gpp.org/ftp/tsg_sa/WG4_CODEC/TSGS4_76/docs/S4-131277.zip) | +| JBM network simulator patch | `networkSimulator_g192` | [3GPP S4-230604](https://www.3gpp.org/ftp/TSG_SA/WG4_CODEC/TSGS4_123-e/Docs/S4-230604.zip) | +| MNRU | `p50fbmnru` | [openitu/STL](https://github.com/openitu/STL) | +| Random offset/seed generation [^3] | `random` | [3GPP S4-131277](https://www.3gpp.org/ftp/tsg_sa/WG4_CODEC/TSGS4_76/docs/S4-131277.zip) | +| Reverberation module | `reverb` | [openitu/STL](https://github.com/openitu/STL) | + +[^1]: formerly required masaRenderer (now deprecated: https://www.3gpp.org/ftp/TSG_SA/WG4_CODEC/TSGS4_122_Athens/Docs/S4-230221.zip) +[^2]: requires manual patching +[^3]: necessary for background noise and FER bitstream processing + + diff --git a/ivas_processing_scripts/binary_paths.yml b/ivas_processing_scripts/binary_paths.yml index 1c810062322df01caa1290e74f810d103dfc43d9..00de00dda1e6054e6591f637fe73f9cb3412285b 100644 --- a/ivas_processing_scripts/binary_paths.yml +++ b/ivas_processing_scripts/binary_paths.yml @@ -22,6 +22,8 @@ # eid-xor: "path/to/binary/eid-xor" # ### Binary for error pattern generation # gen-patt: "path/to/binary/gen-patt" +# ### Binary for IVAS Renderer +# IVAS_rend: "path/to/binary/IVAS_rend" # ### Binary for random offset/seed generation # random: "path/to/binary/random" # ### Binary for JBM network similulator diff --git a/ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat b/ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat new file mode 100644 index 0000000000000000000000000000000000000000..ecf898b34b2f9bbd04195bc7b0d4b9891b3765f9 --- /dev/null +++ b/ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O1.dat @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:854e83b31b5aa6f120e793336e8732281681fc242c86819496901a8c2a65558f +size 25512 diff --git a/ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat b/ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat new file mode 100644 index 0000000000000000000000000000000000000000..e7c11ad6b6c705b55576e3c4794da745e5ec7a9b --- /dev/null +++ b/ivas_processing_scripts/dly_error_profiles/dly_error_profile_I1.O2.dat @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8062f7f527088c256638baf3199e0aba7e4f5ca05e0ce6ee2c1cb61438f5b2a7 +size 25452 diff --git a/ivas_processing_scripts/generation/__init__.py b/ivas_processing_scripts/generation/__init__.py index 8a9dfb98fdd0f24a24ac36210068a1984f9563aa..58c75189bee0be5dacd6edb7d9f23f4af7625e5d 100755 --- a/ivas_processing_scripts/generation/__init__.py +++ b/ivas_processing_scripts/generation/__init__.py @@ -32,6 +32,10 @@ import logging +from ivas_processing_scripts.audiotools.constants import ( + CHANNEL_BASED_AUDIO_ALTNAMES, + CHANNEL_BASED_AUDIO_FORMATS, +) from ivas_processing_scripts.constants import ( LOGGER_DATEFMT, LOGGER_FORMAT, @@ -40,6 +44,8 @@ from ivas_processing_scripts.constants import ( from ivas_processing_scripts.generation import ( config, generate_ismN_items, + generate_masa_items, + generate_mc_items, generate_omasa_items, generate_osba_items, generate_sba_items, @@ -91,10 +97,19 @@ def main(args): # generate FOA/HOA2/HOA3 items according to scene description generate_sba_items.generate_sba_items(cfg, logger) elif "OMASA" in cfg.format: - # generate OMASA items from FOA/HO2/HOA3 and MONO items according to scene description + # generate OMASA items from FOA/HOA2/HOA3 and MONO items according to scene description generate_omasa_items.generate_omasa_items(cfg, logger) + elif "MASA" in cfg.format: + # generate MASA items from MONO items according to scene description + generate_masa_items.generate_masa_items(cfg, logger) elif "OSBA" in cfg.format: - # generate OSBA items from FOA/HO2/HOA3 and MONO items according to scene description + # generate OSBA items from FOA/HOA2/HOA3 and MONO items according to scene description generate_osba_items.generate_osba_items(cfg, logger) + elif ( + cfg.format in CHANNEL_BASED_AUDIO_FORMATS.keys() + or cfg.format in CHANNEL_BASED_AUDIO_ALTNAMES.keys() + ): + # generate MC items from MONO items according to scene description + generate_mc_items.generate_mc_items(cfg, logger) logger.handlers.clear() diff --git a/ivas_processing_scripts/generation/config.py b/ivas_processing_scripts/generation/config.py index b61aa881e6a39f7204669ec8c82f0d625631fd62..6533785e6915b8b3bd4cfe5124225ffc20377157 100644 --- a/ivas_processing_scripts/generation/config.py +++ b/ivas_processing_scripts/generation/config.py @@ -33,7 +33,6 @@ from copy import deepcopy import yaml - from ivas_processing_scripts.generation.constants import DEFAULT_CONFIG, REQUIRED_KEYS diff --git a/ivas_processing_scripts/generation/generate_ismN_items.py b/ivas_processing_scripts/generation/generate_ismN_items.py index dcf76cad8d11e5c2eafd295776b4d78dce1b9bc6..b7d134343d810a822cd592b23331ae0a190be281 100644 --- a/ivas_processing_scripts/generation/generate_ismN_items.py +++ b/ivas_processing_scripts/generation/generate_ismN_items.py @@ -30,11 +30,12 @@ # the United Nations Convention on Contracts on the International Sales of Goods. # import logging +import re +import sys from itertools import groupby, repeat from pathlib import Path import numpy as np - from ivas_processing_scripts.audiotools import audio, audioarray, audiofile, metadata from ivas_processing_scripts.audiotools.convert.objectbased import convert_objectbased from ivas_processing_scripts.audiotools.wrappers.bs1770 import loudness_norm @@ -195,6 +196,7 @@ def generate_ismN_scene( # repeat for all source files offset = 0 + end_position = [] for i in range(N_inputs): # read input filename source_file = ( @@ -231,16 +233,37 @@ def generate_ismN_scene( if isinstance(scene["shift"], list) else scene["shift"] ) + + # check if shift is defined with X(i_ref) notation where X specifies the overlap value and i_ref is the index + # of the reference signal (0-based index) + if isinstance(scene["shift"][i], str) and "(" in scene["shift"][i]: + # extract X and i_ref + match = re.match( + r"([+-]?\d*\.?\d+)[\(\[]([+-]?\d+)[\)\]]", scene["shift"][i] + ) + + if match: + overlap = float(match.group(1)) + overlap_ref = int(match.group(2)) + else: + scene_shift_str = scene["shift"][i] + logger.error( + f"Unable to parse {scene_shift_str}. The specification of overlap or reference is incorrect!" + ) + sys.exit(-1) + + # calculate absolute shift of the source signal in seconds + source_shift = end_position[overlap_ref] + overlap else: source_shift = 0.0 - # convert overlap to samples and ensure it is a multiple of 20ms - source_shift_in_seconds = source_shift + # convert shift from seconds to samples and ensure it is a multiple of 20ms source_shift = source_shift * cfg.fs if source_shift >= 0: source_shift = int(np.floor(source_shift / frame_len) * frame_len) else: source_shift = int(np.ceil(source_shift / frame_len) * frame_len) + source_shift_in_seconds = source_shift / cfg.fs # read the level if "level" in scene.keys(): @@ -249,17 +272,37 @@ def generate_ismN_scene( if isinstance(scene["level"], list) else scene["level"] ) + + # check if level is "-Inf" string or "N/A" or "n/a" or "NaN" + if isinstance(level, str): + if level.lower() in ["-inf"]: + level = -np.inf + elif level.lower() in ["none", "no", "", "null", "n/a", "na", "nan"]: + level = None + else: + # convert to float + try: + level = float(level) + except ValueError: + logger.error(f"Error: Level {level} is not a valid entry!") + sys.exit(-1) + elif isinstance(level, (int, float)): + # do nothing, it is already a number + pass else: level = -26 logger.info( - f"-- Encoding {source_file} at position(s) {source_azi},{source_ele} at {level} LUFS with shift of {source_shift_in_seconds} seconds" + f"-- Encoding {source_file} at position(s) {source_azi},{source_ele} at {level} LKFS with shift of {source_shift_in_seconds} seconds" ) # read source file x = audio.fromtype("ISM1") x.audio, x.fs = audiofile.read(input_filename) + # record the total duration of the source signal, taking into account the shift of the starting position + end_position.append(x.audio.shape[0] / x.fs + source_shift_in_seconds) + # resample to the target fs if necessary if x.fs != cfg.fs: logger.warning( @@ -270,11 +313,20 @@ def generate_ismN_scene( x.fs = cfg.fs # adjust the level of the audio source file (need to convert to MONO first) - x_temp = audio.ChannelBasedAudio("MONO") # create a temporary mono audio object - x_temp.audio = x.audio.copy() - x_temp.fs = x.fs - x_temp.audio, _ = loudness_norm(x_temp, level, loudness_format="MONO") - x.audio = x_temp.audio + if np.isinf(level): + # set all channels to zero + x.audio = np.zeros_like(x.audio) + elif level is None: + # do not change the level of the audio source signal + logger.info("-- Level of the audio source signal is not changed") + else: + x_temp = audio.ChannelBasedAudio( + "MONO" + ) # create a temporary mono audio object + x_temp.audio = x.audio.copy() + x_temp.fs = x.fs + x_temp.audio, _ = loudness_norm(x_temp, level, loudness_format="MONO") + x.audio = x_temp.audio # ensure the length of the audio source signal is a multiple of 20ms if len(x.audio) % frame_len != 0: @@ -364,21 +416,21 @@ def generate_ismN_scene( y.object_pos = x.object_pos.copy() y.fs = x.fs - if source_shift < 0: + if source_shift > 0: # insert zeros to the new audio source signal to shift it right - metadata.trim_meta(y, limits=[source_shift, 0], samples=True) + metadata.trim_meta(y, limits=[-source_shift, 0], samples=True) else: offset = source_shift else: # shift the beginning of the audio source signal delta_offset = source_shift - offset - if delta_offset > 0: + if delta_offset < 0: # insert zeros to the previous ISM signal(s) to shift them right - metadata.trim_meta(y, limits=[-delta_offset, 0], samples=True) + metadata.trim_meta(y, limits=[delta_offset, 0], samples=True) offset = source_shift else: # insert zeros to the new audio source signal to shift it right - metadata.trim_meta(x, limits=[delta_offset, 0], samples=True) + metadata.trim_meta(x, limits=[-delta_offset, 0], samples=True) # adjust the length of the audio source signal delta_length = len(x.audio) - len(y.audio) @@ -393,7 +445,9 @@ def generate_ismN_scene( y.object_pos.extend(x.object_pos) # add ISM metadata .csv filename (should end with .wav.0.csv, .wav.1.csv, ...) - y.metadata_files.insert(i, str(output_filename.with_suffix(f".{i}.csv"))) + y.metadata_files.insert( + i, str(output_filename.with_suffix(output_filename.suffix + f".{i}.csv")) + ) # append pre-amble and post-amble if "preamble" in cfg.__dict__ or "postamble" in cfg.__dict__: @@ -416,22 +470,18 @@ def generate_ismN_scene( noise = np.random.randint(low=-4, high=5, size=y.audio.shape).astype("float") y.audio += noise - # adjust the length of the output signal + # trim the output signal if the total duration exceeds X seconds if "duration" in cfg.__dict__: - # trim the output signal such that the total duration is X seconds - duration = int(cfg.duration * cfg.fs) # convert to samples - else: - # do not change the length of the audio signal - duration = len(y.audio) - duration = int( - np.floor(duration / frame_len) * frame_len - ) # ensure multiple of 20ms - if len(y.audio) != duration: - metadata.trim_meta(y, limits=[0, len(y.audio) - duration], samples=True) + # convert from seconds to samples (ensure multiple of 20ms) + duration = int(np.floor(int(cfg.duration * cfg.fs) / frame_len) * frame_len) + + # check if the current length of the output signal exceeds the duration + if len(y.audio) > duration: + metadata.trim_meta(y, limits=[0, len(y.audio) - duration], samples=True) # adjust the loudness of the output signal if "loudness" in cfg.__dict__: - logger.info(f"-- Rescaling to target loudness: {cfg.loudness} LUFS") + logger.info(f"-- Rescaling to target loudness: {cfg.loudness} LKFS") y.audio, _ = loudness_norm(y, cfg.loudness, loudness_format="BINAURAL") # apply fade-in and fade-out diff --git a/ivas_processing_scripts/generation/generate_masa_items.py b/ivas_processing_scripts/generation/generate_masa_items.py new file mode 100644 index 0000000000000000000000000000000000000000..6788dacf79c54338e5b10eb05bbc82fd98a0f8cb --- /dev/null +++ b/ivas_processing_scripts/generation/generate_masa_items.py @@ -0,0 +1,550 @@ +#!/usr/bin/env python3 + +# +# (C) 2022-2025 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, +# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., +# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, +# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other +# contributors to this repository. All Rights Reserved. +# +# This software is protected by copyright law and by international treaties. +# The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, +# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., +# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, +# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other +# contributors to this repository retain full ownership rights in their respective contributions in +# the software. This notice grants no license of any kind, including but not limited to patent +# license, nor is any license granted by implication, estoppel or otherwise. +# +# Contributors are required to enter into the IVAS codec Public Collaboration agreement before making +# contributions. +# +# This software is provided "AS IS", without any express or implied warranties. The software is in the +# development stage. It is intended exclusively for experts who have experience with such software and +# solely for the purpose of inspection. All implied warranties of non-infringement, merchantability +# and fitness for a particular purpose are hereby disclaimed and excluded. +# +# Any dispute, controversy or claim arising under or in relation to providing this software shall be +# submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in +# accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and +# the United Nations Convention on Contracts on the International Sales of Goods. +# + +import logging +import re +import sys +from itertools import groupby, repeat +from pathlib import Path + +import numpy as np +from ivas_processing_scripts.audiotools import audio, audioarray, audiofile +from ivas_processing_scripts.audiotools.convert.masa import convert_masa +from ivas_processing_scripts.audiotools.convert.scenebased import render_sba_to_masa +from ivas_processing_scripts.audiotools.wrappers.bs1770 import loudness_norm +from ivas_processing_scripts.audiotools.wrappers.reverb import ( + reverb_foa, + reverb_hoa2, + reverb_hoa3, +) +from ivas_processing_scripts.generation import config +from ivas_processing_scripts.utils import apply_func_parallel + +SEED_RANDOM_NOISE = 0 + + +# function for searching sequences of same the same character and replacing it by another string +def replace_char_seq_with_string(str, char_seq, repl_str): + result = [] + + # find groups of consecutive letters + groups = ["".join(list(g)) for k, g in groupby(str)] + + # limit the length of the replacement string by the length of the character sequence + repl_str = repl_str[: len(char_seq)] + + # replace each occurence of the sequence of characters + for g in groups: + if char_seq in g: + result.append(repl_str) + else: + result.append(g) + + return "".join(result) + + +# function for appending string to a filename before file extension +def append_str_filename(filename, str_to_append): + p = Path(filename) + # Combine the stem, the string to append, and the suffix + return p.parent / (p.stem + str_to_append + p.suffix) + + +def generate_masa_items( + cfg: config.TestConfig, + logger: logging.Logger, +): + """Generate MASA items with metadata from FOA/HOA2/HOA3 and ISMn items based on scene description""" + + # set the fs + if "fs" not in cfg.__dict__: + cfg.fs = 48000 + + # set the listening lab designator + if "listening_lab" not in cfg.__dict__: + cfg.listening_lab = "l" + + # set the language designator + if "language" not in cfg.__dict__: + cfg.language = "EN" + + # set the experiment designator + if "exp" not in cfg.__dict__: + cfg.exp = "p07" + + # set the provider + if "provider" not in cfg.__dict__: + cfg.provider = "g" + + # set the prefix for all input filenames + if "use_input_prefix" not in cfg.__dict__: + cfg.use_input_prefix = "" + else: + # replace file designators + cfg.use_input_prefix = replace_char_seq_with_string( + cfg.use_input_prefix, "l", cfg.listening_lab + ) + cfg.use_input_prefix = replace_char_seq_with_string( + cfg.use_input_prefix, "LL", cfg.language + ) + cfg.use_input_prefix = replace_char_seq_with_string( + cfg.use_input_prefix, "eee", cfg.exp + ) + + # set the prefix for all IR filenames + if "use_IR_prefix" not in cfg.__dict__: + cfg.use_IR_prefix = "" + else: + # replace file designators + cfg.use_IR_prefix = replace_char_seq_with_string( + cfg.use_IR_prefix, "p", cfg.provider + ) + cfg.use_IR_prefix = replace_char_seq_with_string( + cfg.use_IR_prefix, "LL", cfg.language + ) + cfg.use_IR_prefix = replace_char_seq_with_string( + cfg.use_IR_prefix, "eee", cfg.exp + ) + + # set the prefix for all output filenames + if "use_output_prefix" not in cfg.__dict__: + cfg.use_output_prefix = "" + else: + # replace file designators + cfg.use_output_prefix = replace_char_seq_with_string( + cfg.use_output_prefix, "l", cfg.listening_lab + ) + cfg.use_output_prefix = replace_char_seq_with_string( + cfg.use_output_prefix, "eee", cfg.exp + ) + + # set multiprocessing + if "multiprocessing" not in cfg.__dict__: + cfg.multiprocessing = False + + apply_func_parallel( + generate_MASA_scene, + zip(cfg.scenes.keys(), cfg.scenes.values(), repeat(cfg), repeat(logger)), + type="mp" if cfg.multiprocessing else None, + show_progress=None, + ) + + return + + +def generate_MASA_scene( + scene_name: str, scene: dict, cfg: config.TestConfig, logger: logging.Logger +): + """ + Processes a single scene to generate MASA item with metadata. + + Args: + scene_name (str): The name of the scene being processed. + scene (dict): A dictionary containing scene description, including source files, azimuth, elevation, and other parameters. + cfg (config.TestConfig): Configuration object containing settings for processing, such as input/output paths, sampling rate, and loudness levels. + logger (logging.Logger): Logger instance for logging information and errors. + + Expected Behavior: + - Reads audio source files and processes them based on the scene description. + - Generates metadata files and appends them to the MASA object. + - Writes the processed audio and metadata to output files. + - Handles various audio formats (e.g., MONO, FOA, HOA2) and applies transformations like loudness normalization, trimming, and padding. + """ + + scenes = list(cfg.scenes.keys()) + logger.info( + f"Processing scene \"{scene_name}\" ({scenes.index(scene_name) + 1} out of {len(scenes)}), output file: {scene['output']}" + ) + + # extract the number of audio sources + N_inputs = len(np.atleast_1d(scene["input"])) + + # get output filename + masa_format = f"MASA{cfg.masa_tc}DIR{cfg.masa_dirs}" + output_filename = Path(scene["output"]).parent / ( + cfg.use_output_prefix + Path(scene["output"]).name + ) + + # initialize output dirs + dir_path = output_filename.parent + if dir_path and not dir_path.exists(): + dir_path.mkdir(parents=True, exist_ok=True) + + # initialize output MASA object + y = audio.MetadataAssistedSpatialAudio(masa_format) + y.fs = cfg.fs + + # set the frame length + frame_len = int(cfg.fs / 50) + + # repeat for all source files + offset = 0 + y_int = None + end_position = [] + for i in range(N_inputs): + # parse parameters from the scene description + source_file = ( + scene["input"][i] if isinstance(scene["input"], list) else scene["input"] + ) + IR_file = scene["IR"][i] if isinstance(scene["IR"], list) else scene["IR"] + + # get input filename and IR filename + input_filename = Path(source_file).parent / ( + cfg.use_input_prefix + Path(source_file).name + ) + IR_filename = Path(IR_file).parent / (cfg.use_IR_prefix + Path(IR_file).name) + + # read the shift time in seconds + if "shift" in scene.keys(): + source_shift = ( + scene["shift"][i] + if isinstance(scene["shift"], list) + else scene["shift"] + ) + else: + source_shift = 0.0 + + # read the source shift length (in seconds) + if "shift" in scene.keys(): + source_shift = ( + scene["shift"][i] + if isinstance(scene["shift"], list) + else scene["shift"] + ) + + # check if shift is defined with X(i_ref) notation where X specifies the overlap value and i_ref is the index + # of the reference signal (0-based index) + if isinstance(scene["shift"][i], str) and "(" in scene["shift"][i]: + # extract X and i_ref + match = re.match( + r"([+-]?\d*\.?\d+)[\(\[]([+-]?\d+)[\)\]]", scene["shift"][i] + ) + + if match: + overlap = float(match.group(1)) + overlap_ref = int(match.group(2)) + else: + scene_shift_str = scene["shift"][i] + logger.error( + f"Unable to parse {scene_shift_str}. The specification of overlap or reference is incorrect!" + ) + sys.exit(-1) + + # calculate absolute shift of the source signal in seconds + source_shift = end_position[overlap_ref] + overlap + else: + source_shift = 0.0 + + # convert shift from seconds to samples and ensure it is a multiple of 20ms + source_shift = source_shift * cfg.fs + if source_shift >= 0: + source_shift = int(np.floor(source_shift / frame_len) * frame_len) + else: + source_shift = int(np.ceil(source_shift / frame_len) * frame_len) + source_shift_in_seconds = source_shift / cfg.fs + + # read the level + if "level" in scene.keys(): + level = ( + scene["level"][i] + if isinstance(scene["level"], list) + else scene["level"] + ) + + # check if level is "-Inf" string or "N/A" or "n/a" or "NaN" + if isinstance(level, str): + if level.lower() in ["-inf"]: + level = -np.inf + elif level.lower() in ["none", "no", "", "null", "n/a", "na", "nan"]: + level = None + else: + # convert to float + try: + level = float(level) + except ValueError: + logger.error(f"Error: Level {level} is not a valid entry!") + sys.exit(-1) + elif isinstance(level, (int, float)): + # do nothing, it is already a number + pass + else: + level = -26 + + logger.info( + f"-- Convolving {source_file} with {IR_file} at {level} LKFS with shift of {source_shift_in_seconds} seconds" + ) + + # get the number of channels from the IR .wav file header + wav_header = audiofile.parse_wave_header(IR_filename) + IR_channels = wav_header["channels"] + + if IR_channels == 4: + IR_fmt = "FOA" + elif IR_channels == 9: + IR_fmt = "HOA2" + elif IR_channels == 16: + IR_fmt = "HOA3" + else: + logger.error( + f"Error: Input format of the IR source file with {IR_channels} channels is not supported!" + ) + sys.exit(-1) + + # initialize intermediate SBA object (based on the format of the IR file) + if y_int is None: + y_int = audio.SceneBasedAudio(IR_fmt) + y_int.fs = cfg.fs + + # read source file + x = audio.fromfile("MONO", input_filename) + + # record the total duration of the source signal, taking into account the shift of the starting position + end_position.append(x.audio.shape[0] / x.fs + source_shift_in_seconds) + + # resample to the target fs if necessary + if x.fs != cfg.fs: + logger.warning( + f"Warning: Sample rate of the audio source is {x.fs} Hz and needs to be resampled to {cfg.fs}!" + ) + resampled_audio = audioarray.resample(x.audio, x.fs, cfg.fs) + x.audio = resampled_audio + x.fs = cfg.fs + + # read the IR file + IR = audio.fromfile(IR_fmt, IR_filename) + + # convolve MONO source audio with FOA/HOA2/HOA3 IR -> results in FOA/HOA2/HOA3 audio object + if IR_fmt == "FOA": + x = reverb_foa(x, IR, mode=None, logger=logger) + elif IR_fmt == "HOA2": + x = reverb_hoa2(x, IR, mode=None, logger=logger) + elif IR_fmt == "HOA3": + x = reverb_hoa3(x, IR, mode=None, logger=logger) + + # adjust the level of the FOA/HOA2/HOA3 signal + if np.isinf(level): + # set all channels to zero + x.audio = np.zeros_like(x.audio) + elif level is None: + # do not change the level of the audio source signal + logger.info("-- Level of the audio source signal is not changed") + else: + x.audio, _ = loudness_norm(x, level, loudness_format="STEREO") + + # ensure the length of the audio source signal is a multiple of 20ms + if len(x.audio) % frame_len != 0: + # pad with zeros to ensure that the signal length is a multiple of 20ms + if len(x.audio) % frame_len != 0: + N_pad = int(frame_len - len(x.audio) % frame_len) + x.audio = audioarray.trim( + x.audio, x.fs, limits=[0, -N_pad], samples=True + ) + + # add the convolved FOA/HOA2/HOA3 audio source signal to the intermediate SBA output signal + if y_int.audio is None: + # this is the first SBA source signal + y_int.audio = x.audio.copy() + + if source_shift > 0: + # insert zeros to the first SBA source signal to shift it right + y_int.audio = audioarray.trim( + y_int.audio, y_int.fs, limits=[-source_shift, 0], samples=True + ) + else: + offset = source_shift + else: + # shift the beginning of the audio source signal + delta_offset = source_shift - offset + if delta_offset < 0: + # insert zeros to the output SBA signal to shift it right + y_int.audio = audioarray.trim( + y_int.audio, y_int.fs, limits=[delta_offset, 0], samples=True + ) + offset = source_shift + else: + # insert zeros to the new SBA source signal to shift it right + x.audio = audioarray.trim( + x.audio, x.fs, limits=[-delta_offset, 0], samples=True + ) + + # adjust the length of the audio source signal + delta_length = len(x.audio) - len(y_int.audio) + if delta_length > 0: + # pad zeros to the output SBA signal + y_int.audio = audioarray.trim( + y_int.audio, y_int.fs, limits=[0, -delta_length], samples=True + ) + else: + # pad zeros to the new MASA source signal + x.audio = audioarray.trim( + x.audio, x.fs, limits=[0, delta_length], samples=True + ) + + # superimpose + y_int.audio += x.audio + + # append pre-amble and post-amble + if "preamble" in cfg.__dict__ or "postamble" in cfg.__dict__: + preamble = int( + np.floor(cfg.preamble * cfg.fs / frame_len) * frame_len + ) # convert to samples and ensure multiple of 20ms + postamble = int( + np.floor(cfg.postamble * cfg.fs / frame_len) * frame_len + ) # convert to samples and ensure multiple of 20ms + if preamble != 0 or postamble != 0: + logger.info( + f"-- Adding pre-amble of {cfg.preamble} seconds and post-amble of {cfg.postamble} seconds" + ) + y_int.audio = audioarray.trim( + y_int.audio, y_int.fs, limits=[-preamble, -postamble], samples=True + ) + + # trim the output signal if the total duration exceeds X seconds + if "duration" in cfg.__dict__: + # convert from seconds to samples (ensure multiple of 20ms) + duration = int(np.floor(int(cfg.duration * cfg.fs) / frame_len) * frame_len) + + # check if the current length of the output signal exceeds the duration + if len(y_int.audio) > duration: + y_int.audio = audioarray.trim( + y_int.audio, + y_int.fs, + limits=[0, len(y_int.audio) - duration], + samples=True, + ) + + # adjust the loudness of the output signal + if "loudness" in cfg.__dict__: + logger.info(f"-- Rescaling to target loudness: {cfg.loudness} LKFS") + y_int.audio, _ = loudness_norm(y_int, cfg.loudness, loudness_format="BINAURAL") + + # add background noise in FOA/HOA2/HOA3 format + if "background" in scene.keys(): + # check if [] are used in the background noise file name + if isinstance(scene["background"], list): + # if so, use the first element + background_filename = scene["background"][0] + else: + background_filename = scene["background"] + + # read the background noise file + background_filename = Path(scene["background"]).parent / ( + cfg.use_input_prefix + Path(scene["background"]).name + ) + logger.info(f"-- Adding background noise from {background_filename}") + background = audio.fromfile(IR_fmt, background_filename) + + # resample to the target fs if necessary + if background.fs != cfg.fs: + logger.warning( + f"Warning: Sample rate of the background noise is {background.fs} Hz and needs to be resampled to {cfg.fs}!" + ) + resampled_audio = audioarray.resample( + background.audio, background.fs, cfg.fs + ) + background.audio = resampled_audio + background.fs = cfg.fs + + # adjust the length of the background noise signal + if len(background.audio) != len(y_int.audio): + background.audio = audioarray.trim( + background.audio, + background.fs, + limits=[0, len(background.audio) - len(y_int.audio)], + samples=True, + ) + + # adjust the loudness of the background noise signal + if "background_level" in scene.keys(): + logger.info( + f"-- Rescaling background noise to target loudness: {scene['background_level']} LKFS" + ) + + # check if [] are used in the background level + if isinstance(scene["background_level"], list): + # if so, use the first element + scene["background_level"] = scene["background_level"][0] + + # convert to float if the background level was entered in string format + if not isinstance(scene["background_level"], (int, float)): + scene["background_level"] = float(scene["background_level"]) + else: + logger.warning( + "-- Warning: No target loudness for background noise specified, using default value of -26 LKFS" + ) + scene["background_level"] = -26 + background.audio, _ = loudness_norm( + background, scene["background_level"], loudness_format="STEREO", rms=True + ) + + # add the background noise to the output signal + y_int.audio += background.audio + elif ( + "add_low_level_random_noise" in cfg.__dict__ and cfg.add_low_level_random_noise + ): + # create uniformly distributed noise between -4 and 4 + np.random.seed(SEED_RANDOM_NOISE) + noise = np.random.randint(low=-4, high=5, size=y_int.audio.shape).astype( + "float" + ) + y_int.audio += noise + + # apply fade-in and fade-out + if "fade_in_out" in cfg.__dict__ and cfg.fade_in_out > 0: + logger.info(f"-- Applying fade-in and fade-out with {cfg.fade_in_out} seconds") + y_int.audio = audioarray.window(y_int.audio, y_int.fs, cfg.fade_in_out * 1000) + + # generate MASA metadata filename (should end with .met) + y.metadata_file = output_filename.with_suffix(output_filename.suffix + ".met") + + # convert the intermediate SBA output signal to MASA format + render_sba_to_masa(y_int, y) + + # write the MASA audio signal to the output file + audiofile.write(output_filename, y.audio, y.fs) + + # convert the MASA audio signal to BINAURAL, if option was chosen + if cfg.binaural_output: + binaural_output_filename = output_filename.with_name( + output_filename.stem + "_BINAURAL" + output_filename.suffix + ) + logger.info( + f"-- Converting to BINAURAL output file: {binaural_output_filename}" + ) + binaudio = audio.fromtype("BINAURAL") + binaudio.fs = y.fs + convert_masa(y, binaudio) + audiofile.write( + binaural_output_filename, + binaudio.audio, + binaudio.fs, + ) diff --git a/ivas_processing_scripts/generation/generate_mc_items.py b/ivas_processing_scripts/generation/generate_mc_items.py new file mode 100644 index 0000000000000000000000000000000000000000..1c869f156af4e6e4f8cbce6c402b8286d62e1751 --- /dev/null +++ b/ivas_processing_scripts/generation/generate_mc_items.py @@ -0,0 +1,537 @@ +#!/usr/bin/env python3 + +# +# (C) 2022-2025 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, +# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., +# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, +# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other +# contributors to this repository. All Rights Reserved. +# +# This software is protected by copyright law and by international treaties. +# The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, +# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., +# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, +# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other +# contributors to this repository retain full ownership rights in their respective contributions in +# the software. This notice grants no license of any kind, including but not limited to patent +# license, nor is any license granted by implication, estoppel or otherwise. +# +# Contributors are required to enter into the IVAS codec Public Collaboration agreement before making +# contributions. +# +# This software is provided "AS IS", without any express or implied warranties. The software is in the +# development stage. It is intended exclusively for experts who have experience with such software and +# solely for the purpose of inspection. All implied warranties of non-infringement, merchantability +# and fitness for a particular purpose are hereby disclaimed and excluded. +# +# Any dispute, controversy or claim arising under or in relation to providing this software shall be +# submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in +# accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and +# the United Nations Convention on Contracts on the International Sales of Goods. +# + +import logging +import re +import sys +from itertools import groupby, repeat +from pathlib import Path + +import numpy as np +from ivas_processing_scripts.audiotools import audio, audioarray, audiofile +from ivas_processing_scripts.audiotools.convert.channelbased import ( + render_cba_to_binaural, +) +from ivas_processing_scripts.audiotools.convert.scenebased import render_sba_to_cba +from ivas_processing_scripts.audiotools.wrappers.bs1770 import loudness_norm +from ivas_processing_scripts.audiotools.wrappers.reverb import ( + reverb_foa, + reverb_hoa2, + reverb_hoa3, +) +from ivas_processing_scripts.generation import config +from ivas_processing_scripts.utils import apply_func_parallel + +SEED_RANDOM_NOISE = 0 + + +# function for searching sequences of same the same character and replacing it by another string +def replace_char_seq_with_string(str, char_seq, repl_str): + result = [] + + # find groups of consecutive letters + groups = ["".join(list(g)) for k, g in groupby(str)] + + # limit the length of the replacement string by the length of the character sequence + repl_str = repl_str[: len(char_seq)] + + # replace each occurence of the sequence of characters + for g in groups: + if char_seq in g: + result.append(repl_str) + else: + result.append(g) + + return "".join(result) + + +# function for appending string to a filename before file extension +def append_str_filename(filename, str_to_append): + p = Path(filename) + # Combine the stem, the string to append, and the suffix + return p.parent / (p.stem + str_to_append + p.suffix) + + +def generate_mc_items( + cfg: config.TestConfig, + logger: logging.Logger, +): + """Generate MC items with metadata from FOA/HOA2/HOA3 and ISMn items based on scene description""" + + # set the fs + if "fs" not in cfg.__dict__: + cfg.fs = 48000 + + # set the listening lab designator + if "listening_lab" not in cfg.__dict__: + cfg.listening_lab = "l" + + # set the language designator + if "language" not in cfg.__dict__: + cfg.language = "EN" + + # set the experiment designator + if "exp" not in cfg.__dict__: + cfg.exp = "p07" + + # set the provider + if "provider" not in cfg.__dict__: + cfg.provider = "g" + + # set the prefix for all input filenames + if "use_input_prefix" not in cfg.__dict__: + cfg.use_input_prefix = "" + else: + # replace file designators + cfg.use_input_prefix = replace_char_seq_with_string( + cfg.use_input_prefix, "l", cfg.listening_lab + ) + cfg.use_input_prefix = replace_char_seq_with_string( + cfg.use_input_prefix, "LL", cfg.language + ) + cfg.use_input_prefix = replace_char_seq_with_string( + cfg.use_input_prefix, "eee", cfg.exp + ) + + # set the prefix for all IR filenames + if "use_IR_prefix" not in cfg.__dict__: + cfg.use_IR_prefix = "" + else: + # replace file designators + cfg.use_IR_prefix = replace_char_seq_with_string( + cfg.use_IR_prefix, "p", cfg.provider + ) + cfg.use_IR_prefix = replace_char_seq_with_string( + cfg.use_IR_prefix, "LL", cfg.language + ) + cfg.use_IR_prefix = replace_char_seq_with_string( + cfg.use_IR_prefix, "eee", cfg.exp + ) + + # set the prefix for all output filenames + if "use_output_prefix" not in cfg.__dict__: + cfg.use_output_prefix = "" + else: + # replace file designators + cfg.use_output_prefix = replace_char_seq_with_string( + cfg.use_output_prefix, "l", cfg.listening_lab + ) + cfg.use_output_prefix = replace_char_seq_with_string( + cfg.use_output_prefix, "eee", cfg.exp + ) + + # set multiprocessing + if "multiprocessing" not in cfg.__dict__: + cfg.multiprocessing = False + + apply_func_parallel( + generate_MC_scene, + zip(cfg.scenes.keys(), cfg.scenes.values(), repeat(cfg), repeat(logger)), + type="mp" if cfg.multiprocessing else None, + show_progress=None, + ) + + return + + +def generate_MC_scene( + scene_name: str, scene: dict, cfg: config.TestConfig, logger: logging.Logger +): + """ + Processes a single scene to generate MC item. + + Args: + scene_name (str): The name of the scene being processed. + scene (dict): A dictionary containing scene description, including source files, azimuth, elevation, and other parameters. + cfg (config.TestConfig): Configuration object containing settings for processing, such as input/output paths, sampling rate, and loudness levels. + logger (logging.Logger): Logger instance for logging information and errors. + + Expected Behavior: + - Reads audio source files and processes them based on the scene description. + - Writes the processed audio and metadata to output files. + - Handles various audio formats (e.g., MONO, FOA, HOA2) and applies transformations like loudness normalization, trimming, and padding. + """ + + scenes = list(cfg.scenes.keys()) + logger.info( + f"Processing scene \"{scene_name}\" ({scenes.index(scene_name) + 1} out of {len(scenes)}), output file: {scene['output']}" + ) + + # extract the number of audio sources + N_inputs = len(np.atleast_1d(scene["input"])) + + # get output filename + output_filename = Path(scene["output"]).parent / ( + cfg.use_output_prefix + Path(scene["output"]).name + ) + + # initialize output dirs + dir_path = output_filename.parent + if dir_path and not dir_path.exists(): + dir_path.mkdir(parents=True, exist_ok=True) + + # initialize output MC object + y = audio.ChannelBasedAudio(cfg.format) + y.fs = cfg.fs + + # set the frame length + frame_len = int(cfg.fs / 50) + + # repeat for all source files + offset = 0 + y_int = None + end_position = [] + for i in range(N_inputs): + # parse parameters from the scene description + source_file = ( + scene["input"][i] if isinstance(scene["input"], list) else scene["input"] + ) + IR_file = scene["IR"][i] if isinstance(scene["IR"], list) else scene["IR"] + + # get input filename and IR filename + input_filename = Path(source_file).parent / ( + cfg.use_input_prefix + Path(source_file).name + ) + IR_filename = Path(IR_file).parent / (cfg.use_IR_prefix + Path(IR_file).name) + + # read the source shift length (in seconds) + if "shift" in scene.keys(): + source_shift = ( + scene["shift"][i] + if isinstance(scene["shift"], list) + else scene["shift"] + ) + + # check if shift is defined with X(i_ref) notation where X specifies the overlap value and i_ref is the index + # of the reference signal (0-based index) + if isinstance(scene["shift"][i], str) and "(" in scene["shift"][i]: + # extract X and i_ref + match = re.match( + r"([+-]?\d*\.?\d+)[\(\[]([+-]?\d+)[\)\]]", scene["shift"][i] + ) + + if match: + overlap = float(match.group(1)) + overlap_ref = int(match.group(2)) + else: + scene_shift_str = scene["shift"][i] + logger.error( + f"Unable to parse {scene_shift_str}. The specification of overlap or reference is incorrect!" + ) + sys.exit(-1) + + # calculate absolute shift of the source signal in seconds + source_shift = end_position[overlap_ref] + overlap + else: + source_shift = 0.0 + + # convert shift from seconds to samples and ensure it is a multiple of 20ms + source_shift = source_shift * cfg.fs + if source_shift >= 0: + source_shift = int(np.floor(source_shift / frame_len) * frame_len) + else: + source_shift = int(np.ceil(source_shift / frame_len) * frame_len) + source_shift_in_seconds = source_shift / cfg.fs + + # read the level + if "level" in scene.keys(): + level = ( + scene["level"][i] + if isinstance(scene["level"], list) + else scene["level"] + ) + + # check if level is "-Inf" string or "N/A" or "n/a" or "NaN" + if isinstance(level, str): + if level.lower() in ["-inf"]: + level = -np.inf + elif level.lower() in ["none", "no", "", "null", "n/a", "na", "nan"]: + level = None + else: + # convert to float + try: + level = float(level) + except ValueError: + logger.error(f"Error: Level {level} is not a valid entry!") + sys.exit(-1) + elif isinstance(level, (int, float)): + # do nothing, it is already a number + pass + else: + level = -26 + + logger.info( + f"-- Convolving {source_file} with {IR_file} at {level} LKFS with shift of {source_shift_in_seconds} seconds" + ) + + # get the number of channels from the IR .wav file header + wav_header = audiofile.parse_wave_header(IR_filename) + IR_channels = wav_header["channels"] + + if IR_channels == 4: + IR_fmt = "FOA" + elif IR_channels == 9: + IR_fmt = "HOA2" + elif IR_channels == 16: + IR_fmt = "HOA3" + else: + logger.error( + f"Error: Input format of the IR source file with {IR_channels} channels is not supported!" + ) + sys.exit(-1) + + # initialize intermediate SBA object (based on the format of the IR file) + if y_int is None: + y_int = audio.SceneBasedAudio(IR_fmt) + y_int.fs = cfg.fs + + # read source file + x = audio.fromfile("MONO", input_filename) + + # record the total duration of the source signal, taking into account the shift of the starting position + end_position.append(x.audio.shape[0] / x.fs + source_shift_in_seconds) + + # resample to the target fs if necessary + if x.fs != cfg.fs: + logger.warning( + f"Warning: Sample rate of the audio source is {x.fs} Hz and needs to be resampled to {cfg.fs}!" + ) + resampled_audio = audioarray.resample(x.audio, x.fs, cfg.fs) + x.audio = resampled_audio + x.fs = cfg.fs + + # read the IR file + IR = audio.fromfile(IR_fmt, IR_filename) + + # convolve MONO source audio with FOA/HOA2/HOA3 IR -> results in FOA/HOA2/HOA3 audio object + if IR_fmt == "FOA": + x = reverb_foa(x, IR, mode=None, logger=logger) + elif IR_fmt == "HOA2": + x = reverb_hoa2(x, IR, mode=None, logger=logger) + elif IR_fmt == "HOA3": + x = reverb_hoa3(x, IR, mode=None, logger=logger) + + # adjust the level of the FOA/HOA2/HOA3 signal + if level is None: + # do not change the level of the audio source signal + logger.info("-- Level of the audio source signal is not changed") + elif np.isinf(level): + # set all channels to zero + x.audio = np.zeros_like(x.audio) + else: + x.audio, _ = loudness_norm(x, level, loudness_format="STEREO") + + # ensure the length of the audio source signal is a multiple of 20ms + if len(x.audio) % frame_len != 0: + # pad with zeros to ensure that the signal length is a multiple of 20ms + if len(x.audio) % frame_len != 0: + N_pad = int(frame_len - len(x.audio) % frame_len) + x.audio = audioarray.trim( + x.audio, x.fs, limits=[0, -N_pad], samples=True + ) + + # add the convolved FOA/HOA2/HOA3 audio source signal to the intermediate SBA output signal + if y_int.audio is None: + # this is the first SBA source signal + y_int.audio = x.audio.copy() + + if source_shift > 0: + # insert zeros to the first SBA source signal to shift it right + y_int.audio = audioarray.trim( + y_int.audio, y_int.fs, limits=[-source_shift, 0], samples=True + ) + else: + offset = source_shift + else: + # shift the beginning of the audio source signal + delta_offset = source_shift - offset + if delta_offset < 0: + # insert zeros to the output SBA signal to shift it right + y_int.audio = audioarray.trim( + y_int.audio, y_int.fs, limits=[delta_offset, 0], samples=True + ) + offset = source_shift + else: + # insert zeros to the new SBA source signal to shift it right + x.audio = audioarray.trim( + x.audio, x.fs, limits=[-delta_offset, 0], samples=True + ) + + # adjust the length of the audio source signal + delta_length = len(x.audio) - len(y_int.audio) + if delta_length > 0: + # pad zeros to the output SBA signal + y_int.audio = audioarray.trim( + y_int.audio, y_int.fs, limits=[0, -delta_length], samples=True + ) + else: + # pad zeros to the new SBA source signal + x.audio = audioarray.trim( + x.audio, x.fs, limits=[0, delta_length], samples=True + ) + + # superimpose + y_int.audio += x.audio + + # append pre-amble and post-amble + if "preamble" in cfg.__dict__ or "postamble" in cfg.__dict__: + preamble = int( + np.floor(cfg.preamble * cfg.fs / frame_len) * frame_len + ) # convert to samples and ensure multiple of 20ms + postamble = int( + np.floor(cfg.postamble * cfg.fs / frame_len) * frame_len + ) # convert to samples and ensure multiple of 20ms + if preamble != 0 or postamble != 0: + logger.info( + f"-- Adding pre-amble of {cfg.preamble} seconds and post-amble of {cfg.postamble} seconds" + ) + y_int.audio = audioarray.trim( + y_int.audio, y_int.fs, limits=[-preamble, -postamble], samples=True + ) + + # trim the output signal if the total duration exceeds X seconds + if "duration" in cfg.__dict__: + # convert from seconds to samples (ensure multiple of 20ms) + duration = int(np.floor(int(cfg.duration * cfg.fs) / frame_len) * frame_len) + + # check if the current length of the output signal exceeds the duration + if len(y_int.audio) > duration: + y_int.audio = audioarray.trim( + y_int.audio, + y_int.fs, + limits=[0, len(y_int.audio) - duration], + samples=True, + ) + + # adjust the loudness of the output signal + if "loudness" in cfg.__dict__: + logger.info(f"-- Rescaling to target loudness: {cfg.loudness} LKFS") + y_int.audio, _ = loudness_norm(y_int, cfg.loudness, loudness_format="BINAURAL") + + # add background noise in FOA/HOA2/HOA3 format + if "background" in scene.keys(): + # check if [] are used in the background noise file name + if isinstance(scene["background"], list): + # if so, use the first element + background_filename = scene["background"][0] + else: + background_filename = scene["background"] + + # read the background noise file + background_filename = Path(scene["background"]).parent / ( + cfg.use_input_prefix + Path(scene["background"]).name + ) + logger.info(f"-- Adding background noise from {background_filename}") + background = audio.fromfile(IR_fmt, background_filename) + + # resample to the target fs if necessary + if background.fs != cfg.fs: + logger.warning( + f"Warning: Sample rate of the background noise is {background.fs} Hz and needs to be resampled to {cfg.fs}!" + ) + resampled_audio = audioarray.resample( + background.audio, background.fs, cfg.fs + ) + background.audio = resampled_audio + background.fs = cfg.fs + + # adjust the length of the background noise signal + if len(background.audio) != len(y_int.audio): + background.audio = audioarray.trim( + background.audio, + background.fs, + limits=[0, len(background.audio) - len(y_int.audio)], + samples=True, + ) + + # adjust the loudness of the background noise signal + if "background_level" in scene.keys(): + logger.info( + f"-- Rescaling background noise to target loudness: {scene['background_level']} LKFS" + ) + + # check if [] are used in the background level + if isinstance(scene["background_level"], list): + # if so, use the first element + scene["background_level"] = scene["background_level"][0] + + # convert to float if the background level was entered in string format + if not isinstance(scene["background_level"], (int, float)): + scene["background_level"] = float(scene["background_level"]) + else: + logger.warning( + "-- Warning: No target loudness for background noise specified, using default value of -26 LKFS" + ) + scene["background_level"] = -26 + background.audio, _ = loudness_norm( + background, scene["background_level"], loudness_format="STEREO", rms=True + ) + + # add the background noise to the output signal + y_int.audio += background.audio + elif ( + "add_low_level_random_noise" in cfg.__dict__ and cfg.add_low_level_random_noise + ): + # create uniformly distributed noise between -4 and 4 + np.random.seed(SEED_RANDOM_NOISE) + noise = np.random.randint(low=-4, high=5, size=y_int.audio.shape).astype( + "float" + ) + y_int.audio += noise + + # apply fade-in and fade-out + if "fade_in_out" in cfg.__dict__ and cfg.fade_in_out > 0: + logger.info(f"-- Applying fade-in and fade-out with {cfg.fade_in_out} seconds") + y_int.audio = audioarray.window(y_int.audio, y_int.fs, cfg.fade_in_out * 1000) + + # convert the intermediate SBA output signal to MC format + render_sba_to_cba(y_int, y) + + # write the MC audio signal to the output file + audiofile.write(output_filename, y.audio, y.fs) + + # convert the MC audio signal to BINAURAL, if option was chosen + if cfg.binaural_output: + binaural_output_filename = output_filename.with_name( + output_filename.stem + "_BINAURAL" + output_filename.suffix + ) + logger.info( + f"-- Converting to BINAURAL output file: {binaural_output_filename}" + ) + binaudio = audio.fromtype("BINAURAL") + binaudio.fs = y.fs + render_cba_to_binaural(y, binaudio) + audiofile.write( + binaural_output_filename, + binaudio.audio, + binaudio.fs, + ) diff --git a/ivas_processing_scripts/generation/generate_omasa_items.py b/ivas_processing_scripts/generation/generate_omasa_items.py index ed48c37b7ee3a7213bf0c0b868901dcf1e9a19d0..698b966cb1cba055132ebbc82e6dd2d32334ca47 100644 --- a/ivas_processing_scripts/generation/generate_omasa_items.py +++ b/ivas_processing_scripts/generation/generate_omasa_items.py @@ -31,15 +31,15 @@ # import logging +import re import sys from itertools import groupby, repeat from pathlib import Path import numpy as np - from ivas_processing_scripts.audiotools import audio, audioarray, audiofile, metadata from ivas_processing_scripts.audiotools.convert.omasa import convert_omasa -from ivas_processing_scripts.audiotools.convert.scenebased import render_sba_to_masa +from ivas_processing_scripts.audiotools.convert.osba import convert_osba from ivas_processing_scripts.audiotools.wrappers.bs1770 import loudness_norm from ivas_processing_scripts.generation import config from ivas_processing_scripts.utils import apply_func_parallel @@ -67,18 +67,11 @@ def replace_char_seq_with_string(str, char_seq, repl_str): return "".join(result) -# function for appending string to a filename before file extension -def append_str_filename(filename, str_to_append): - p = Path(filename) - # Combine the stem, the string to append, and the suffix - return p.parent / (p.stem + str_to_append + p.suffix) - - def generate_omasa_items( cfg: config.TestConfig, logger: logging.Logger, ): - """Generate OMASA items with metadata from FOA/HO2 and ISMn items based on scene description""" + """Generate OMASA items with metadata from FOA/HOA2/HOA3 and ISMn items based on scene description""" # set the fs if "fs" not in cfg.__dict__: @@ -183,12 +176,14 @@ def generate_OMASA_scene( # initialize output OMASA object y = audio.OMASAAudio(omasa_format) y.fs = cfg.fs + y_int = None # intermediate OSBA object # set the frame length frame_len = int(cfg.fs / 50) # repeat for all source files offset = 0 + end_position = [] for i in range(N_inputs): # parse parameters from the scene description source_file = ( @@ -226,16 +221,37 @@ def generate_OMASA_scene( if isinstance(scene["shift"], list) else scene["shift"] ) + + # check if shift is defined with X(i_ref) notation where X specifies the overlap value and i_ref is the index + # of the reference signal (0-based index) + if isinstance(scene["shift"][i], str) and "(" in scene["shift"][i]: + # extract X and i_ref + match = re.match( + r"([+-]?\d*\.?\d+)[\(\[]([+-]?\d+)[\)\]]", scene["shift"][i] + ) + + if match: + overlap = float(match.group(1)) + overlap_ref = int(match.group(2)) + else: + scene_shift_str = scene["shift"][i] + logger.error( + f"Unable to parse {scene_shift_str}. The specification of overlap or reference is incorrect!" + ) + sys.exit(-1) + + # calculate absolute shift of the source signal in seconds + source_shift = end_position[overlap_ref] + overlap else: source_shift = 0.0 - # convert overlap to samples and ensure it is a multiple of 20ms - source_shift_in_seconds = source_shift + # convert shift from seconds to samples and ensure it is a multiple of 20ms source_shift = source_shift * cfg.fs if source_shift >= 0: source_shift = int(np.floor(source_shift / frame_len) * frame_len) else: source_shift = int(np.ceil(source_shift / frame_len) * frame_len) + source_shift_in_seconds = source_shift / cfg.fs # read the level if "level" in scene.keys(): @@ -244,11 +260,28 @@ def generate_OMASA_scene( if isinstance(scene["level"], list) else scene["level"] ) + + # check if level is "-Inf" string or "N/A" or "n/a" or "NaN" + if isinstance(level, str): + if level.lower() in ["-inf"]: + level = -np.inf + elif level.lower() in ["none", "no", "", "null", "n/a", "na", "nan"]: + level = None + else: + # convert to float + try: + level = float(level) + except ValueError: + logger.error(f"Error: Level {level} is not a valid entry!") + sys.exit(-1) + elif isinstance(level, (int, float)): + # do nothing, it is already a number + pass else: level = -26 logger.info( - f"-- Encoding {source_file} at position(s) {source_azi},{source_ele} at {level} LUFS with shift of {source_shift_in_seconds} seconds" + f"-- Encoding {source_file} at position(s) {source_azi},{source_ele} at {level} LKFS with shift of {source_shift_in_seconds} seconds" ) # get the number of channels from the .wav file header @@ -261,19 +294,37 @@ def generate_OMASA_scene( fmt = "STEREO" elif N_channels == 4: fmt = "FOA" + sba_order = 1 elif N_channels == 9: fmt = "HOA2" + sba_order = 2 elif N_channels == 16: fmt = "HOA3" + sba_order = 3 else: logger.error( f"Error: Input format of the source file with {N_channels} channels is not supported!" ) sys.exit(-1) + # initialize intermediate OSBA object + if y_int is None: + if fmt not in ["FOA", "HOA2", "HOA3"]: + logger.error( + "Error: Expecting FOA/HOA2/HOA3 as the first file in the list!" + ) + sys.exit(-1) + + osba_format = f"ISM{N_ISMs}SBA{sba_order}" + y_int = audio.OSBAAudio(osba_format) + y_int.fs = cfg.fs + # read source file x = audio.fromfile(fmt, input_filename) + # record the total duration of the source signal, taking into account the shift of the starting position + end_position.append(x.audio.shape[0] / x.fs + source_shift_in_seconds) + # resample to the target fs if necessary if x.fs != cfg.fs: logger.warning( @@ -284,10 +335,17 @@ def generate_OMASA_scene( x.fs = cfg.fs # adjust the level of the source file - if fmt in ["FOA", "HOA2", "HOA3"]: - x.audio, _ = loudness_norm(x, level, loudness_format="STEREO") + if level is None: + # do not change the level of the audio source signal + logger.info("-- Level of the audio source signal is not changed") + elif np.isinf(level): + # set all channels to zero + x.audio = np.zeros_like(x.audio) else: - x.audio, _ = loudness_norm(x, level, loudness_format="MONO") + if fmt in ["FOA", "HOA2", "HOA3"]: + x.audio, _ = loudness_norm(x, level, loudness_format="STEREO") + else: + x.audio, _ = loudness_norm(x, level, loudness_format="MONO") # ensure the length of the audio source signal is a multiple of 20ms if len(x.audio) % frame_len != 0: @@ -301,18 +359,8 @@ def generate_OMASA_scene( # get the number of frames (multiple of 20ms) N_frames = int(len(x.audio) / frame_len) - # convert the input audio source signal to MASA or ISM - if fmt in ["FOA", "HOA2", "HOA3"]: - # convert FOA/HOA2/HOA3 to MASA - x_masa = audio.MetadataAssistedSpatialAudio( - f"MASA{cfg.masa_tc}DIR{cfg.masa_dirs}" - ) - x_masa.fs = cfg.fs - # generate MASA metadata filename (should end with .met) - x_masa.metadata_file = output_filename.with_suffix(".met") - render_sba_to_masa(x, x_masa) - x = x_masa # replace x with the MASA object - elif fmt == "MONO": + # convert the input MONO audio source signal to ISM1 object + if fmt == "MONO": # convert MONO to ISM1 x_ism = audio.ObjectBasedAudio("ISM1") # ISM with 1 channel x_ism.fs = cfg.fs @@ -389,50 +437,48 @@ def generate_OMASA_scene( x = x_ism # replace x with the ISM object - # copy new audio source signal to the OMASA object - if y.audio is None: - # add the first audio source signal (should be MASA) to the array of all source signals - y.audio = x.audio.copy() - - if "MASA" in x.name: - # if MASA, append metadata file to the OMASA object - y.metadata_files.append(x.metadata_file) - else: - # if ISM, append object position to the OMASA object - y.object_pos = x.object_pos.copy() + # copy new audio source signal to the intermediate OSBA object + if y_int.audio is None: + # add the first audio source signal (should be FOA/HOA2/HOA3) to the array of all source signals + y_int.audio = x.audio.copy() - if source_shift < 0: + if source_shift > 0: # insert zeros to the new audio source signal to shift it right - metadata.trim_meta(y, limits=[source_shift, 0], samples=True) + metadata.trim_meta(y_int, limits=[-source_shift, 0], samples=True) else: offset = source_shift else: # shift the beginning of the audio source signal delta_offset = source_shift - offset - if delta_offset > 0: - # insert zeros to the previous ISM signal(s) to shift them right - metadata.trim_meta(y, limits=[-delta_offset, 0], samples=True) + if delta_offset < 0: + # insert zeros to the existing intermediate OSBA object to shift it right + metadata.trim_meta(y_int, limits=[delta_offset, 0], samples=True) offset = source_shift else: # insert zeros to the new audio source signal to shift it right - metadata.trim_meta(x, limits=[delta_offset, 0], samples=True) + metadata.trim_meta(x, limits=[-delta_offset, 0], samples=True) # adjust the length of the audio source signal - delta_length = len(x.audio) - len(y.audio) + delta_length = len(x.audio) - len(y_int.audio) if delta_length > 0: - # pad zeros to the previous ISM signal(s) - metadata.trim_meta(y, limits=[0, -delta_length], samples=True) + # pad zeros to the existing intermediate OSBA object signal + metadata.trim_meta(y_int, limits=[0, -delta_length], samples=True) else: # pad zeros to the new audio source signal metadata.trim_meta(x, limits=[0, delta_length], samples=True) - # append ISM signal to the OMASA object (ISM comes first !!!) - y.audio = np.insert(y.audio, [i - 1], x.audio, axis=1) - y.object_pos.extend(x.object_pos) + # append ISM signal to the intermediate OSBA object (ISM comes first !!!) + y_int.audio = np.insert(y_int.audio, [i - 1], x.audio, axis=1) + y_int.object_pos.extend(x.object_pos) # add ISM metadata .csv filename (should end with .wav.0.csv, .wav.1.csv, ...) - y.metadata_files.insert( - i - 1, str(output_filename.with_suffix(f".{i - 1}.csv")) + y_int.metadata_files.insert( + i - 1, + str( + output_filename.with_suffix( + output_filename.suffix + f".{i - 1}.csv" + ) + ), ) # append pre-amble and post-amble @@ -447,43 +493,49 @@ def generate_OMASA_scene( logger.info( f"-- Adding pre-amble of {cfg.preamble} seconds and post-amble of {cfg.postamble} seconds" ) - metadata.trim_meta(y, limits=[-preamble, -postamble], samples=True) + metadata.trim_meta(y_int, limits=[-preamble, -postamble], samples=True) # add random noise if "add_low_level_random_noise" in cfg.__dict__ and cfg.add_low_level_random_noise: # create uniformly distributed noise between -4 and 4 np.random.seed(SEED_RANDOM_NOISE) noise = np.random.randint(low=-4, high=5, size=y.audio.shape).astype("float") - y.audio += noise + y_int.audio += noise - # adjust the length of the output signal + # trim the output signal if the total duration exceeds X seconds if "duration" in cfg.__dict__: - # trim the output signal such that the total duration is X seconds - duration = int(cfg.duration * cfg.fs) # convert to samples - else: - # do not change the length of the audio signal - duration = len(y.audio) - duration = int( - np.floor(duration / frame_len) * frame_len - ) # ensure multiple of 20ms - if len(y.audio) != duration: - metadata.trim_meta(y, limits=[0, len(y.audio) - duration], samples=True) + # convert from seconds to samples (ensure multiple of 20ms) + duration = int(np.floor(int(cfg.duration * cfg.fs) / frame_len) * frame_len) + + # check if the current length of the output signal exceeds the duration + if len(y_int.audio) > duration: + metadata.trim_meta( + y_int, limits=[0, len(y_int.audio) - duration], samples=True + ) # adjust the loudness of the output signal if "loudness" in cfg.__dict__: - logger.info(f"-- Rescaling to target loudness: {cfg.loudness} LUFS") - y.audio, _ = loudness_norm(y, cfg.loudness, loudness_format="BINAURAL") + logger.info(f"-- Rescaling to target loudness: {cfg.loudness} LKFS") + y_int.audio, _ = loudness_norm(y_int, cfg.loudness, loudness_format="BINAURAL") # apply fade-in and fade-out if "fade_in_out" in cfg.__dict__ and cfg.fade_in_out > 0: logger.info(f"-- Applying fade-in and fade-out with {cfg.fade_in_out} seconds") - y.audio = audioarray.window(y.audio, y.fs, cfg.fade_in_out * 1000) + y_int.audio = audioarray.window(y_int.audio, y_int.fs, cfg.fade_in_out * 1000) + + # generate and insert MASA metadata filename (should end with .met) + y.metadata_files.append( + str(output_filename.with_suffix(output_filename.suffix + ".met")) + ) + + # convert the intermediate OSBA object to OMASA object + convert_osba(y_int, y) # write the OMASA audio output to .wav file in an interleaved format and ISM metadata in .csv files audiofile.write(output_filename, y.audio, y.fs) metadata.write_ISM_metadata_in_file(y.object_pos, y.metadata_files[:-1]) - # convert to OMASA output to BINAURAL, if option was chosen + # convert the OMASA output to BINAURAL output, if option was chosen if cfg.binaural_output: binaural_output_filename = output_filename.with_name( output_filename.stem + "_BINAURAL" + output_filename.suffix diff --git a/ivas_processing_scripts/generation/generate_osba_items.py b/ivas_processing_scripts/generation/generate_osba_items.py index 815be0b563beda1b33dc37f6aef3af81f983af75..698d881d4ef1f26f00a7cd5f7e3cf5f2e8f79b64 100644 --- a/ivas_processing_scripts/generation/generate_osba_items.py +++ b/ivas_processing_scripts/generation/generate_osba_items.py @@ -31,12 +31,12 @@ # import logging +import re import sys from itertools import groupby, repeat from pathlib import Path import numpy as np - from ivas_processing_scripts.audiotools import audio, audioarray, audiofile, metadata from ivas_processing_scripts.audiotools.convert.osba import convert_osba from ivas_processing_scripts.audiotools.wrappers.bs1770 import loudness_norm @@ -187,6 +187,7 @@ def generate_OSBA_scene( # repeat for all source files offset = 0 + end_position = [] for i in range(N_inputs): # parse parameters from the scene description source_file = ( @@ -210,23 +211,44 @@ def generate_OSBA_scene( else scene["elevation"] ) - # read the overlap length + # read the source shift length (in seconds) if "shift" in scene.keys(): source_shift = ( scene["shift"][i] if isinstance(scene["shift"], list) else scene["shift"] ) + + # check if shift is defined with X(i_ref) notation where X specifies the overlap value and i_ref is the index + # of the reference signal (0-based index) + if isinstance(scene["shift"][i], str) and "(" in scene["shift"][i]: + # extract X and i_ref + match = re.match( + r"([+-]?\d*\.?\d+)[\(\[]([+-]?\d+)[\)\]]", scene["shift"][i] + ) + + if match: + overlap = float(match.group(1)) + overlap_ref = int(match.group(2)) + else: + scene_shift_str = scene["shift"][i] + logger.error( + f"Unable to parse {scene_shift_str}. The specification of overlap or reference is incorrect!" + ) + sys.exit(-1) + + # calculate absolute shift of the source signal in seconds + source_shift = end_position[overlap_ref] + overlap else: source_shift = 0.0 - # convert overlap to samples and ensure it is a multiple of 20ms - source_shift_in_seconds = source_shift + # convert shift from seconds to samples and ensure it is a multiple of 20ms source_shift = source_shift * cfg.fs if source_shift >= 0: source_shift = int(np.floor(source_shift / frame_len) * frame_len) else: source_shift = int(np.ceil(source_shift / frame_len) * frame_len) + source_shift_in_seconds = source_shift / cfg.fs # read the level if "level" in scene.keys(): @@ -235,11 +257,28 @@ def generate_OSBA_scene( if isinstance(scene["level"], list) else scene["level"] ) + + # check if level is "-Inf" string or "N/A" or "n/a" or "NaN" + if isinstance(level, str): + if level.lower() in ["-inf"]: + level = -np.inf + elif level.lower() in ["none", "no", "", "null", "n/a", "na", "nan"]: + level = None + else: + # convert to float + try: + level = float(level) + except ValueError: + logger.error(f"Error: Level {level} is not a valid entry!") + sys.exit(-1) + elif isinstance(level, (int, float)): + # do nothing, it is already a number + pass else: level = -26 logger.info( - f"-- Encoding {source_file} at position(s) {source_azi},{source_ele} at {level} LUFS with shift of {source_shift_in_seconds} seconds" + f"-- Encoding {source_file} at position(s) {source_azi},{source_ele} at {level} LKFS with shift of {source_shift_in_seconds} seconds" ) # get the number of channels from the .wav file header @@ -265,6 +304,9 @@ def generate_OSBA_scene( # read source file x = audio.fromfile(fmt, input_filename) + # record the total duration of the source signal, taking into account the shift of the starting position + end_position.append(x.audio.shape[0] / x.fs + source_shift_in_seconds) + # resample to the target fs if necessary if x.fs != cfg.fs: logger.warning( @@ -275,10 +317,17 @@ def generate_OSBA_scene( x.fs = cfg.fs # adjust the level of the source file - if fmt in ["FOA", "HOA2", "HOA3"]: - x.audio, _ = loudness_norm(x, level, loudness_format="STEREO") + if level is None: + # do not change the level of the audio source signal + logger.info("-- Level of the audio source signal is not changed") + elif np.isinf(level): + # set all channels to zero + x.audio = np.zeros_like(x.audio) else: - x.audio, _ = loudness_norm(x, level, loudness_format="MONO") + if fmt in ["FOA", "HOA2", "HOA3"]: + x.audio, _ = loudness_norm(x, level, loudness_format="STEREO") + else: + x.audio, _ = loudness_norm(x, level, loudness_format="MONO") # ensure the length of the audio source signal is a multiple of 20ms if len(x.audio) % frame_len != 0: @@ -379,21 +428,21 @@ def generate_OSBA_scene( # if ISM, append object position to the OSBA object y.object_pos = x.object_pos.copy() - if source_shift < 0: + if source_shift > 0: # insert zeros to the new audio source signal to shift it right - metadata.trim_meta(y, limits=[source_shift, 0], samples=True) + metadata.trim_meta(y, limits=[-source_shift, 0], samples=True) else: offset = source_shift else: # shift the beginning of the audio source signal delta_offset = source_shift - offset - if delta_offset > 0: + if delta_offset < 0: # insert zeros to the previous ISM signal(s) to shift them right - metadata.trim_meta(y, limits=[-delta_offset, 0], samples=True) + metadata.trim_meta(y, limits=[delta_offset, 0], samples=True) offset = source_shift else: # insert zeros to the new audio source signal to shift it right - metadata.trim_meta(x, limits=[delta_offset, 0], samples=True) + metadata.trim_meta(x, limits=[-delta_offset, 0], samples=True) # adjust the length of the audio source signal delta_length = len(x.audio) - len(y.audio) @@ -410,7 +459,12 @@ def generate_OSBA_scene( # add ISM metadata .csv filename (should end with .wav.0.csv, .wav.1.csv, ...) y.metadata_files.insert( - i - 1, str(output_filename.with_suffix(f".{i - 1}.csv")) + i - 1, + str( + output_filename.with_suffix( + output_filename.suffix + f".{i - 1}.csv" + ) + ), ) # append pre-amble and post-amble @@ -434,22 +488,18 @@ def generate_OSBA_scene( noise = np.random.randint(low=-4, high=5, size=y.audio.shape).astype("float") y.audio += noise - # adjust the length of the output signal + # trim the output signal if the total duration exceeds X seconds if "duration" in cfg.__dict__: - # trim the output signal such that the total duration is X seconds - duration = int(cfg.duration * cfg.fs) # convert to samples - else: - # do not change the length of the audio signal - duration = len(y.audio) - duration = int( - np.floor(duration / frame_len) * frame_len - ) # ensure multiple of 20ms - if len(y.audio) != duration: - metadata.trim_meta(y, limits=[0, len(y.audio) - duration], samples=True) + # convert from seconds to samples (ensure multiple of 20ms) + duration = int(np.floor(int(cfg.duration * cfg.fs) / frame_len) * frame_len) + + # check if the current length of the output signal exceeds the duration + if len(y.audio) > duration: + metadata.trim_meta(y, limits=[0, len(y.audio) - duration], samples=True) # adjust the loudness of the output signal if "loudness" in cfg.__dict__: - logger.info(f"-- Rescaling to target loudness: {cfg.loudness} LUFS") + logger.info(f"-- Rescaling to target loudness: {cfg.loudness} LKFS") y.audio, _ = loudness_norm(y, cfg.loudness, loudness_format="BINAURAL") # apply fade-in and fade-out diff --git a/ivas_processing_scripts/generation/generate_sba_items.py b/ivas_processing_scripts/generation/generate_sba_items.py index 6904f107245c3156e3c1dec2d59ef8d42a7d060a..e521f7ab9721c5f0dff77ed037d4476de0ff1634 100644 --- a/ivas_processing_scripts/generation/generate_sba_items.py +++ b/ivas_processing_scripts/generation/generate_sba_items.py @@ -31,12 +31,14 @@ # import logging +import re +import sys from itertools import groupby, repeat from pathlib import Path import numpy as np - from ivas_processing_scripts.audiotools import audio, audioarray, audiofile +from ivas_processing_scripts.audiotools.convert.objectbased import convert_objectbased from ivas_processing_scripts.audiotools.convert.scenebased import convert_scenebased from ivas_processing_scripts.audiotools.wrappers.bs1770 import loudness_norm from ivas_processing_scripts.audiotools.wrappers.reverb import ( @@ -200,36 +202,74 @@ def generate_sba_scene( # repeat for all source files offset = 0 + end_position = [] for i in range(N_inputs): # parse parameters from the scene description source_file = ( scene["input"][i] if isinstance(scene["input"], list) else scene["input"] ) - IR_file = scene["IR"][i] if isinstance(scene["IR"], list) else scene["IR"] - # get input filename and IR filename input_filename = Path(source_file).parent / ( cfg.use_input_prefix + Path(source_file).name ) - IR_filename = Path(IR_file).parent / (cfg.use_IR_prefix + Path(IR_file).name) - # read the overlap length + # get input filename and IR filename + if "IR" in scene.keys(): + IR_file = scene["IR"][i] if isinstance(scene["IR"], list) else scene["IR"] + IR_filename = Path(IR_file).parent / ( + cfg.use_IR_prefix + Path(IR_file).name + ) + else: + # read azimuth and elevation information + source_azi = ( + scene["azimuth"][i] + if isinstance(scene["azimuth"], list) + else scene["azimuth"] + ) + source_ele = ( + scene["elevation"][i] + if isinstance(scene["elevation"], list) + else scene["elevation"] + ) + + # read the source shift length (in seconds) if "shift" in scene.keys(): source_shift = ( scene["shift"][i] if isinstance(scene["shift"], list) else scene["shift"] ) + + # check if shift is defined with X(i_ref) notation where X specifies the overlap value and i_ref is the index + # of the reference signal (0-based index) + if isinstance(scene["shift"][i], str) and "(" in scene["shift"][i]: + # extract X and i_ref + match = re.match( + r"([+-]?\d*\.?\d+)[\(\[]([+-]?\d+)[\)\]]", scene["shift"][i] + ) + + if match: + overlap = float(match.group(1)) + overlap_ref = int(match.group(2)) + else: + scene_shift_str = scene["shift"][i] + logger.error( + f"Unable to parse {scene_shift_str}. The specification of overlap or reference is incorrect!" + ) + sys.exit(-1) + + # calculate absolute shift of the source signal in seconds + source_shift = end_position[overlap_ref] + overlap else: source_shift = 0.0 - # convert overlap to samples and ensure it is a multiple of 20ms - source_shift_in_seconds = source_shift + # convert shift from seconds to samples and ensure it is a multiple of 20ms source_shift = source_shift * cfg.fs if source_shift >= 0: source_shift = int(np.floor(source_shift / frame_len) * frame_len) else: source_shift = int(np.ceil(source_shift / frame_len) * frame_len) + source_shift_in_seconds = source_shift / cfg.fs # read the level if "level" in scene.keys(): @@ -238,16 +278,41 @@ def generate_sba_scene( if isinstance(scene["level"], list) else scene["level"] ) + + # check if level is "-Inf" string or "N/A" or "n/a" or "NaN" + if isinstance(level, str): + if level.lower() in ["-inf"]: + level = -np.inf + elif level.lower() in ["none", "no", "", "null", "n/a", "na", "nan"]: + level = None + else: + # convert to float + try: + level = float(level) + except ValueError: + logger.error(f"Error: Level {level} is not a valid entry!") + sys.exit(-1) + elif isinstance(level, (int, float)): + # do nothing, it is already a number + pass else: level = -26 - logger.info( - f"-- Convolving {source_file} with {IR_file} at {level} LUFS with shift of {source_shift_in_seconds} seconds" - ) + if "IR" in scene.keys(): + logger.info( + f"-- Convolving {source_file} with {IR_file} at {level} LKFS with shift of {source_shift_in_seconds} seconds" + ) + else: + logger.info( + f"-- Encoding {source_file} at position(s) {source_azi},{source_ele} at {level} LKFS with shift of {source_shift_in_seconds} seconds" + ) # read source file x = audio.fromfile("MONO", input_filename) + # record the total duration of the source signal, taking into account the shift of the starting position + end_position.append(x.audio.shape[0] / x.fs + source_shift_in_seconds) + # resample to the target fs if necessary if x.fs != cfg.fs: logger.warning( @@ -257,19 +322,15 @@ def generate_sba_scene( x.audio = resampled_audio x.fs = cfg.fs - # read the IR file (!must be in target format!) - IR = audio.fromfile(cfg.format, IR_filename) - - # convolve MONO source audio with FOA/HOA2/HOA3 IR -> results in FOA/HOA2/HOA3 audio object - if cfg.format == "FOA": - x = reverb_foa(x, IR) - elif cfg.format == "HOA2": - x = reverb_hoa2(x, IR) - elif cfg.format == "HOA3": - x = reverb_hoa3(x, IR) - # adjust the level of the FOA/HOA2/HOA3 signal - x.audio, _ = loudness_norm(x, level, loudness_format="STEREO") + if level is None: + # do not change the level of the audio source signal + logger.info("-- Level of the audio source signal is not changed") + elif np.isinf(level): + # set all channels to zero + x.audio = np.zeros_like(x.audio) + else: + x.audio, _ = loudness_norm(x, level, loudness_format="STEREO") # ensure the length of the audio source signal is a multiple of 20ms if len(x.audio) % frame_len != 0: @@ -280,31 +341,125 @@ def generate_sba_scene( x.audio, x.fs, limits=[0, -N_pad], samples=True ) + # get the number of frames (multiple of 20ms) + N_frames = int(len(x.audio) / frame_len) + + if "IR" in scene.keys(): + # read the IR file (!must be in target format!) + IR = audio.fromfile(cfg.format, IR_filename) + + # convolve MONO source audio with FOA/HOA2/HOA3 IR -> results in FOA/HOA2/HOA3 audio object + if cfg.format == "FOA": + x = reverb_foa(x, IR, mode=None, logger=logger) + elif cfg.format == "HOA2": + x = reverb_hoa2(x, IR, mode=None, logger=logger) + elif cfg.format == "HOA3": + x = reverb_hoa3(x, IR, mode=None, logger=logger) + else: + # convert MONO to ISM1 + x_ism = audio.ObjectBasedAudio("ISM1") # ISM with 1 channel + x_ism.fs = cfg.fs + x_ism.audio = x.audio.copy() + + # convert azimuth information in case of moving object + if isinstance(source_azi, str): + if ":" in source_azi: + # convert into array (initial_value:step:stop_value) + start_str, step_str, stop_str = source_azi.split(":") + start = float(eval(start_str)) + step = float(eval(step_str)) + stop = float(eval(stop_str)) + azi = np.arange(start, stop, step) + + # adjust length to N_frames + if len(azi) > N_frames: + azi = azi[:N_frames] + elif len(azi) < N_frames: + azi = np.append(azi, np.full(N_frames - len(azi), azi[-1])) + else: + # replicate static azimuth value N_frames times + azi = np.repeat(float(eval(source_azi)), N_frames) + else: + # replicate static azimuth value N_frames times + azi = np.repeat(float(source_azi), N_frames) + + # convert azimuth from 0 .. 360 to -180 .. +180 + azi = (azi + 180) % 360 - 180 + + # check if azimuth is from -180 .. +180 + if any(azi > 180) or any(azi < -180): + logger.error( + f"Incorrect value(s) of azimuth: {azi[(azi > 180) | (azi < -180)]}" + ) + + # convert elevation information in case mof moving object + if isinstance(source_ele, str): + if ":" in source_ele: + # convert into array (initial_value:step:stop_value) + start_str, step_str, stop_str = source_ele.split(":") + start = float(eval(start_str)) + step = float(eval(step_str)) + stop = float(eval(stop_str)) + ele = np.arange(start, stop, step) + + # adjust length to N_frames + if len(ele) > N_frames: + ele = ele[:N_frames] + elif len(ele) < N_frames: + ele = np.append(ele, np.full(N_frames - len(ele), ele[-1])) + + else: + # replicate static elevation value N_frames times + ele = np.repeat(float(eval(source_ele)), N_frames) + else: + # replicate static elevation value N_frames times + ele = np.repeat(float(source_ele), N_frames) + + # wrap elevation angle to -90 .. +90 + ele = ((ele + 90) % 180) - 90 + + # check if elevation is from -90 .. +90 + if any(ele > 90) or any(ele < -90): + logger.error( + f"Incorrect value(s) of elevation: {ele[(ele > 90) | (ele < -90)]}" + ) + + # generate radius vector with all values equal to 1.0 + rad = np.ones(N_frames) + + # arrange all metadata fields column-wise into a matrix + x_ism.object_pos.append(np.column_stack((azi, ele, rad))) + + # convert ISM1 object to SBA + x_sba = audio.SceneBasedAudio(cfg.format) + convert_objectbased(x_ism, x_sba) + x = x_sba # replace x with the SBA object + # add the convolved FOA/HOA2/HOA3 audio source signal to the output signal if y.audio is None: # add source signal to the array of all source signals y.audio = x.audio.copy() - if source_shift < 0: + if source_shift > 0: # insert zeros to the new audio source signal to shift it right - y.audio = audioarray.trim_meta( - y.audio, y.fs, limits=[source_shift, 0], samples=True + y.audio = audioarray.trim( + y.audio, y.fs, limits=[-source_shift, 0], samples=True ) else: offset = source_shift else: # shift the beginning of the audio source signal delta_offset = source_shift - offset - if delta_offset > 0: + if delta_offset < 0: # insert zeros to the existing output signal to shift it right y.audio = audioarray.trim( - y.audio, y.fs, limits=[0, -delta_offset], samples=True + y.audio, y.fs, limits=[delta_offset, 0], samples=True ) offset = source_shift else: # insert zeros to the new audio source signal to shift it right x.audio = audioarray.trim( - x.audio, x.fs, limits=[0, delta_offset], samples=True + x.audio, x.fs, limits=[-delta_offset, 0], samples=True ) # adjust the length of the audio source signal @@ -339,33 +494,91 @@ def generate_sba_scene( y.audio, y.fs, limits=[-preamble, -postamble], samples=True ) - # add random noise - if "add_low_level_random_noise" in cfg.__dict__ and cfg.add_low_level_random_noise: - # create uniformly distributed noise between -4 and 4 - np.random.seed(SEED_RANDOM_NOISE) - noise = np.random.randint(low=-4, high=5, size=y.audio.shape).astype("float") - y.audio += noise - - # adjust the length of the output signal + # trim the output signal if the total duration exceeds X seconds if "duration" in cfg.__dict__: - # trim the output signal such that the total duration is X seconds - duration = int(cfg.duration * cfg.fs) # convert to samples - else: - # do not change the length of the audio signal - duration = len(y.audio) - duration = int( - np.floor(duration / frame_len) * frame_len - ) # ensure multiple of 20ms - if len(y.audio) != duration: - y.audio = audioarray.trim( - y.audio, y.fs, limits=[0, len(y.audio) - duration], samples=True - ) + # convert from seconds to samples (ensure multiple of 20ms) + duration = int(np.floor(int(cfg.duration * cfg.fs) / frame_len) * frame_len) + + # check if the current length of the output signal exceeds the duration + if len(y.audio) > duration: + y.audio = audioarray.trim( + y.audio, y.fs, limits=[0, len(y.audio) - duration], samples=True + ) # adjust the loudness of the output signal if "loudness" in cfg.__dict__: - logger.info(f"-- Rescaling to target loudness: {cfg.loudness} LUFS") + logger.info(f"-- Rescaling to target loudness: {cfg.loudness} LKFS") y.audio, _ = loudness_norm(y, cfg.loudness, loudness_format="BINAURAL") + # add background noise in FOA/HOA2/HOA3 format + if "background" in scene.keys(): + # check if [] are used in the background noise file name + if isinstance(scene["background"], list): + # if so, use the first element + background_filename = scene["background"][0] + else: + background_filename = scene["background"] + + # read the background noise file + background_filename = Path(scene["background"]).parent / ( + cfg.use_input_prefix + Path(scene["background"]).name + ) + logger.info(f"-- Adding background noise from {background_filename}") + background = audio.fromfile(cfg.format, background_filename) + + # resample to the target fs if necessary + if background.fs != cfg.fs: + logger.warning( + f"Warning: Sample rate of the background noise is {background.fs} Hz and needs to be resampled to {cfg.fs}!" + ) + resampled_audio = audioarray.resample( + background.audio, background.fs, cfg.fs + ) + background.audio = resampled_audio + background.fs = cfg.fs + + # adjust the length of the background noise signal + if len(background.audio) != len(y.audio): + background.audio = audioarray.trim( + background.audio, + background.fs, + limits=[0, len(background.audio) - len(y.audio)], + samples=True, + ) + + # adjust the loudness of the background noise signal + if "background_level" in scene.keys(): + logger.info( + f"-- Rescaling background noise to target loudness: {scene['background_level']} LKFS" + ) + + # check if [] are used in the background level + if isinstance(scene["background_level"], list): + # if so, use the first element + scene["background_level"] = scene["background_level"][0] + + # convert to float if the background level was entered in string format + if not isinstance(scene["background_level"], (int, float)): + scene["background_level"] = float(scene["background_level"]) + else: + logger.warning( + "-- Warning: No target loudness for background noise specified, using default value of -26 LKFS" + ) + scene["background_level"] = -26 + background.audio, _ = loudness_norm( + background, scene["background_level"], loudness_format="STEREO", rms=True + ) + + # add the background noise to the output signal + y.audio += background.audio + elif ( + "add_low_level_random_noise" in cfg.__dict__ and cfg.add_low_level_random_noise + ): + # create uniformly distributed noise between -4 and 4 + np.random.seed(SEED_RANDOM_NOISE) + noise = np.random.randint(low=-4, high=5, size=y.audio.shape).astype("float") + y.audio += noise + # apply fade-in and fade-out if "fade_in_out" in cfg.__dict__ and cfg.fade_in_out > 0: logger.info(f"-- Applying fade-in and fade-out with {cfg.fade_in_out} seconds") diff --git a/ivas_processing_scripts/generation/generate_stereo_items.py b/ivas_processing_scripts/generation/generate_stereo_items.py index d6208096b5848aedc8f0eb26b526f1fc975aeb06..41e93c5694a160853702b86e8bc0d538f81b8942 100644 --- a/ivas_processing_scripts/generation/generate_stereo_items.py +++ b/ivas_processing_scripts/generation/generate_stereo_items.py @@ -32,11 +32,12 @@ import logging import os +import re +import sys from itertools import groupby, repeat from pathlib import Path import numpy as np - from ivas_processing_scripts.audiotools import audio, audioarray, audiofile from ivas_processing_scripts.audiotools.wrappers.bs1770 import loudness_norm from ivas_processing_scripts.audiotools.wrappers.reverb import reverb_stereo @@ -206,6 +207,7 @@ def generate_stereo_scene( # repeat for all source files offset = 0 + end_position = [] for i in range(N_inputs): # parse parameters from the scene description source_file = ( @@ -219,23 +221,44 @@ def generate_stereo_scene( ) IR_filename = Path(IR_file).parent / (cfg.use_IR_prefix + Path(IR_file).name) - # read the overlap length + # read the source shift length (in seconds) if "shift" in scene.keys(): source_shift = ( scene["shift"][i] if isinstance(scene["shift"], list) else scene["shift"] ) + + # check if shift is defined with X(i_ref) notation where X specifies the overlap value and i_ref is the index + # of the reference signal (0-based index) + if isinstance(scene["shift"][i], str) and "(" in scene["shift"][i]: + # extract X and i_ref + match = re.match( + r"([+-]?\d*\.?\d+)[\(\[]([+-]?\d+)[\)\]]", scene["shift"][i] + ) + + if match: + overlap = float(match.group(1)) + overlap_ref = int(match.group(2)) + else: + scene_shift_str = scene["shift"][i] + logger.error( + f"Unable to parse {scene_shift_str}. The specification of overlap or reference is incorrect!" + ) + sys.exit(-1) + + # calculate absolute shift of the source signal in seconds + source_shift = end_position[overlap_ref] + overlap else: source_shift = 0.0 - # convert overlap to samples and ensure it is a multiple of 20ms - source_shift_in_seconds = source_shift + # convert shift from seconds to samples and ensure it is a multiple of 20ms source_shift = source_shift * cfg.fs if source_shift >= 0: source_shift = int(np.floor(source_shift / frame_len) * frame_len) else: source_shift = int(np.ceil(source_shift / frame_len) * frame_len) + source_shift_in_seconds = source_shift / cfg.fs # read the level if "level" in scene.keys(): @@ -244,11 +267,28 @@ def generate_stereo_scene( if isinstance(scene["level"], list) else scene["level"] ) + + # check if level is "-Inf" string or "N/A" or "n/a" or "NaN" + if isinstance(level, str): + if level.lower() in ["-inf"]: + level = -np.inf + elif level.lower() in ["none", "no", "", "null", "n/a", "na", "nan"]: + level = None + else: + # convert to float + try: + level = float(level) + except ValueError: + logger.error(f"Error: Level {level} is not a valid entry!") + sys.exit(-1) + elif isinstance(level, (int, float)): + # do nothing, it is already a number + pass else: level = -26 logger.info( - f"-- Convolving {source_file} with {IR_file} at {level} LUFS with shift of {source_shift_in_seconds} seconds" + f"-- Convolving {source_file} with {IR_file} at {level} LKFS with shift of {source_shift_in_seconds} seconds" ) # read source file @@ -266,11 +306,21 @@ def generate_stereo_scene( # read the IR file (!must be in STEREO format!) IR = audio.fromfile("STEREO", IR_filename) + # record the total duration of the source signal, taking into account the shift of the starting position + end_position.append(x.audio.shape[0] / x.fs + source_shift_in_seconds) + # convolve MONO source audio with STEREO IR -> results in STEREO audio object - x = reverb_stereo(x, IR) + x = reverb_stereo(x, IR, mode=None, logger=logger) # adjust the level of the STEREO signal - x.audio, _ = loudness_norm(x, level, loudness_format="STEREO") + if level is None: + # do not change the level of the audio source signal + logger.info("-- Level of the audio source signal is not changed") + elif np.isinf(level): + # set all channels to zero + x.audio = np.zeros_like(x.audio) + else: + x.audio, _ = loudness_norm(x, level, loudness_format="STEREO") # ensure the length of the audio source signal is a multiple of 20ms if len(x.audio) % frame_len != 0: @@ -286,26 +336,26 @@ def generate_stereo_scene( # add source signal to the array of all source signals y.audio = x.audio.copy() - if source_shift < 0: + if source_shift > 0: # insert zeros to the new audio source signal to shift it right y.audio = audioarray.trim( - y.audio, x.fs, limits=[source_shift, 0], samples=True + y.audio, x.fs, limits=[-source_shift, 0], samples=True ) else: offset = source_shift else: # shift the beginning of the audio source signal delta_offset = source_shift - offset - if delta_offset > 0: + if delta_offset < 0: # insert zeros to the existing output signal to shift it right y.audio = audioarray.trim( - y.audio, y.fs, limits=[0, -delta_offset], samples=True + y.audio, y.fs, limits=[delta_offset, 0], samples=True ) offset = source_shift else: # insert zeros to the new audio source signal to shift it right x.audio = audioarray.trim( - x.audio, x.fs, limits=[0, delta_offset], samples=True + x.audio, x.fs, limits=[-delta_offset, 0], samples=True ) # adjust the length of the audio source signal @@ -340,33 +390,91 @@ def generate_stereo_scene( y.audio, y.fs, limits=[-preamble, -postamble], samples=True ) - # add random noise - if "add_low_level_random_noise" in cfg.__dict__ and cfg.add_low_level_random_noise: - # create uniformly distributed noise between -4 and 4 - np.random.seed(SEED_RANDOM_NOISE) - noise = np.random.randint(low=-4, high=5, size=y.audio.shape).astype("float") - y.audio += noise - - # adjust the length of the output signal + # trim the output signal if the total duration exceeds X seconds if "duration" in cfg.__dict__: - # trim the output signal such that the total duration is X seconds - duration = int(cfg.duration * cfg.fs) # convert to samples - else: - # do not change the length of the audio signal - duration = len(y.audio) - duration = int( - np.floor(duration / frame_len) * frame_len - ) # ensure multiple of 20ms - if len(y.audio) != duration: - y.audio = audioarray.trim( - y.audio, y.fs, limits=[0, len(y.audio) - duration], samples=True - ) + # convert from seconds to samples (ensure multiple of 20ms) + duration = int(np.floor(int(cfg.duration * cfg.fs) / frame_len) * frame_len) + + # check if the current length of the output signal exceeds the duration + if len(y.audio) > duration: + y.audio = audioarray.trim( + y.audio, y.fs, limits=[0, len(y.audio) - duration], samples=True + ) # adjust the loudness of the output signal if "loudness" in cfg.__dict__: - logger.info(f"-- Rescaling to target loudness: {cfg.loudness} LUFS") + logger.info(f"-- Rescaling to target loudness: {cfg.loudness} LKFS") y.audio, _ = loudness_norm(y, cfg.loudness, loudness_format="STEREO") + # add background noise in STEREO format + if "background" in scene.keys(): + # check if [] are used in the background noise file name + if isinstance(scene["background"], list): + # if so, use the first element + background_filename = scene["background"][0] + else: + background_filename = scene["background"] + + # read the background noise file + background_filename = Path(scene["background"]).parent / ( + cfg.use_input_prefix + Path(scene["background"]).name + ) + logger.info(f"-- Adding background noise from {background_filename}") + background = audio.fromfile("STEREO", background_filename) + + # resample to the target fs if necessary + if background.fs != cfg.fs: + logger.warning( + f"Warning: Sample rate of the background noise is {background.fs} Hz and needs to be resampled to {cfg.fs}!" + ) + resampled_audio = audioarray.resample( + background.audio, background.fs, cfg.fs + ) + background.audio = resampled_audio + background.fs = cfg.fs + + # adjust the length of the background noise signal + if len(background.audio) != len(y.audio): + background.audio = audioarray.trim( + background.audio, + background.fs, + limits=[0, len(background.audio) - len(y.audio)], + samples=True, + ) + + # adjust the loudness of the background noise signal + if "background_level" in scene.keys(): + logger.info( + f"-- Rescaling background noise to target loudness: {scene['background_level']} LKFS" + ) + + # check if [] are used in the background level + if isinstance(scene["background_level"], list): + # if so, use the first element + scene["background_level"] = scene["background_level"][0] + + # convert to float if the background level was entered in string format + if not isinstance(scene["background_level"], (int, float)): + scene["background_level"] = float(scene["background_level"]) + else: + logger.warning( + "-- Warning: No target loudness for background noise specified, using default value of -26 LKFS" + ) + scene["background_level"] = -26 + background.audio, _ = loudness_norm( + background, scene["background_level"], loudness_format="STEREO", rms=True + ) + + # add the background noise to the output signal + y.audio += background.audio + elif ( + "add_low_level_random_noise" in cfg.__dict__ and cfg.add_low_level_random_noise + ): + # create uniformly distributed noise between -4 and 4 + np.random.seed(SEED_RANDOM_NOISE) + noise = np.random.randint(low=-4, high=5, size=y.audio.shape).astype("float") + y.audio += noise + # apply fade-in and fade-out if "fade_in_out" in cfg.__dict__ and cfg.fade_in_out > 0: logger.info(f"-- Applying fade-in and fade-out with {cfg.fade_in_out} seconds") diff --git a/ivas_processing_scripts/generation/process_ambi_items.py b/ivas_processing_scripts/generation/process_ambi_items.py deleted file mode 100644 index 913fdcc4792cfd9793f1cfcf0213da33a4f30054..0000000000000000000000000000000000000000 --- a/ivas_processing_scripts/generation/process_ambi_items.py +++ /dev/null @@ -1,353 +0,0 @@ -#!/usr/bin/env python3 - -# -# (C) 2022-2025 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, -# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -# contributors to this repository. All Rights Reserved. -# -# This software is protected by copyright law and by international treaties. -# The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, -# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -# contributors to this repository retain full ownership rights in their respective contributions in -# the software. This notice grants no license of any kind, including but not limited to patent -# license, nor is any license granted by implication, estoppel or otherwise. -# -# Contributors are required to enter into the IVAS codec Public Collaboration agreement before making -# contributions. -# -# This software is provided "AS IS", without any express or implied warranties. The software is in the -# development stage. It is intended exclusively for experts who have experience with such software and -# solely for the purpose of inspection. All implied warranties of non-infringement, merchantability -# and fitness for a particular purpose are hereby disclaimed and excluded. -# -# Any dispute, controversy or claim arising under or in relation to providing this software shall be -# submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in -# accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and -# the United Nations Convention on Contracts on the International Sales of Goods. -# - -import logging -import os -from itertools import groupby, repeat -from math import floor - -import numpy as np - -from ivas_processing_scripts.audiotools import audio, audiofile, convert -from ivas_processing_scripts.audiotools.wrappers.bs1770 import get_loudness -from ivas_processing_scripts.audiotools.wrappers.reverb import reverb_foa, reverb_hoa2 -from ivas_processing_scripts.generation import config -from ivas_processing_scripts.utils import apply_func_parallel - -SEED_RANDOM_NOISE = 0 - - -# function for converting nd numpy array to strings with 2 decimal digits -def csv_formatdata(data): - for row in data: - yield ["%0.2f" % v for v in row] - - -# function for searching sequences of same the same character and replacing it by another string -def replace_char_seq_with_string(str, char_seq, repl_str): - result = [] - - # find groups of consecutive letters - groups = ["".join(list(g)) for k, g in groupby(str)] - - # limit the length of the replacement string by the length of the character sequence - repl_str = repl_str[: len(char_seq)] - - # replace each occurence of the sequence of characters - for g in groups: - if char_seq in g: - result.append(repl_str) - else: - result.append(g) - - return "".join(result) - - -def generate_ambi_items( - cfg: config.TestConfig, - logger: logging.Logger, -): - """Generate FOA/HOA2 items from mono items based on scene description""" - - # set the target level - if "loudness" not in cfg.__dict__: - cfg.loudness = -26 - - # set the fs - if "fs" not in cfg.__dict__: - cfg.fs = 48000 - - # set the IR fs - if "IR_fs" not in cfg.__dict__: - cfg.IR_fs = 48000 - - # set the pre-amble and post-amble - if "preamble" not in cfg.__dict__: - cfg.preamble = 0.0 - - if "postamble" not in cfg.__dict__: - cfg.postamble = 0.0 - - # set the IR path - if "IR_path" not in cfg.__dict__: - cfg.IR_path = os.path.join(os.path.dirname(__file__), "IR") - - # set the pre-amble and post-amble - if "add_low_level_random_noise" not in cfg.__dict__: - cfg.add_low_level_random_noise = False - - # setup binaural rendering - if "binaural_path" not in cfg.__dict__: - cfg.binaural_path = "" - - # set the listening lab designator - if "listening_lab" not in cfg.__dict__: - cfg.listening_lab = "l" - - # set the language designator - if "language" not in cfg.__dict__: - cfg.language = "EN" - - # set the experiment designator - if "exp" not in cfg.__dict__: - cfg.exp = "p04" - - # set the provider - if "provider" not in cfg.__dict__: - cfg.provider = "g" - - # set the prefix for all input filenames - if "use_input_prefix" not in cfg.__dict__: - cfg.use_input_prefix = "" - else: - # replace file designators - cfg.use_input_prefix = replace_char_seq_with_string( - cfg.use_input_prefix, "l", cfg.listening_lab - ) - cfg.use_input_prefix = replace_char_seq_with_string( - cfg.use_input_prefix, "LL", cfg.language - ) - cfg.use_input_prefix = replace_char_seq_with_string( - cfg.use_input_prefix, "eee", cfg.exp - ) - - # set the prefix for all IR filenames - if "use_IR_prefix" not in cfg.__dict__: - cfg.use_IR_prefix = "" - else: - # replace file designators - cfg.use_IR_prefix = replace_char_seq_with_string( - cfg.use_IR_prefix, "p", cfg.provider - ) - cfg.use_IR_prefix = replace_char_seq_with_string( - cfg.use_IR_prefix, "LL", cfg.language - ) - cfg.use_IR_prefix = replace_char_seq_with_string( - cfg.use_IR_prefix, "eee", cfg.exp - ) - - # set the prefix for all output filenames - if "use_output_prefix" not in cfg.__dict__: - cfg.use_output_prefix = None - else: - # replace file designators - cfg.use_output_prefix = replace_char_seq_with_string( - cfg.use_output_prefix, "l", cfg.listening_lab - ) - cfg.use_output_prefix = replace_char_seq_with_string( - cfg.use_output_prefix, "eee", cfg.exp - ) - - # set multiprocessing - if "multiprocessing" not in cfg.__dict__: - cfg.multiprocessing = True - - apply_func_parallel( - generate_ambi_scene, - zip(cfg.scenes.keys(), cfg.scenes.values(), repeat(cfg), repeat(logger)), - None, - "mp" if cfg.multiprocessing else None, - ) - - return - - -def generate_ambi_scene( - scene_name: str, scene: dict, cfg: config.TestConfig, logger: logging.Logger -): - logger.info( - f"Processing scene: {scene_name} out of {len(cfg.scenes)} scenes, name: {scene['name']}" - ) - - # extract the number of audio sources - N_sources = len(np.atleast_1d(scene["source"])) - - # read the overlap length - if "overlap" in scene.keys(): - source_overlap = float(scene["overlap"]) - else: - source_overlap = 0.0 - - # read the ambi format - if "format" in scene.keys(): - ambi_format = scene["format"] - else: - ambi_format = "FOA" - - len_s1 = 0 - y = audio.SceneBasedAudio(ambi_format) - for i in range(N_sources): - # parse parameters from the scene description - source_file = np.atleast_1d(scene["source"])[i] - IR_file = np.atleast_1d(scene["IR"])[i] - - logger.info(f"Convolving {source_file} with {IR_file}") - - # read source file - x = audio.fromfile( - "MONO", - os.path.join( - cfg.input_path, - os.path.dirname(source_file), - cfg.use_input_prefix + os.path.basename(source_file), - ), - fs=cfg.fs, - ) - - # read the IR file - IR = audio.fromfile( - ambi_format, - os.path.join( - cfg.IR_path, - os.path.dirname(IR_file), - cfg.use_IR_prefix + os.path.basename(IR_file), - ), - fs=cfg.IR_fs, - ) - - if i == 0: - len_s1 = x.audio.shape[0] - - # convolve with the FOA/HOA2 IR - if ambi_format == "FOA": - x = reverb_foa(x, IR) - elif ambi_format == "HOA2": - x = reverb_hoa2(x, IR) - - # adjust the level of the foa signal - _, scale_factor, _ = get_loudness(x, cfg.loudness, "BINAURAL") - x.audio *= scale_factor - - # shift the second (and all other) source files (positive shift creates overlap, negative shift creates a gap) - if i > 0: - # get the length of the first source file - N_delay = len_s1 - - # add the shift - N_delay += int(-source_overlap * x.fs) - - # insert all-zero preamble - pre = np.zeros((N_delay, x.audio.shape[1])) - x.audio = np.concatenate([pre, x.audio]) - - # pad with zeros to ensure that the signal length is a multiple of 20ms - N_frame = x.fs / 50 - if len(x.audio) % N_frame != 0: - N_pad = int(N_frame - len(x.audio) % N_frame) - - # insert all-zero preamble - pre = np.zeros((N_pad, x.audio.shape[1])) - x.audio = np.concatenate([pre, x.audio]) - - # add source signal to the array of source signals - y.fs = x.fs - if y.audio is None: - y.audio = x.audio.copy() - else: - # pad with zeros to have equal length of all source signals - if x.audio.shape[0] > y.audio.shape[0]: - y.audio = np.vstack( - ( - y.audio, - np.zeros( - ( - x.audio.shape[0] - y.audio.shape[0], - y.audio.shape[1], - ) - ), - ) - ) - elif y.audio.shape[0] > x.audio.shape[0]: - x.audio = np.vstack( - ( - x.audio, - np.zeros( - ( - y.audio.shape[0] - x.audio.shape[0], - x.audio.shape[1], - ) - ), - ) - ) - - # superimpose - y.audio += x.audio - - # append pre-amble and post-amble to all sources - if cfg.preamble != 0.0: - # ensure that pre-amble is a multiple of 20ms - N_pre = int(floor(cfg.preamble * 50) / 50 * y.fs) - - # insert all-zero preamble to all sources - pre = np.zeros((N_pre, y.audio.shape[1])) - y.audio = np.concatenate([pre, y.audio]) - - if cfg.postamble != 0.0: - # ensure that post-mable is a multiple of 20ms - N_post = int(floor(cfg.postamble * 50) / 50 * y.fs) - - # append all-zero postamble to all sources - post = np.zeros((N_post, y.audio.shape[1])) - y.audio = np.concatenate([y.audio, post]) - - # add random noise - if cfg.add_low_level_random_noise: - # create uniformly distributed noise between -4 and 4 - np.random.seed(SEED_RANDOM_NOISE) - noise = np.random.randint(low=-4, high=5, size=y.audio.shape).astype("float") - - # superimpose - y.audio += noise - - # write the reverberated audio into output file - audiofile.write( - os.path.join( - cfg.output_path, - os.path.dirname(scene["name"]), - cfg.use_output_prefix + os.path.basename(scene["name"]), - ), - y.audio, - y.fs, - ) - - # convert to binaural if option chosen - if cfg.binaural_path != "": - binaudio = audio.fromtype("BINAURAL") - binaudio.fs = y.fs - convert.format_conversion(y, binaudio) - audiofile.write( - os.path.join(cfg.binaural_path, scene["name"]), - binaudio.audio, - binaudio.fs, - ) - - return diff --git a/ivas_processing_scripts/generation/process_ism1_items.py b/ivas_processing_scripts/generation/process_ism1_items.py deleted file mode 100644 index ac1f273e417200b3b95cec2e8e2b38d73496cc38..0000000000000000000000000000000000000000 --- a/ivas_processing_scripts/generation/process_ism1_items.py +++ /dev/null @@ -1,356 +0,0 @@ -#!/usr/bin/env python3 - -# -# (C) 2022-2025 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, -# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -# contributors to this repository. All Rights Reserved. -# -# This software is protected by copyright law and by international treaties. -# The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, -# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -# contributors to this repository retain full ownership rights in their respective contributions in -# the software. This notice grants no license of any kind, including but not limited to patent -# license, nor is any license granted by implication, estoppel or otherwise. -# -# Contributors are required to enter into the IVAS codec Public Collaboration agreement before making -# contributions. -# -# This software is provided "AS IS", without any express or implied warranties. The software is in the -# development stage. It is intended exclusively for experts who have experience with such software and -# solely for the purpose of inspection. All implied warranties of non-infringement, merchantability -# and fitness for a particular purpose are hereby disclaimed and excluded. -# -# Any dispute, controversy or claim arising under or in relation to providing this software shall be -# submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in -# accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and -# the United Nations Convention on Contracts on the International Sales of Goods. -# - -import csv -import logging -import os -from itertools import groupby, repeat -from math import floor - -import numpy as np - -from ivas_processing_scripts.audiotools import audio, audiofile -from ivas_processing_scripts.audiotools.wrappers.bs1770 import get_loudness -from ivas_processing_scripts.generation import config -from ivas_processing_scripts.utils import apply_func_parallel - -SEED_RANDOM_NOISE = 0 - - -# function for converting nd numpy array to strings with 2 decimal digits -def csv_formatdata(data): - for row in data: - yield ["%0.2f" % v for v in row] - - -# function for searching sequences of same the same character and replacing it by another string -def replace_char_seq_with_string(str, char_seq, repl_str): - result = [] - - # find groups of consecutive letters - groups = ["".join(list(g)) for k, g in groupby(str)] - - # limit the length of the replacement string by the length of the character sequence - repl_str = repl_str[: len(char_seq)] - - # replace each occurence of the sequence of characters - for g in groups: - if char_seq in g: - result.append(repl_str) - else: - result.append(g) - - return "".join(result) - - -def generate_ism1_items( - cfg: config.TestConfig, - logger: logging.Logger, -): - """Generate ISM2 items with metadata from mono items based on scene description""" - - # set the target level - if "loudness" not in cfg.__dict__: - cfg.loudness = -26 - - # set the fs - if "fs" not in cfg.__dict__: - cfg.fs = 48000 - - # set the pre-amble and post-amble - if "preamble" not in cfg.__dict__: - cfg.preamble = 0.0 - - if "postamble" not in cfg.__dict__: - cfg.postamble = 0.0 - - # set the pre-amble and post-amble - if "add_low_level_random_noise" not in cfg.__dict__: - cfg.add_low_level_random_noise = False - - # set the listening lab designator - if "listening_lab" not in cfg.__dict__: - cfg.listening_lab = "l" - - # set the language designator - if "language" not in cfg.__dict__: - cfg.language = "EN" - - # set the experiment designator - if "exp" not in cfg.__dict__: - cfg.exp = "p06" - - # set the provider - if "provider" not in cfg.__dict__: - cfg.provider = "g" - - # set the prefix for all input filenames - if "use_input_prefix" not in cfg.__dict__: - cfg.use_input_prefix = "" - else: - # replace file designators - cfg.use_input_prefix = replace_char_seq_with_string( - cfg.use_input_prefix, "l", cfg.listening_lab - ) - cfg.use_input_prefix = replace_char_seq_with_string( - cfg.use_input_prefix, "LL", cfg.language - ) - cfg.use_input_prefix = replace_char_seq_with_string( - cfg.use_input_prefix, "eee", cfg.exp - ) - - # set the prefix for all output filenames - if "use_output_prefix" not in cfg.__dict__: - cfg.use_output_prefix = None - else: - # replace file designators - cfg.use_output_prefix = replace_char_seq_with_string( - cfg.use_output_prefix, "l", cfg.listening_lab - ) - cfg.use_output_prefix = replace_char_seq_with_string( - cfg.use_output_prefix, "eee", cfg.exp - ) - - # set multiprocessing - if "multiprocessing" not in cfg.__dict__: - cfg.multiprocessing = True - - apply_func_parallel( - generate_ism1_scene, - zip(cfg.scenes.keys(), cfg.scenes.values(), repeat(cfg), repeat(logger)), - None, - "mp" if cfg.multiprocessing else None, - ) - - return - - -def generate_ism1_scene( - scene_name: str, scene: dict, cfg: config.TestConfig, logger: logging.Logger -): - logger.info( - f"Processing {scene_name} out of {len(cfg.scenes)} scenes, name: {scene['name']}" - ) - - # extract the number of audio sources - N_sources = len(np.atleast_1d(scene["source"])) - - # initialize output arrays - y = audio.ChannelBasedAudio("MONO") - y_meta = None - - # read the overlap length - if "overlap" in scene.keys(): - source_overlap = float(scene["overlap"]) - else: - source_overlap = 0.0 - - logger.info( - f"Encoding {scene['source']} at position(s) {scene['azimuth']},{scene['elevation']}" - ) - - # repeat for all source files - for i in range(N_sources): - # parse parameters from the scene description - source_file = ( - scene["source"][i] if isinstance(scene["source"], list) else scene["source"] - ) - - # read source file - x = audio.fromfile( - "MONO", - os.path.join( - cfg.input_path, - os.path.dirname(source_file), - cfg.use_input_prefix + os.path.basename(source_file), - ), - fs=cfg.fs, - ) - - # get the number of frames (multiple of 20ms) - N_frames = int(len(x.audio) / x.fs * 50) - frame_len = int(x.fs / 50) - - # trim the samples from the end to ensure that the signal length is a multiple of 20ms - x.audio = x.audio[: N_frames * frame_len] - - # adjust the level of the source file - _, scale_factor, _ = get_loudness(x, cfg.loudness, "MONO") - x.audio *= scale_factor - - # shift the second (and all other) source files (positive shift creates overlap, negative shift creates a gap) - if i > 0: - # get the length of the first source file - N_delay = len(y.audio) - - # add the shift value (ensure that the shift is a multiple of 20ms) - N_delay += int(floor(-source_overlap * 50) / 50 * x.fs) - - # insert all-zero signal - pre = np.zeros((N_delay, 1)) - x.audio = np.concatenate([pre, x.audio]) - - # pad with zeros to ensure that the signal length is a multiple of 20ms - if len(x.audio) % frame_len != 0: - # pad the source signal - N_pad = int(frame_len - len(x.audio) % frame_len) - post = np.zeros((N_pad, 1)) - x.audio = np.concatenate([x.audio, post]) - - # superimpose all source signals together - y.fs = x.fs - if y.audio is None: - y.audio = x.audio.copy() - else: - y.audio.resize(x.audio.shape, refcheck=False) - y.audio += x.audio - - # append pre-amble and post-amble to all sources - if cfg.preamble != 0.0: - # ensure that pre-amble is a multiple of 20ms - N_pre = int(floor(cfg.preamble * 50) / 50 * y.fs) - - # insert all-zero preamble to all sources - pre = np.zeros((N_pre, y.audio.shape[1])) - y.audio = np.concatenate([pre, y.audio]) - - if cfg.postamble != 0.0: - # ensure that post-amble is a multiple of 20ms - N_post = int(floor(cfg.postamble * 50) / 50 * y.fs) - - # append all-zero postamble to all sources - post = np.zeros((N_post, y.audio.shape[1])) - y.audio = np.concatenate([y.audio, post]) - - # add random noise - if cfg.add_low_level_random_noise: - # create uniformly distributed noise between -4 and 4 - np.random.seed(SEED_RANDOM_NOISE) - noise = np.random.randint(low=-4, high=5, size=y.audio.shape).astype("float") - - # superimpose - y.audio += noise - - # process azimuth and elevation - source_azi = scene["azimuth"] - source_ele = scene["elevation"] - - N_frames = int(len(y.audio) / y.fs * 50) - - # read azimuth information and convert to an array - if isinstance(source_azi, str): - if ":" in source_azi: - # start with the initial azimuth value and apply step N_frames times - source_azi = source_azi.split(":") - azi = np.arange( - float(eval(source_azi[0])), - float(eval(source_azi[0])) + N_frames * float(eval(source_azi[1])), - float(eval(source_azi[1])), - ) - else: - # replicate static azimuth value N_frames times - azi = np.repeat(float(eval(source_azi)), N_frames) - else: - # replicate static azimuth value N_frames times - azi = np.repeat(float(source_azi), N_frames) - - # convert azimuth from 0 .. 360 to -180 .. +180 - azi = (azi + 180) % 360 - 180 - - # check, if azimuth is from -180 .. +180 - if any(azi > 180) or any(azi < -180): - logger.error( - f"Incorrect value(s) of azimuth: {azi[(azi > 180) | (azi < -180)]}" - ) - - # read elevation information and convert to an array - if isinstance(source_ele, str): - if ":" in source_ele: - # convert into array (initial_value:step:stop_value) - # note: the stop_value value is +-90 degrees depending on the sign of the step - source_ele = source_ele.split(":") - ele = np.arange( - float(eval(source_ele[0])), - np.sign(float(eval(source_ele[1]))) * 90, - float(eval(source_ele[1])), - )[:N_frames] - - # repeat the last elevation value, if array is shorter than N_frames - if len(ele) < N_frames: - ele = np.append(ele, np.full(N_frames - len(ele), ele[-1])) - else: - # replicate static elevation value N_frames times - ele = np.repeat(float(eval(source_ele)), N_frames) - else: - # replicate static elevation value N_frames times - ele = np.repeat(float(source_ele), N_frames) - - # check if elevation is from -90 .. +90 - if any(ele > 90) or any(ele < -90): - logger.error( - f"Incorrect value(s) of elevation: {ele[(ele > 90) | (ele < -90)]}" - ) - - # arrange all metadata fields column-wise into a matrix - y_meta = np.column_stack((azi, ele)) - - # write ISM audio stream to the output file - audiofile.write( - os.path.join( - cfg.output_path, - os.path.dirname(scene["name"]), - cfg.use_output_prefix + os.path.basename(scene["name"]), - ), - y.audio, - y.fs, - ) - - # write ISM metadata to the output file in .0.csv format - csv_filename = os.path.join( - cfg.output_path, - os.path.dirname(scene["name"]), - cfg.use_output_prefix + os.path.basename(scene["name"]) + ".0.csv", - ) - - with open( - csv_filename, - "w", - newline="", - encoding="utf-8", - ) as f: - # create csv writer - writer = csv.writer(f) - - # write all rows to the .csv file - writer.writerows(csv_formatdata(y_meta)) - - return diff --git a/ivas_processing_scripts/generation/process_ism2_items.py b/ivas_processing_scripts/generation/process_ism2_items.py deleted file mode 100644 index e944ca2c5e88bd1d40e0343b290dd23df7a28f1c..0000000000000000000000000000000000000000 --- a/ivas_processing_scripts/generation/process_ism2_items.py +++ /dev/null @@ -1,400 +0,0 @@ -#!/usr/bin/env python3 - -# -# (C) 2022-2025 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, -# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -# contributors to this repository. All Rights Reserved. -# -# This software is protected by copyright law and by international treaties. -# The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, -# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -# contributors to this repository retain full ownership rights in their respective contributions in -# the software. This notice grants no license of any kind, including but not limited to patent -# license, nor is any license granted by implication, estoppel or otherwise. -# -# Contributors are required to enter into the IVAS codec Public Collaboration agreement before making -# contributions. -# -# This software is provided "AS IS", without any express or implied warranties. The software is in the -# development stage. It is intended exclusively for experts who have experience with such software and -# solely for the purpose of inspection. All implied warranties of non-infringement, merchantability -# and fitness for a particular purpose are hereby disclaimed and excluded. -# -# Any dispute, controversy or claim arising under or in relation to providing this software shall be -# submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in -# accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and -# the United Nations Convention on Contracts on the International Sales of Goods. -# - -import csv -import logging -import os -from itertools import groupby, repeat -from math import floor - -import numpy as np - -from ivas_processing_scripts.audiotools import audio, audiofile -from ivas_processing_scripts.audiotools.wrappers.bs1770 import get_loudness -from ivas_processing_scripts.generation import config -from ivas_processing_scripts.utils import apply_func_parallel - -SEED_RANDOM_NOISE = 0 - - -# function for converting nd numpy array to strings with 2 decimal digits -def csv_formatdata(data): - for row in data: - yield ["%0.2f" % v for v in row] - - -# function for searching sequences of same the same character and replacing it by another string -def replace_char_seq_with_string(str, char_seq, repl_str): - result = [] - - # find groups of consecutive letters - groups = ["".join(list(g)) for k, g in groupby(str)] - - # limit the length of the replacement string by the length of the character sequence - repl_str = repl_str[: len(char_seq)] - - # replace each occurence of the sequence of characters - for g in groups: - if char_seq in g: - result.append(repl_str) - else: - result.append(g) - - return "".join(result) - - -def generate_ism2_items( - cfg: config.TestConfig, - logger: logging.Logger, -): - """Generate ISM2 items with metadata from mono items based on scene description""" - - # set the target level - if "loudness" not in cfg.__dict__: - cfg.loudness = -26 - - # set the fs - if "fs" not in cfg.__dict__: - cfg.fs = 48000 - - # set the pre-amble and post-amble - if "preamble" not in cfg.__dict__: - cfg.preamble = 0.0 - - if "postamble" not in cfg.__dict__: - cfg.postamble = 0.0 - - # set the pre-amble and post-amble - if "add_low_level_random_noise" not in cfg.__dict__: - cfg.add_low_level_random_noise = False - - # set the listening lab designator - if "listening_lab" not in cfg.__dict__: - cfg.listening_lab = "l" - - # set the language designator - if "language" not in cfg.__dict__: - cfg.language = "EN" - - # set the experiment designator - if "exp" not in cfg.__dict__: - cfg.exp = "p07" - - # set the provider - if "provider" not in cfg.__dict__: - cfg.provider = "g" - - # set the prefix for all input filenames - if "use_input_prefix" not in cfg.__dict__: - cfg.use_input_prefix = "" - else: - # replace file designators - cfg.use_input_prefix = replace_char_seq_with_string( - cfg.use_input_prefix, "l", cfg.listening_lab - ) - cfg.use_input_prefix = replace_char_seq_with_string( - cfg.use_input_prefix, "LL", cfg.language - ) - cfg.use_input_prefix = replace_char_seq_with_string( - cfg.use_input_prefix, "eee", cfg.exp - ) - - # set the prefix for all output filenames - if "use_output_prefix" not in cfg.__dict__: - cfg.use_output_prefix = None - else: - # replace file designators - cfg.use_output_prefix = replace_char_seq_with_string( - cfg.use_output_prefix, "l", cfg.listening_lab - ) - cfg.use_output_prefix = replace_char_seq_with_string( - cfg.use_output_prefix, "eee", cfg.exp - ) - - # set multiprocessing - if "multiprocessing" not in cfg.__dict__: - cfg.multiprocessing = True - - apply_func_parallel( - generate_ism2_scene, - zip(cfg.scenes.keys(), cfg.scenes.values(), repeat(cfg), repeat(logger)), - None, - "mp" if cfg.multiprocessing else None, - ) - - return - - -def generate_ism2_scene( - scene_name: str, scene: dict, cfg: config.TestConfig, logger: logging.Logger -): - logger.info( - f"Processing {scene_name} out of {len(cfg.scenes)} scenes, name: {scene['name']}" - ) - - # extract the number of audio sources - N_sources = len(np.atleast_1d(scene["source"])) - - # initialize output arrays - y = audio.ChannelBasedAudio("STEREO") - y_meta = None - - # read the overlap length - if "overlap" in scene.keys(): - source_overlap = float(scene["overlap"]) - else: - source_overlap = 0.0 - - # repeat for all source files - for i in range(N_sources): - # parse parameters from the scene description - source_file = ( - scene["source"][i] if isinstance(scene["source"], list) else scene["source"] - ) - source_azi = ( - scene["azimuth"][i] - if isinstance(scene["azimuth"], list) - else scene["azimuth"] - ) - source_ele = ( - scene["elevation"][i] - if isinstance(scene["elevation"], list) - else scene["elevation"] - ) - - logger.info(f"Encoding {source_file} at position(s) {source_azi},{source_ele}") - - # read source file - x = audio.fromfile( - "MONO", - os.path.join( - cfg.input_path, - os.path.dirname(source_file), - cfg.use_input_prefix + os.path.basename(source_file), - ), - fs=cfg.fs, - ) - - # get the number of frames (multiple of 20ms) - N_frames = int(len(x.audio) / x.fs * 50) - frame_len = int(x.fs / 50) - - # trim the samples from the end to ensure that the signal length is a multiple of 20ms - x.audio = x.audio[: N_frames * frame_len] - - # adjust the level of the source file - _, scale_factor, _ = get_loudness(x, cfg.loudness, "MONO") - x.audio *= scale_factor - - # shift the second (and all other) source files (positive shift creates overlap, negative shift creates a gap) - if i > 0: - # get the length of the first source file - N_delay = len(y.audio[:, 0]) - - # add the shift value (ensure that the shift is a multiple of 20ms) - N_delay += int(floor(-source_overlap * 50) / 50 * x.fs) - - # insert all-zero signal - pre = np.zeros((N_delay, x.audio.shape[1])) - x.audio = np.concatenate([pre, x.audio]) - - # pad with zeros to ensure that the signal length is a multiple of 20ms - if len(x.audio) % frame_len != 0: - # pad the source signal - N_pad = int(frame_len - len(x.audio) % frame_len) - post = np.zeros((N_pad, x.audio.shape[1])) - x.audio = np.concatenate([x.audio, post]) - - # add source signal to the array of all source signals - y.fs = x.fs - if y.audio is None: - y.audio = x.audio.copy() - else: - # pad with zeros to have the same length of all source signals - if x.audio.shape[0] > y.audio.shape[0]: - y.audio = np.vstack( - ( - y.audio, - np.zeros( - (x.audio.shape[0] - y.audio.shape[0], y.audio.shape[1]) - ), - ) - ) - elif y.audio.shape[0] > x.audio.shape[0]: - x.audio = np.vstack( - ( - x.audio, - np.zeros( - (y.audio.shape[0] - x.audio.shape[0], x.audio.shape[1]) - ), - ) - ) - y.audio = np.hstack((y.audio, x.audio)) - - # append pre-amble and post-amble to all sources - if cfg.preamble != 0.0: - # ensure that pre-amble is a multiple of 20ms - N_pre = int(floor(cfg.preamble * 50) / 50 * y.fs) - - # insert all-zero preamble to all sources - pre = np.zeros((N_pre, y.audio.shape[1])) - y.audio = np.concatenate([pre, y.audio]) - - if cfg.postamble != 0.0: - # ensure that post-mable is a multiple of 20ms - N_post = int(floor(cfg.postamble * 50) / 50 * y.fs) - - # append all-zero postamble to all sources - post = np.zeros((N_post, y.audio.shape[1])) - y.audio = np.concatenate([y.audio, post]) - - # add random noise - if cfg.add_low_level_random_noise: - # create uniformly distributed noise between -4 and 4 - np.random.seed(SEED_RANDOM_NOISE) - noise = np.random.randint(low=-4, high=5, size=y.audio.shape).astype("float") - - # superimpose - y.audio += noise - - # create metadata files - for i in range(N_sources): - # parse metadata parameters from the scene description - source_azi = ( - scene["azimuth"][i] - if isinstance(scene["azimuth"], list) - else scene["azimuth"] - ) - source_ele = ( - scene["elevation"][i] - if isinstance(scene["elevation"], list) - else scene["elevation"] - ) - - N_frames = int(len(y.audio) / y.fs * 50) - - # read azimuth information and convert to an array - if isinstance(source_azi, str): - if ":" in source_azi: - # start with the initial azimuth value and apply step N_frames times - source_azi = source_azi.split(":") - azi = np.arange( - float(eval(source_azi[0])), - float(eval(source_azi[0])) + N_frames * float(eval(source_azi[1])), - float(eval(source_azi[1])), - ) - else: - # replicate static azimuth value N_frames times - azi = np.repeat(float(eval(source_azi)), N_frames) - else: - # replicate static azimuth value N_frames times - azi = np.repeat(float(source_azi), N_frames) - - # convert azimuth from 0 .. 360 to -180 .. +180 - azi = (azi + 180) % 360 - 180 - - # check if azimuth is from -180 .. +180 - if any(azi > 180) or any(azi < -180): - logger.error( - f"Incorrect value(s) of azimuth: {azi[(azi > 180) | (azi < -180)]}" - ) - - # read elevation information and convert to an array - if isinstance(source_ele, str): - if ":" in source_ele: - # convert into array (initial_value:step:stop_value) - # note: the stop_value value is +-90 degrees depending on the sign of the step - source_ele = source_ele.split(":") - ele = np.arange( - float(eval(source_ele[0])), - np.sign(float(eval(source_ele[1]))) * 90, - float(eval(source_ele[1])), - )[:N_frames] - - # repeat the last elevation value, if array is shorter than N_frames - if len(ele) < N_frames: - ele = np.append(ele, np.full(N_frames - len(ele), ele[-1])) - else: - # replicate static elevation value N_frames times - ele = np.repeat(float(eval(source_ele)), N_frames) - else: - # replicate static elevation value N_frames times - ele = np.repeat(float(source_ele), N_frames) - - # check if elevation is from -90 .. +90 - if any(ele > 90) or any(ele < -90): - logger.error( - f"Incorrect value(s) of elevation: {ele[(ele > 90) | (ele < -90)]}" - ) - - # arrange all metadata fields column-wise into a matrix - x_meta = np.column_stack((azi, ele)) - - x_meta = x_meta[np.newaxis, :] - if y_meta is None: - y_meta = x_meta - else: - y_meta = np.concatenate([y_meta, x_meta]) - - # write individual ISM audio streams to the output file in an interleaved format - audiofile.write( - os.path.join( - cfg.output_path, - os.path.dirname(scene["name"]), - cfg.use_output_prefix + os.path.basename(scene["name"]), - ), - y.audio, - y.fs, - ) - - # write individual ISM metadata to output files in .csv format - for i in range(N_sources): - # generate .csv filename (should end with .0.csv, .1.csv, ...) - csv_filename = os.path.join( - cfg.output_path, - os.path.dirname(scene["name"]), - cfg.use_output_prefix + os.path.basename(scene["name"]) + f".{i}.csv", - ) - - with open( - csv_filename, - "w", - newline="", - encoding="utf-8", - ) as f: - # create csv writer - writer = csv.writer(f) - - # write all rows to the .csv file - writer.writerows(csv_formatdata(y_meta[i])) - - return diff --git a/ivas_processing_scripts/generation/process_stereo_items.py b/ivas_processing_scripts/generation/process_stereo_items.py deleted file mode 100644 index b4c171976493c09e21f84f9e4e0343ec88c4e696..0000000000000000000000000000000000000000 --- a/ivas_processing_scripts/generation/process_stereo_items.py +++ /dev/null @@ -1,327 +0,0 @@ -#!/usr/bin/env python3 - -# -# (C) 2022-2025 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, -# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -# contributors to this repository. All Rights Reserved. -# -# This software is protected by copyright law and by international treaties. -# The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, -# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -# contributors to this repository retain full ownership rights in their respective contributions in -# the software. This notice grants no license of any kind, including but not limited to patent -# license, nor is any license granted by implication, estoppel or otherwise. -# -# Contributors are required to enter into the IVAS codec Public Collaboration agreement before making -# contributions. -# -# This software is provided "AS IS", without any express or implied warranties. The software is in the -# development stage. It is intended exclusively for experts who have experience with such software and -# solely for the purpose of inspection. All implied warranties of non-infringement, merchantability -# and fitness for a particular purpose are hereby disclaimed and excluded. -# -# Any dispute, controversy or claim arising under or in relation to providing this software shall be -# submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in -# accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and -# the United Nations Convention on Contracts on the International Sales of Goods. -# - -import logging -import os -from itertools import groupby, repeat -from math import floor - -import numpy as np - -from ivas_processing_scripts.audiotools import audio, audiofile -from ivas_processing_scripts.audiotools.wrappers.bs1770 import get_loudness -from ivas_processing_scripts.audiotools.wrappers.reverb import reverb_stereo -from ivas_processing_scripts.generation import config -from ivas_processing_scripts.utils import apply_func_parallel - -SEED_RANDOM_NOISE = 0 - - -# function for converting nd numpy array to strings with 2 decimal digits -def csv_formatdata(data): - for row in data: - yield ["%0.2f" % v for v in row] - - -# function for searching sequences of same the same character and replacing it by another string -def replace_char_seq_with_string(str, char_seq, repl_str): - result = [] - - # find groups of consecutive letters - groups = ["".join(list(g)) for k, g in groupby(str)] - - # limit the length of the replacement string by the length of the character sequence - repl_str = repl_str[: len(char_seq)] - - # replace each occurence of the sequence of characters - for g in groups: - if char_seq in g: - result.append(repl_str) - else: - result.append(g) - - return "".join(result) - - -def generate_stereo_items( - cfg: config.TestConfig, - logger: logging.Logger, -): - """Generate STEREO items from mono items based on scene description""" - - # set the target level - if "loudness" not in cfg.__dict__: - cfg.loudness = -26 - - # set the fs - if "fs" not in cfg.__dict__: - cfg.fs = 48000 - - # set the IR fs - if "IR_fs" not in cfg.__dict__: - cfg.IR_fs = 48000 - - # set the pre-amble and post-amble - if "preamble" not in cfg.__dict__: - cfg.preamble = 0.0 - - if "postamble" not in cfg.__dict__: - cfg.postamble = 0.0 - - # set the IR path - if "IR_path" not in cfg.__dict__: - cfg.IR_path = os.path.join(os.path.dirname(__file__), "IRs") - - # set the pre-amble and post-amble - if "add_low_level_random_noise" not in cfg.__dict__: - cfg.add_low_level_random_noise = False - - # set the listening lab designator - if "listening_lab" not in cfg.__dict__: - cfg.listening_lab = "l" - - # set the language designator - if "language" not in cfg.__dict__: - cfg.language = "EN" - - # set the experiment designator - if "exp" not in cfg.__dict__: - cfg.exp = "p01" - - # set the provider - if "provider" not in cfg.__dict__: - cfg.provider = "g" - - # set the prefix for all input filenames - if "use_input_prefix" not in cfg.__dict__: - cfg.use_input_prefix = "" - else: - # replace file designators - cfg.use_input_prefix = replace_char_seq_with_string( - cfg.use_input_prefix, "l", cfg.listening_lab - ) - cfg.use_input_prefix = replace_char_seq_with_string( - cfg.use_input_prefix, "LL", cfg.language - ) - cfg.use_input_prefix = replace_char_seq_with_string( - cfg.use_input_prefix, "eee", cfg.exp - ) - - # set the prefix for all IR filenames - if "use_IR_prefix" not in cfg.__dict__: - cfg.use_IR_prefix = "" - else: - # replace file designators - cfg.use_IR_prefix = replace_char_seq_with_string( - cfg.use_IR_prefix, "p", cfg.provider - ) - cfg.use_IR_prefix = replace_char_seq_with_string( - cfg.use_IR_prefix, "LL", cfg.language - ) - cfg.use_IR_prefix = replace_char_seq_with_string( - cfg.use_IR_prefix, "eee", cfg.exp - ) - - # set the prefix for all output filenames - if "use_output_prefix" not in cfg.__dict__: - cfg.use_output_prefix = None - else: - # replace file designators - cfg.use_output_prefix = replace_char_seq_with_string( - cfg.use_output_prefix, "l", cfg.listening_lab - ) - cfg.use_output_prefix = replace_char_seq_with_string( - cfg.use_output_prefix, "eee", cfg.exp - ) - - # set multiprocessing - if "multiprocessing" not in cfg.__dict__: - cfg.multiprocessing = True - - apply_func_parallel( - generate_stereo_scene, - zip(cfg.scenes.keys(), cfg.scenes.values(), repeat(cfg), repeat(logger)), - None, - "mp" if cfg.multiprocessing else None, - ) - - return - - -def generate_stereo_scene( - scene_name: str, scene: dict, cfg: config.TestConfig, logger: logging.Logger -): - logger.info( - f"Processing scene: {scene_name} out of {len(cfg.scenes)} scenes, name: {scene['name']}" - ) - - # extract the number of audio sources - N_sources = len(np.atleast_1d(scene["source"])) - - # read the overlap length - if "overlap" in scene.keys(): - source_overlap = float(scene["overlap"]) - else: - source_overlap = 0.0 - - len_s1 = 0 - y = audio.ChannelBasedAudio("STEREO") - for i in range(N_sources): - # parse parameters from the scene description - source_file = np.atleast_1d(scene["source"])[i] - IR_file = np.atleast_1d(scene["IR"])[i] - - logger.info(f"Convolving {source_file} with {IR_file}") - - # read source file - x = audio.fromfile( - "MONO", - os.path.join( - cfg.input_path, - os.path.dirname(source_file), - cfg.use_input_prefix + os.path.basename(source_file), - ), - fs=cfg.fs, - ) - - # read the IR file - IR = audio.fromfile( - "STEREO", - os.path.join( - cfg.IR_path, - os.path.dirname(IR_file), - cfg.use_IR_prefix + os.path.basename(IR_file), - ), - fs=cfg.IR_fs, - ) - - if i == 0: - len_s1 = x.audio.shape[0] - - # convolve with stereo IR - x = reverb_stereo(x, IR) - - # adjust the level of the stereo signal - _, scale_factor, _ = get_loudness(x, cfg.loudness, "STEREO") - x.audio *= scale_factor - - # shift the second (and all other) source files (positive shift creates overlap, negative shift creates a gap) - if i > 0: - # get the length of the first source file - N_delay = len_s1 - - # add the shift - N_delay += int(-source_overlap * x.fs) - - # insert all-zero preamble - pre = np.zeros((N_delay, x.audio.shape[1])) - x.audio = np.concatenate([pre, x.audio]) - - # add source signal to the array of source signals - y.fs = x.fs - if y.audio is None: - y.audio = x.audio.copy() - else: - # pad with zeros to have equal length of all source signals - if x.audio.shape[0] > y.audio.shape[0]: - y.audio = np.vstack( - ( - y.audio, - np.zeros( - ( - x.audio.shape[0] - y.audio.shape[0], - y.audio.shape[1], - ) - ), - ) - ) - elif y.audio.shape[0] > x.audio.shape[0]: - x.audio = np.vstack( - ( - x.audio, - np.zeros( - ( - y.audio.shape[0] - x.audio.shape[0], - x.audio.shape[1], - ) - ), - ) - ) - - # superimpose - y.audio += x.audio - - # append pre-amble and post-amble to all sources - if cfg.preamble != 0.0: - # ensure that pre-amble is a multiple of 20ms - N_pre = int(floor(cfg.preamble * 50) / 50 * y.fs) - - # insert all-zero preamble to all sources - pre = np.zeros((N_pre, y.audio.shape[1])) - y.audio = np.concatenate([pre, y.audio]) - - if cfg.postamble != 0.0: - # ensure that post-mable is a multiple of 20ms - N_post = int(floor(cfg.postamble * 50) / 50 * y.fs) - - # append all-zero postamble to all sources - post = np.zeros((N_post, y.audio.shape[1])) - y.audio = np.concatenate([y.audio, post]) - - # pad with zeros to ensure that the signal length is a multiple of 20ms - N_frame = y.fs / 50 - if y.audio.shape[0] % N_frame != 0: - N_pad = int(N_frame - y.audio.shape[0] % N_frame) - - # insert all-zero postamble - post = np.zeros((N_pad, y.audio.shape[1])) - y.audio = np.concatenate([y.audio, post]) - - # add random noise - if cfg.add_low_level_random_noise: - # create uniformly distributed noise between -4 and 4 - np.random.seed(SEED_RANDOM_NOISE) - noise = np.random.randint(low=-4, high=5, size=y.audio.shape).astype("float") - - # superimpose - y.audio += noise - - # write the reverberated audio into output file - audiofile.write( - os.path.join( - cfg.output_path, - os.path.dirname(scene["name"]), - cfg.use_output_prefix + os.path.basename(scene["name"]), - ), - y.audio, - y.fs, - ) diff --git a/ivas_processing_scripts/processing/chains.py b/ivas_processing_scripts/processing/chains.py index 84f125a1bc767a4536963cea41c7e4e9f754bb80..1a48834d6c1c421767457f3f6c5407152532341c 100755 --- a/ivas_processing_scripts/processing/chains.py +++ b/ivas_processing_scripts/processing/chains.py @@ -31,6 +31,7 @@ # from pathlib import Path +from platform import system from shutil import copyfile, rmtree from typing import Optional from warnings import warn @@ -38,6 +39,7 @@ from warnings import warn from ivas_processing_scripts.audiotools import audio from ivas_processing_scripts.audiotools.audioarray import trim from ivas_processing_scripts.audiotools.audiofile import read, write +from ivas_processing_scripts.audiotools.utils import get_trajectory_or_dir from ivas_processing_scripts.processing.config import TestConfig from ivas_processing_scripts.processing.evs import EVS from ivas_processing_scripts.processing.ivas import IVAS, IVAS_rend @@ -49,7 +51,12 @@ from ivas_processing_scripts.processing.processing_splitting_scaling import ( Processing_splitting_scaling, ) from ivas_processing_scripts.processing.tx import get_tx_cfg -from ivas_processing_scripts.utils import get_abs_path, list_audio, parse_gain +from ivas_processing_scripts.utils import ( + find_binary, + get_abs_path, + list_audio_or_md, + parse_gain, +) def init_processing_chains(cfg: TestConfig) -> None: @@ -105,7 +112,7 @@ def init_processing_chains(cfg: TestConfig) -> None: ) # list items in input directory - cfg.items_list = list_audio( + cfg.items_list = list_audio_or_md( cfg.input_path, select_list=getattr(cfg, "input_select", None) ) if len(cfg.items_list) == 0: @@ -218,6 +225,39 @@ def get_preprocessing_2(cfg: TestConfig) -> dict: return chain +def get_prerend( + rend_cfg: dict = None, + name="prerend", + use_windows_codec_binaries: bool = False, + attrs: dict = None, +): + if rend_cfg: + # set to dict; if the user didn't configure anything and wants defaults + # Workaround since processing:TestConfig:_validate_file_cfg() removes keys with None values + if isinstance(rend_cfg, bool): + rend_cfg = { + "bin": find_binary( + f"IVAS_rend{ '.exe' if system() == 'Linux' and use_windows_codec_binaries else '' }" + ) + } + attrs.setdefault("bin", get_abs_path(rend_cfg.get("bin"))) + attrs.setdefault("opts", rend_cfg.get("opts")) + attrs.setdefault("use_windows_codec_binaries", use_windows_codec_binaries) + if attrs.get("in_fs") != attrs.get("out_fs"): + raise NotImplementedError( + f"IVAS rend does not support resampling. Prerendering specified with resampling from {attrs.get('in_fs')} to {attrs.get('out_fs')}." + f"\nPlease update your configuration or disable IVAS rend prerendering." + ) + return IVAS_rend( + attrs, + ) + else: + return Postprocessing( + attrs, + name=name, + ) + + def get_processing_chain( condition: str, cfg: TestConfig, @@ -331,22 +371,28 @@ def get_processing_chain( if hasattr(cfg, "preprocessing_2"): preamble = cfg.preprocessing_2.get("preamble", 0) - # if the encoding format differs from the format after the preprocessing, add format conversion stuff - if (cod_fmt := cod_cfg.get("fmt", tmp_in_fmt)) != tmp_in_fmt: + # if the encoding format or fs differs from the values after preprocessing, add format conversion + cod_fmt = cod_cfg.get("fmt", tmp_in_fmt) + cod_fs = cod_cfg.get("fs", tmp_in_fs) + needs_preproc = (tmp_in_fmt != cod_fmt) or (tmp_in_fs != cod_fs) + if needs_preproc: chain["processes"].append( - Postprocessing( - { + get_prerend( + cod_cfg.get("ivas_prerend"), + name="cod_fmt", + use_windows_codec_binaries=cfg.use_windows_codec_binaries, + attrs={ "in_fs": tmp_in_fs, "in_fmt": tmp_in_fmt, - "out_fs": tmp_in_fs, + "out_fs": cod_fs, "out_fmt": cod_fmt, "multiprocessing": cfg.multiprocessing, "tx_condition": False, }, - name="cod_fmt", ) ) tmp_in_fmt = cod_fmt + tmp_in_fs = cod_fs chain["processes"].append( EVS( @@ -408,22 +454,28 @@ def get_processing_chain( if hasattr(cfg, "preprocessing_2"): preamble = cfg.preprocessing_2.get("preamble", 0) - # if the encoding format differs from the format after the preprocessing, add format conversion - if (cod_fmt := cod_cfg.get("fmt", tmp_in_fmt)) != tmp_in_fmt: + # if the encoding format or fs differs from the values after preprocessing, add format conversion + cod_fmt = cod_cfg.get("fmt", tmp_in_fmt) + cod_fs = cod_cfg.get("fs", tmp_in_fs) + needs_preproc = (tmp_in_fmt != cod_fmt) or (tmp_in_fs != cod_fs) + if needs_preproc: chain["processes"].append( - Postprocessing( - { + get_prerend( + cod_cfg.get("ivas_prerend"), + name="cod_fmt", + use_windows_codec_binaries=cfg.use_windows_codec_binaries, + attrs={ "in_fs": tmp_in_fs, "in_fmt": tmp_in_fmt, - "out_fs": tmp_in_fs, + "out_fs": cod_fs, "out_fmt": cod_fmt, "multiprocessing": cfg.multiprocessing, "tx_condition": False, }, - name="cod_fmt", ) ) tmp_in_fmt = cod_fmt + tmp_in_fs = cod_fs # allow list of output values for IVAS tmp_out_fmt = dec_cfg.get("fmt", tmp_out_fmt) @@ -431,6 +483,15 @@ def get_processing_chain( cond_fmt.extend(tmp_out_fmt) tmp_out_fmt = tmp_out_fmt[0] + # check if trajectory is a path or boolean, boolean will trigger a search in the input dir + trajectory, trajectory_dir = get_trajectory_or_dir( + dec_cfg.get("trajectory"), cfg.input_path + ) + + # check if render config search is enabled + render_config = dec_cfg.get("render_config") + render_config_dir = cfg.input_path if render_config else None + ivas_cls = IVAS if cond_cfg["type"] == "ivas_combined": ivas_cls = IVASCombined @@ -447,6 +508,11 @@ def get_processing_chain( "dec_bin": get_abs_path(dec_cfg.get("bin", None)), "dec_opts": dec_cfg.get("opts"), "extended_metadata": cod_cfg.get("extended_metadata", False), + "trajectory": trajectory, + "trajectory_dir": trajectory_dir, + "only_3dof": dec_cfg.get("only_3dof"), + "render_config": render_config, + "render_config_dir": render_config_dir, "multiprocessing": cfg.multiprocessing, "tx": tx_cfg, "preamble": preamble, @@ -467,6 +533,16 @@ def get_processing_chain( # add optional IVAS_rend rendering step after each condition if cond_cfg.get("ivas_rend"): rend_cfg = cond_cfg["ivas_rend"] + + # check if trajectory is a path or boolean, boolean will trigger a search in the input dir + trajectory, trajectory_dir = get_trajectory_or_dir( + rend_cfg.get("trajectory"), cfg.input_path + ) + + # check if render config search is enabled + render_config = rend_cfg.get("render_config") + render_config_dir = cfg.input_path if render_config else None + chain["processes"].append( IVAS_rend( { @@ -475,6 +551,11 @@ def get_processing_chain( "out_fmt": rend_cfg.get("fmt", tmp_out_fmt), "bin": get_abs_path(rend_cfg.get("bin", None)), "opts": rend_cfg.get("opts"), + "trajectory": trajectory, + "trajectory_dir": trajectory_dir, + "only_3dof": rend_cfg.get("only_3dof"), + "render_config": render_config, + "render_config_dir": render_config_dir, "use_windows_codec_binaries": cfg.use_windows_codec_binaries, } ) @@ -515,6 +596,11 @@ def get_processing_chain( if cond_cfg.get("out_fc") is not None: tmp_lp_cutoff = cond_cfg.get("out_fc") + # check if trajectory is a path or boolean, boolean will trigger a search in the input dir + trajectory, trajectory_dir = get_trajectory_or_dir( + post_cfg.get("trajectory"), cfg.input_path + ) + chain["processes"].append( Postprocessing( { @@ -528,7 +614,9 @@ def get_processing_chain( "bin_dataset": post_cfg.get("bin_dataset"), "bin_lfe_gain": parse_gain(post_cfg.get("bin_lfe_gain")), "limit": post_cfg.get("limit", True), - "trajectory": get_abs_path(post_cfg.get("trajectory", None)), + "trajectory": trajectory, + "trajectory_dir": trajectory_dir, + "only_3dof": post_cfg.get("only_3dof"), "multiprocessing": cfg.multiprocessing, "mnru_q": tmp_mnru_q, "esdru_alpha": tmp_esdru_alpha, @@ -575,16 +663,19 @@ def validate_input_files(cfg: TestConfig): # always throw an error for ISM (and MASA) input if input_format.startswith("ISM") or input_format.startswith("MASA"): frame_alignment = "error" + # NOTE: to override this warning for local testing, simply uncomment the below line + # this will override the above variable and enable padding for non-aligned files + # frame_alignment = "padding" if frame_alignment == "padding": # Create new input directory for padded files - output_dir = cfg.output_path / "20ms_aligned_files" + aligned_output_dir = cfg.output_path / "20ms_aligned_files" try: - output_dir.mkdir(exist_ok=False, parents=True) - except FileExistsError: - raise ValueError( - "Folder for 20ms aligned files already exists. Please move or delete folder" - ) + aligned_output_dir.mkdir(exist_ok=False, parents=True) + except FileExistsError as e: + raise FileExistsError( + f"Folder for 20ms aligned files already exists. Please move or delete folder {aligned_output_dir}" + ) from e for i, item in enumerate(cfg.items_list): if "fs" in cfg.input: @@ -639,24 +730,29 @@ def validate_input_files(cfg: TestConfig): samples=True, ) # Write padded data to output directory - write(output_dir / item.name, padded_data, fs) + write(aligned_output_dir / item.name, padded_data, fs) # Update audio file path in list - cfg.items_list[i] = output_dir / item.name + cfg.items_list[i] = aligned_output_dir / item.name else: raise ValueError( f"Value of key frame_alignment does not match possible options. Value: {frame_alignment}. Options: 'padding', 'ignore', 'warning', 'error'" ) else: if frame_alignment == "padding": - copyfile(item, output_dir / item.name) + copyfile(item, aligned_output_dir / item.name) # Update audio file path in list - cfg.items_list[i] = output_dir / item.name - else: - pass + cfg.items_list[i] = aligned_output_dir / item.name if frame_alignment == "padding": + # copy over any metadata files + [ + copyfile(f, aligned_output_dir / f.name) + for f in list(cfg.input_path.glob("*.csv")) + + list(cfg.input_path.glob("*.met")) + ] + # Make the output path as the new input path - cfg.input_path = output_dir + cfg.input_path = aligned_output_dir def clean_outputs(cfg: TestConfig) -> None: diff --git a/ivas_processing_scripts/processing/config.py b/ivas_processing_scripts/processing/config.py index bf8526071bca8219726475ad7cecec40f24b2d60..0e31f3172c9d180a154affc220d49cccbe81c40b 100755 --- a/ivas_processing_scripts/processing/config.py +++ b/ivas_processing_scripts/processing/config.py @@ -36,7 +36,6 @@ from pathlib import Path from typing import Union import yaml - from ivas_processing_scripts.constants import ( DEFAULT_CONFIG, REQUIRED_KEYS, diff --git a/ivas_processing_scripts/processing/evs.py b/ivas_processing_scripts/processing/evs.py index 6f5fe2dd014cc881d9df71bbc3607f74d43452fc..ea0a4a52710b3705e921106cee2cce06128eb5cc 100755 --- a/ivas_processing_scripts/processing/evs.py +++ b/ivas_processing_scripts/processing/evs.py @@ -32,7 +32,6 @@ import logging import os.path -import platform from itertools import repeat from pathlib import Path from shutil import copyfile @@ -55,7 +54,12 @@ from ivas_processing_scripts.audiotools.wrappers.eid_xor import ( validate_error_pattern_application, ) from ivas_processing_scripts.processing.processing import Processing -from ivas_processing_scripts.utils import apply_func_parallel, run, use_wine +from ivas_processing_scripts.utils import ( + apply_func_parallel, + get_binary_path, + run, + use_wine, +) class EVS(Processing): @@ -69,27 +73,8 @@ class EVS(Processing): def _validate( self, ): - need_exe_suffix = ( - platform.system() == "Windows" or self.use_windows_codec_binaries - ) - if not self.cod_bin or not Path(self.cod_bin).exists(): - if need_exe_suffix and ( - self.cod_bin and Path(self.cod_bin).with_suffix(".exe").exists() - ): - self.cod_bin = Path(self.cod_bin).with_suffix(".exe") - else: - raise FileNotFoundError( - "The EVS encoder binary was not found! Please check the configuration." - ) - if not self.dec_bin or not Path(self.dec_bin).exists(): - if need_exe_suffix and ( - self.dec_bin and Path(self.dec_bin).with_suffix(".exe").exists() - ): - self.dec_bin = Path(self.dec_bin).with_suffix(".exe") - else: - raise FileNotFoundError( - "The EVS decoder binary was not found! Please check the configuration." - ) + self.cod_bin = get_binary_path(self.cod_bin, self.use_windows_codec_binaries) + self.dec_bin = get_binary_path(self.dec_bin, self.use_windows_codec_binaries) # configure per-channel bitrate if specified, otherwise simply repeat if not isinstance(self.bitrate, list): @@ -415,6 +400,7 @@ class EVS(Processing): self.tx["errpatt_seed"], self.tx["n_frames_per_packet"], self.tx["master_seed"], + logger=logger, ) return bitstream_processed @@ -439,6 +425,7 @@ class EVS(Processing): error_rate=self.tx["error_rate"], master_seed=self.tx["master_seed"], prerun_seed=self.tx["prerun_seed"], + logger=logger, ) return bitstream_processed else: diff --git a/ivas_processing_scripts/processing/ivas.py b/ivas_processing_scripts/processing/ivas.py index 22f285cbc30442a6d71b4785ee75e8924e887b6a..f427d2e2be09b8bca8006ace6f5a6f810658069a 100755 --- a/ivas_processing_scripts/processing/ivas.py +++ b/ivas_processing_scripts/processing/ivas.py @@ -37,18 +37,23 @@ from pathlib import Path from typing import Optional, Tuple, Union from ivas_processing_scripts.audiotools import audio -from ivas_processing_scripts.audiotools.audiofile import parse_wave_header, read +from ivas_processing_scripts.audiotools.audiofile import parse_wave_header, read, write from ivas_processing_scripts.audiotools.constants import IVAS_FRAME_LEN_MS +from ivas_processing_scripts.audiotools.utils import truncate_trajectory_3dof +from ivas_processing_scripts.audiotools.wrappers.dlyerr_2_errpat import dlyerr_2_errpat from ivas_processing_scripts.audiotools.wrappers.eid_xor import ( create_and_apply_error_pattern, + eid_xor, validate_error_pattern_application, ) from ivas_processing_scripts.audiotools.wrappers.networkSimulator import ( apply_network_simulator, + length_pattern, validate_network_simulator, ) +from ivas_processing_scripts.audiotools.wrappers.random_seed import random_seed from ivas_processing_scripts.processing.processing import Processing -from ivas_processing_scripts.utils import run, use_wine +from ivas_processing_scripts.utils import get_binary_path, run, use_wine class IVAS(Processing): @@ -63,27 +68,8 @@ class IVAS(Processing): self._validate() def _validate(self): - need_exe_suffix = ( - platform.system() == "Windows" or self.use_windows_codec_binaries - ) - if not self.cod_bin or not Path(self.cod_bin).exists(): - if need_exe_suffix and ( - self.cod_bin and Path(self.cod_bin).with_suffix(".exe").exists() - ): - self.cod_bin = Path(self.cod_bin).with_suffix(".exe") - else: - raise FileNotFoundError( - "The IVAS encoder binary was not found! Please check the configuration." - ) - if not self.dec_bin or not Path(self.dec_bin).exists(): - if need_exe_suffix and ( - self.dec_bin and Path(self.dec_bin).with_suffix(".exe").exists() - ): - self.dec_bin = Path(self.dec_bin).with_suffix(".exe") - else: - raise FileNotFoundError( - "The IVAS decoder binary was not found! Please check the configuration." - ) + self.cod_bin = get_binary_path(self.cod_bin, self.use_windows_codec_binaries) + self.dec_bin = get_binary_path(self.dec_bin, self.use_windows_codec_binaries) # existence of error pattern files (if given) already here if self.tx is not None: @@ -128,6 +114,10 @@ class IVAS(Processing): bitstream_noerror = bitstream bitstream, voip = self.simulate_tx(in_file, bitstream, logger) + # change suffix to PCM for EVS decoding mode + if getattr(self, "use_evs_dec", None): + out_file = out_file.with_suffix(".pcm") + # decode twice with and without bitstream errors self.dec(bitstream, out_file, voip=voip, logger=logger) if bitstream_noerror != bitstream and self.tx_condition: @@ -136,6 +126,19 @@ class IVAS(Processing): ) self.dec(bitstream_noerror, out_file_unprocessed, voip=False, logger=logger) + # convert PCM back to WAV in case of EVS decoding + if getattr(self, "use_evs_dec", None): + out_file_orig = out_file.with_suffix(".wav") + data, fs = read(out_file, self.out_fmt.num_channels, self.out_fs) + write(out_file_orig, data, fs) + + if bitstream_noerror != bitstream and self.tx_condition: + out_file_unprocessed_orig = out_file_unprocessed.with_suffix(".wav") + data, fs = read( + out_file_unprocessed, self.out_fmt.num_channels, self.out_fs + ) + write(out_file_unprocessed_orig, data, fs) + def enc( self, in_file: Path, @@ -222,6 +225,13 @@ class IVAS(Processing): ] ) + # check for special case of -stereo_dmx_evs + if "-stereo" in cmd and "-stereo_dmx_evs" in cmd: + # done this way to ensure `output_format` is replaced in the correct position + cmd.remove("-stereo_dmx_evs") + cmd[cmd.index("-stereo")] = "-stereo_dmx_evs" + self.use_evs_dec = True # signal the decoder to use EVS commandline + run(cmd, logger=logger) def simulate_tx( @@ -231,9 +241,10 @@ class IVAS(Processing): logger: Optional[logging.Logger] = None, ) -> Tuple[Union[Path, str], bool]: if self.tx is not None: + bs, ext = os.path.splitext(bitstream) + bitstream_processed = Path(f"{bs}_processed{ext}") + voip = False if self.tx["type"] == "JBM": - bs, ext = os.path.splitext(bitstream) - bitstream_processed = Path(f"{bs}_processed{ext}") logger.debug(f"Network simulator {bitstream} -> {bitstream_processed}") apply_network_simulator( bitstream, @@ -246,11 +257,41 @@ class IVAS(Processing): logger=logger, ) voip = True - return bitstream_processed, voip + elif self.tx["type"] == "JBM2FER": + logger.debug( + f"Frame loss simulator {bitstream} -> {bitstream_processed}" + ) + delay_profile = self.tx["error_pattern"] + len_pattern = length_pattern(delay_profile) + + if not self.tx.get("errpatt_late_loss_rate") and not self.tx.get( + "errpatt_delay" + ): + raise KeyError( + f"Either errpatt_late_loss_rate or errpat_delay must be specified for converting a delay error profile to an error profile!\nGenerating {bitstream_processed}" + ) + errpat = bitstream.with_name( + f"{bitstream.stem}_{delay_profile.stem}_to_err.192" + ) + + shift = random_seed( + (0, len_pattern - 1), + self.tx["master_seed"], + self.tx.get("errpatt_seed", 0), + False, + ) + dlyerr_2_errpat( + delay_profile, + delay=self.tx.get("errpatt_delay"), + fer_pattern=errpat, + late_loss_rate=self.tx.get("errpatt_late_loss_rate"), + shift=shift, + flag_word=True, + logger=logger, + ) + eid_xor(errpat, bitstream, bitstream_processed, logger=logger) elif self.tx["type"] == "FER": - bs, ext = os.path.splitext(bitstream) - bitstream_processed = Path(f"{bs}_processed{ext}") signal, _ = read( in_file, fs=self.in_fs, nchannels=self.in_fmt.num_channels ) @@ -271,9 +312,11 @@ class IVAS(Processing): error_rate=self.tx["error_rate"], master_seed=self.tx["master_seed"], prerun_seed=self.tx["prerun_seed"], + logger=logger, ) - voip = False - return bitstream_processed, voip + + return bitstream_processed, voip + else: return bitstream, False @@ -290,16 +333,41 @@ class IVAS(Processing): if self._use_wine: cmd.insert(0, "wine") - if hasattr(self, "trajectory"): + # search for a trajectory file if the trajectory dir is specified + if getattr(self, "trajectory_dir", None): + trj_name = out_file.name.split(".")[0] + self.trajectory = self.trajectory_dir.joinpath(f"{trj_name}.wav.ht.csv") + if not self.trajectory.exists(): + raise FileNotFoundError( + f"Trajectory file {self.trajectory} not found! Please check the configuration" + ) + + # truncate to 3DoF if needed + if getattr(self, "only_3dof", None): + trj_3dof = out_file.with_suffix(".3dof.ht.csv") + truncate_trajectory_3dof(self.trajectory, trj_3dof) + self.trajectory = trj_3dof + + if getattr(self, "trajectory", None): cmd.extend(["-T", self.trajectory]) + # add renderer config if specified + if getattr(self, "render_config", None): + rend_cfg_name = out_file.name.split(".")[0] + rend_cfg_file = self.render_config_dir.joinpath(f"{rend_cfg_name}.wav.cfg") + cmd.extend(["-render_config", rend_cfg_file]) + + if self.dec_opts: + cmd.extend(self.dec_opts) + # add -voip cmdline option to the decoder if voip: cmd.extend( ["-voip", "-Tracefile", f"{str(out_file).split('.')[0]}.tracefile.csv"] ) - if self.dec_opts: - cmd.extend(self.dec_opts) + + if voip and "-no_delay_cmp" not in cmd: + cmd.extend(["-no_delay_cmp"]) # use quiet mode cmd.extend(["-q"]) @@ -329,7 +397,7 @@ class IVAS(Processing): else: output_format = self.out_fmt.name - if output_format == "": + if output_format == "" or getattr(self, "use_evs_dec", None): cmd.extend( [ str(self.out_fs // 1000), @@ -404,24 +472,13 @@ class IVAS_rend(Processing): self.in_fmt = audio.fromtype(self.in_fmt) self.out_fmt = audio.fromtype(self.out_fmt) if not hasattr(self, "opts"): - self.dec_opts = None + self.opts = None self._use_wine = ( platform.system() == "Linux" and self.use_windows_codec_binaries ) def _validate(self): - need_exe_suffix = ( - platform.system() == "Windows" or self.use_windows_codec_binaries - ) - if not Path(self.bin).exists(): - if need_exe_suffix and ( - self.bin and Path(self.bin).with_suffix(".exe").exists() - ): - self.bin = Path(self.bin).with_suffix(".exe") - else: - raise FileNotFoundError( - "The IVAS renderer binary was not found! Please check the configuration." - ) + self.bin = get_binary_path(self.bin, self.use_windows_codec_binaries) def process( self, @@ -430,8 +487,9 @@ class IVAS_rend(Processing): in_meta, logger: Optional[logging.Logger] = None, ) -> None: - logger.debug(f"IVAS rend configuration : {self.__dict__}") - logger.debug(f"IVAS rend {in_file.absolute()} -> {out_file.absolute()}") + if logger: + logger.debug(f"IVAS rend configuration : {self.__dict__}") + logger.debug(f"IVAS rend {in_file.absolute()} -> {out_file.absolute()}") # set defaults in case input sampling rate is not specified if not self.in_fs: @@ -449,6 +507,33 @@ class IVAS_rend(Processing): if self._use_wine: cmd.insert(0, "wine") + # search for a trajectory file if the trajectory dir is specified + if getattr(self, "trajectory_dir", None): + trj_name = out_file.name.split(".")[0] + self.trajectory = self.trajectory_dir.joinpath(f"{trj_name}.wav.ht.csv") + if not self.trajectory.exists(): + raise FileNotFoundError( + f"Trajectory file {self.trajectory} not found! Please check the configuration" + ) + + # truncate to 3DoF if needed + if getattr(self, "only_3dof", None): + trj_3dof = out_file.with_suffix(".3dof.ht.csv") + truncate_trajectory_3dof(self.trajectory, trj_3dof) + self.trajectory = trj_3dof + + if getattr(self, "trajectory", None): + cmd.extend(["-T", self.trajectory]) + + # add renderer config if specified + if getattr(self, "render_config", None): + rend_cfg_name = out_file.name.split(".")[0] + rend_cfg_file = self.render_config_dir.joinpath(f"{rend_cfg_name}.wav.cfg") + cmd.extend(["-render_config", rend_cfg_file]) + + # remove MASA number of directions + in_fmt = self.in_fmt.name.replace("DIR1", "").replace("DIR2", "") + cmd.extend( [ "-fs", @@ -456,7 +541,7 @@ class IVAS_rend(Processing): "-i", str(in_file), "-if", - self.in_fmt.name, + in_fmt, "-o", str(out_file), "-of", @@ -468,7 +553,7 @@ class IVAS_rend(Processing): cmd.append("-im") cmd.extend([str(f) for f in in_meta]) - if self.opts: + if getattr(self, "opts", None): cmd.extend(self.opts) run(cmd, logger=logger) diff --git a/ivas_processing_scripts/processing/ivas_combined.py b/ivas_processing_scripts/processing/ivas_combined.py index 6ab837945a15adc9271adb7e07c0a0ad466a6f82..f1b9c84bab652c7730372d417be8d8ca87ba7665 100755 --- a/ivas_processing_scripts/processing/ivas_combined.py +++ b/ivas_processing_scripts/processing/ivas_combined.py @@ -31,7 +31,6 @@ # import logging -import platform from pathlib import Path from warnings import warn @@ -45,7 +44,7 @@ from ivas_processing_scripts.audiotools.wrappers.networkSimulator import ( ) from ivas_processing_scripts.processing.ivas import IVAS from ivas_processing_scripts.processing.processing import Processing -from ivas_processing_scripts.utils import use_wine +from ivas_processing_scripts.utils import get_binary_path, use_wine class IVASCombined(Processing): @@ -68,27 +67,8 @@ class IVASCombined(Processing): ) def _validate(self): - need_exe_suffix = ( - platform.system() == "Windows" or self.use_windows_codec_binaries - ) - if not self.cod_bin or not Path(self.cod_bin).exists(): - if need_exe_suffix and ( - self.cod_bin and Path(self.cod_bin).with_suffix(".exe").exists() - ): - self.cod_bin = Path(self.cod_bin).with_suffix(".exe") - else: - raise FileNotFoundError( - "The IVAS encoder binary was not found! Please check the configuration." - ) - if not self.dec_bin or not Path(self.dec_bin).exists(): - if need_exe_suffix and ( - self.dec_bin and Path(self.dec_bin).with_suffix(".exe").exists() - ): - self.dec_bin = Path(self.dec_bin).with_suffix(".exe") - else: - raise FileNotFoundError( - "The IVAS decoder binary was not found! Please check the configuration." - ) + self.cod_bin = get_binary_path(self.cod_bin, self.use_windows_codec_binaries) + self.dec_bin = get_binary_path(self.dec_bin, self.use_windows_codec_binaries) # existence of error pattern files (if given) already here if self.tx is not None: @@ -137,15 +117,15 @@ class IVASCombined(Processing): logger.debug(f"IVAS {in_file.absolute()} -> {out_file.absolute()}") # split into objects and spatial files - in_file_objects = in_file.with_suffix(f".objects{in_file.suffix}") - in_file_spatial = in_file.with_suffix(f".spatial{in_file.suffix}") + in_file_objects = out_file.with_suffix(f".objects{in_file.suffix}") + in_file_spatial = out_file.with_suffix(f".spatial{in_file.suffix}") in_audio, fs = read(in_file) write(in_file_objects, in_audio[:, : self.in_fmt.num_ism_channels], fs) write(in_file_spatial, in_audio[:, self.in_fmt.num_ism_channels :], fs) - out_file_objects = out_file.with_suffix(f".objects{out_file.suffix}") - out_file_spatial = out_file.with_suffix(f".spatial{out_file.suffix}") + out_file_objects = out_file.with_suffix(f".objects.ivas{out_file.suffix}") + out_file_spatial = out_file.with_suffix(f".spatial.ivas{out_file.suffix}") in_meta_objects = in_meta[: self.in_fmt.num_ism_channels] in_meta_spatial = in_meta[self.in_fmt.num_ism_channels :] @@ -161,11 +141,6 @@ class IVASCombined(Processing): out_audio_objects, fs = read(out_file_objects) out_audio_spatial, fs = read(out_file_spatial) - # combine outputs, with gain factor if OSBA - if isinstance(self.in_fmt, audio.OSBAAudio): - out_audio_objects *= 0.5 - out_audio_spatial *= 0.5 - out_audio = out_audio_objects + out_audio_spatial write(out_file, out_audio, fs) diff --git a/ivas_processing_scripts/processing/postprocessing.py b/ivas_processing_scripts/processing/postprocessing.py index a440518a1290a95bdb01a8bc761b00fa07e51579..b7a470023b5cbbcd691430220607d40c658c88de 100755 --- a/ivas_processing_scripts/processing/postprocessing.py +++ b/ivas_processing_scripts/processing/postprocessing.py @@ -34,6 +34,7 @@ import logging from pathlib import Path from ivas_processing_scripts.audiotools import convert +from ivas_processing_scripts.audiotools.utils import truncate_trajectory_3dof from ivas_processing_scripts.processing.processing import Processing @@ -49,6 +50,21 @@ class Postprocessing(Processing): logger.debug(f"Postprocessing configuration : {self.__dict__}") logger.debug(f"Postprocessing {in_file.absolute()} -> {out_file.absolute()}") + # search for a trajectory file if the trajectory is not given, but the dir is specified + if getattr(self, "trajectory_dir", None): + trj_name = out_file.name.split(".")[0] + self.trajectory = self.trajectory_dir.joinpath(f"{trj_name}.wav.ht.csv") + if not self.trajectory.exists(): + raise FileNotFoundError( + f"Trajectory file {self.trajectory} not found! Please check the configuration" + ) + + # truncate trajectory to 3DoF if needed + if getattr(self, "only_3dof", None): + trj_3dof = out_file.with_suffix("_3dof.csv") + truncate_trajectory_3dof(self.trajectory, trj_3dof) + self.trajectory = trj_3dof + convert.convert_file( in_file, out_file, logger=logger, in_meta=in_meta, **self.__dict__ ) diff --git a/ivas_processing_scripts/processing/preprocessing_2.py b/ivas_processing_scripts/processing/preprocessing_2.py index 646dc3cbd645b4bddf4ced33fa78fb7007ce5fa4..710b9cf039dd8ad490234f57c8927cf2d697ade7 100644 --- a/ivas_processing_scripts/processing/preprocessing_2.py +++ b/ivas_processing_scripts/processing/preprocessing_2.py @@ -35,12 +35,12 @@ from pathlib import Path from warnings import warn import numpy as np - from ivas_processing_scripts.audiotools import audio from ivas_processing_scripts.audiotools.audioarray import trim from ivas_processing_scripts.audiotools.audiofile import write from ivas_processing_scripts.audiotools.metadata import ( - add_remove_preamble, + add_masa_metadata_preamble_repeat, + add_remove_ism_metadata_preamble, write_ISM_metadata_in_file, ) from ivas_processing_scripts.audiotools.wrappers.bs1770 import ( @@ -64,26 +64,15 @@ class Preprocessing2(Processing): self.in_fmt, in_file, fs=self.in_fs, in_meta=in_meta ) - if isinstance( - audio_object, (audio.MetadataAssistedSpatialAudio, audio.OMASAAudio) - ): - if self.preamble > 0 or self.background_noise or self.repeat_signal: - raise ValueError( - "No preprocessing 2 possible for formats including MASA metadata" - ) - # modify ISM metadata if self.in_fmt.startswith("ISM"): - if not self.preamble: - preamble = 0 - else: - preamble = self.preamble + preamble = self.preamble or 0 # read out old metadata = audio_object.object_pos # add preamble - metadata = add_remove_preamble(metadata, preamble) + metadata = add_remove_ism_metadata_preamble(metadata, preamble) # repeat signal if self.repeat_signal: @@ -95,6 +84,16 @@ class Preprocessing2(Processing): audio_object.metadata_files = meta_files audio_object.object_pos = metadata + if "MASA" in self.in_fmt: + add_masa_metadata_preamble_repeat( + audio_object, + in_meta[-1], + out_file.with_suffix(".wav.met"), + self.preamble or 0, + self.repeat_signal, + logger, + ) + # modify audio signal # add preamble if self.preamble > 0: @@ -135,7 +134,7 @@ class Preprocessing2(Processing): raise ValueError( f"Background noise path {self.background_noise.get('background_noise_path')} does not exist" ) - # load background noise + # load preprocessed background noise if self.background_noise["background_object"] is not None: noise_object = self.background_noise["background_object"] else: @@ -163,7 +162,7 @@ class Preprocessing2(Processing): out_format = self.out_fmt loudness_signal, _, _ = get_loudness( - audio_object, loudness_format=out_format + audio_object, loudness_format=out_format, logger=logger ) logger.debug( f"Loudness of audio signal: {loudness_signal}LKFS ({out_format})" diff --git a/ivas_processing_scripts/processing/processing.py b/ivas_processing_scripts/processing/processing.py index ca4c6940fc6f5fce6f6c71e33d80254deb4b152e..5b02f9cd4a0cf947963cd3683207b0b0276a7e97 100755 --- a/ivas_processing_scripts/processing/processing.py +++ b/ivas_processing_scripts/processing/processing.py @@ -31,34 +31,30 @@ # import logging -import sys from abc import ABC, abstractmethod from itertools import repeat -from multiprocessing import Pool from pathlib import Path from shutil import copyfile -from time import sleep from typing import Iterable, Union from warnings import warn -import numpy as np - from ivas_processing_scripts.audiotools import audio from ivas_processing_scripts.audiotools.audioarray import window from ivas_processing_scripts.audiotools.audiofile import concat, trim from ivas_processing_scripts.audiotools.constants import IVAS_FRAME_LEN_MS from ivas_processing_scripts.audiotools.convert.__init__ import convert from ivas_processing_scripts.audiotools.metadata import ( - add_remove_preamble, - concat_meta_from_file, + add_remove_ism_metadata_preamble, + concat_ism_metadata_files, + concat_masa_metadata_files, ) from ivas_processing_scripts.constants import LOGGER_DATEFMT, LOGGER_FORMAT from ivas_processing_scripts.processing.config import TestConfig +from ivas_processing_scripts.processing.tx import get_timescaled_splits from ivas_processing_scripts.utils import ( - list_audio, + apply_func_parallel, + list_audio_or_md, pairwise, - progressbar_update, - spinner, ) @@ -129,30 +125,41 @@ def concat_setup(cfg: TestConfig, chain, logger: logging.Logger): except AttributeError: input_format = cfg.input["fmt"] - # concatenation of met files not possible -> do not concatenate MASA and OMASA - if "MASA" in input_format: - raise ValueError( - "Concatenation of formats including MASA metadata not possible" - ) + concat_md_prefix = cfg.tmp_dirs[0].joinpath( + f"{cfg.input_path.name}_concatenated.wav" + ) - # concatenate ISM metadata if input_format.startswith("ISM"): cfg.concat_meta = [] - for obj_idx in range(len(cfg.metadata_path[0])): - cfg.concat_meta.append( - cfg.tmp_dirs[0].joinpath( - f"{cfg.input_path.name}_concatenated.wav.{obj_idx}.csv" - ) - ) - concat_meta_from_file( + for i, md in enumerate(cfg.metadata_path[0]): + if md.suffix == ".csv": + cfg.concat_meta.append(Path(f"{concat_md_prefix}.{i}.csv")) + elif md.suffix == ".met": + cfg.concat_meta.append(Path(f"{concat_md_prefix}.met")) + + concat_ism_metadata_files( cfg.items_list, cfg.metadata_path, cfg.concat_meta, input_format, ) + if "MASA" in input_format: + concat_masa_metadata_files( + cfg.metadata_path, + cfg.concat_meta[-1], + ) # set input to the concatenated file we have just written to the output dir cfg.metadata_path = [cfg.concat_meta] + elif input_format.startswith("MASA"): + cfg.concat_meta = Path(f"{concat_md_prefix}.met") + concat_masa_metadata_files( + cfg.metadata_path, + cfg.concat_meta, + ) + + # set input to the concatenated file we have just written to the output dir + cfg.metadata_path = [[cfg.concat_meta]] # concatenate audio cfg.concat_file = cfg.tmp_dirs[0].joinpath( @@ -202,94 +209,75 @@ def concat_setup(cfg: TestConfig, chain, logger: logging.Logger): def concat_teardown( - x, splits, out_fmt, fs, in_fs, meta, tracefile, ivas_jbm, logger: logging.Logger + x, + splits, + out_fmt, + fs, + in_fs, + meta, + tracefile, + tracefile_needed, + repeat_signal, + preamble, + logger: logging.Logger, ): if splits is None: raise ValueError("Splitting not possible without split marker") - if ivas_jbm and tracefile is None: + if tracefile_needed and tracefile is None: raise ValueError( "Splitting for IVAS JBM conditions not possible without tracefile" ) - if (out_fmt.startswith("ISM") or out_fmt.startswith("MASA")) and ivas_jbm: + if (out_fmt.startswith("ISM") or out_fmt.startswith("MASA")) and tracefile_needed: raise ValueError( - "Splitting with JBM compensation not supportet for formats with metadata (e.g. MASA, ISM)" + "Splitting with JBM compensation not supported for formats with metadata (e.g. MASA, ISM)" ) - if logger and ivas_jbm: + if logger and tracefile_needed: logger.debug("Split files with JBM compensation") elif logger: logger.debug("Split files") - if not ivas_jbm: + if not tracefile_needed: # if sampling rate changed, adjust splits fs_new = float(fs) fs_old = float(in_fs) relative_fs_change = fs_new / fs_old new_splits = [0] for split_i in splits: - new_splits.append(int(float(split_i) * relative_fs_change)) + new_splits.append(int(split_i * relative_fs_change)) splits = new_splits else: - # adjust splits for jbm ivas conditions - # following code is based on jbmtrim.cpp script - rtpTimeScale = 1000 # in ms - playTimeScale = 1000 # in ms - new_splits = [None] * (len(splits) + 1) - - split_start = 1 / float(fs) - i = 0 - lastRtpTs = 0 - lastPlayTime = 0 - # find last JBM trace entry with lower or equal RTP time stamp - for j in range(tracefile.shape[0]): - entry = tracefile[j] - # ignore frames with unknown RTP time stamp or playout time - if entry[1] == -1 or entry[3] < 0: - continue - # check if the next position to cut is found - if entry[1] / rtpTimeScale >= split_start: - # interpolate between current and previous RTP time stamp to - # increase accuracy in case of DTX where lot of time stamps are missing - if (num := entry[1] / rtpTimeScale - split_start) == 0: - rtpTsRelErr = num - else: - rtpTsRelErr = num / ( - ((entry[1] - lastRtpTs) / rtpTimeScale) + sys.float_info.epsilon - ) - playTimeAbsErr = rtpTsRelErr * (entry[3] - lastPlayTime) / playTimeScale - # found one split, save in list and search for next - new_splits[i] = entry[3] / playTimeScale - playTimeAbsErr - # get next split marker; add one to make computation more similar to jbmtrim - split_start = (float(splits[i]) + 1) / float(fs) - i += 1 - if i >= len(new_splits): - break - lastRtpTs = entry[1] - lastPlayTime = entry[3] - - # check if all splits are found - if i < (len(new_splits) - 1): - raise ValueError("Error in item splitting with JBM compensation") - elif i < (len(new_splits)): - # catch item with missing end - warn("Last split after end of file for IVAS JBM condition") - new_splits[i] = lastPlayTime / playTimeScale - - # set new values and use new sampling rate - splits = new_splits - for s in range(len(splits)): - # subtract one again (was only used to make computation more similar to jbmtrim) - splits[s] = int(np.floor(splits[s] * float(in_fs))) - 1 + # handle signal repeat and preamble for JBM conditions since we have trace data + + # for preamble, the first split point should be at the end of the preamble + preamble_smp = preamble * in_fs // 1000 if preamble > 0 else 0 + # for repeat signal, the first split point should be the start of the repetition + repeat_start = preamble_smp + splits[-1] if repeat_signal else 0 + + # adjust the offsets of the splits accordingly + splits = [ + preamble_smp + repeat_start, + *[s + preamble_smp + repeat_start for s in splits], + ] + + splits_ts = get_timescaled_splits(tracefile, splits, fs, in_fs) + + # the above function assumes the starting point is the first playout frame + # for repeat signal or preamble, we don't want the split to start there + if repeat_signal or preamble > 0: + splits = splits_ts[1:] # check if last split ending coincides with last sample of signal if splits[-1] > len(x): - raise ValueError( + warn( f"Last split index {splits[-1]} is larger than the signal length {len(x)}" + f"\nLast split exceeds signal length by {((splits[-1] - len(x)) * 1000) / fs:.2f} ms" ) - elif (splits[-1] < len(x)) and not ivas_jbm: + elif (splits[-1] < len(x)) and not tracefile_needed: warn( f"Last split index {splits[-1]} is smaller than the signal length {len(x)}" + f"\nLast split shorter than signal length by {((len(x) - splits[-1]) * 1000) / fs:.2f} ms" ) split_signals = [] @@ -331,10 +319,6 @@ def preprocess(cfg, logger): logger.info(f" Generating condition: {preprocessing['name']}") - # set up values for progress display and chunksize - count = len(cfg.items_list) - width = 80 - # run preprocessing args = list( zip( @@ -346,27 +330,12 @@ def preprocess(cfg, logger): cfg.metadata_path, ) ) - p = Pool() - results = p.starmap_async( - process_item, - args, + apply_func_parallel( + process_item, args, None, "mp" if cfg.multiprocessing else None, True ) - # poll progress - progressbar_update(0, count, width) - while not results.ready(): - progressbar_update(count - int(results._number_left), count, width) - spinner() - sleep(0.1) - progressbar_update(count, count, width) - print("", flush=True, file=sys.stdout) - results.get() - - p.close() - p.join() - # update the configuration to use preprocessing outputs as new inputs - cfg.items_list = list_audio( + cfg.items_list = list_audio_or_md( cfg.out_dirs[0], select_list=getattr(cfg, "input_select", None) ) @@ -427,10 +396,6 @@ def preprocess_2(cfg, logger): if chain[0].concatenate_input: concat_setup(cfg, chain, logger) - # set up values for progress display and chunksize - count = len(cfg.items_list) - width = 80 - # run preprocessing 2 args = list( zip( @@ -442,37 +407,21 @@ def preprocess_2(cfg, logger): cfg.metadata_path, ) ) - p = Pool() - results = p.starmap_async( - process_item, - args, + apply_func_parallel( + process_item, args, None, "mp" if cfg.multiprocessing else None, True ) - # poll progress - progressbar_update(0, count, width) - while not results.ready(): - progressbar_update(count - int(results._number_left), count, width) - spinner() - sleep(0.1) - progressbar_update(count, count, width) - print("", flush=True, file=sys.stdout) - results.get() - - p.close() - p.join() - # update the configuration to use preprocessing 2 outputs as new inputs - cfg.items_list = list_audio( + cfg.items_list = list_audio_or_md( cfg.out_dirs[0], select_list=getattr(cfg, "input_select", None) ) - if cfg.metadata_path[0] is not None: - for item_idx in range(len(cfg.metadata_path)): - for obj_idx in range(len(cfg.metadata_path[item_idx])): - if cfg.metadata_path[item_idx][obj_idx]: - cfg.metadata_path[item_idx][obj_idx] = cfg.out_dirs[0] / Path( - f"{cfg.items_list[item_idx].stem}.wav.{obj_idx}.csv" - ) + # update the metadata list to use preprocessing 2 outputs as well + for md_files in cfg.metadata_path: + for i, md in enumerate(md_files): + if md: + md_files[i] = cfg.out_dirs[0] / md.name + # remove already applied processing stage cfg.proc_chains = cfg.proc_chains[1:] cfg.tmp_dirs = cfg.tmp_dirs[1:] @@ -604,7 +553,7 @@ def remove_preamble(x, out_fmt, fs, repeat_signal, preamble_len_ms, meta, logger # remove preamble if preamble_len_ms > 0: - meta = add_remove_preamble(meta, preamble_len_ms, add=False) + meta = add_remove_ism_metadata_preamble(meta, preamble_len_ms, add=False) # cut first half of signal if repeat_signal: @@ -622,7 +571,14 @@ def remove_preamble(x, out_fmt, fs, repeat_signal, preamble_len_ms, meta, logger def preprocess_background_noise(cfg): - # TODO: add checks and errors for sampling rate and number channels compared to input signals + if not ( + hasattr(cfg, "preprocessing") + and hasattr(cfg.pre2, "background_noise") + and cfg.pre2.background_noise is not None + and cfg.pre2.background_noise.get("background_noise_path") + ): + return + # create audio objects input_audio = audio.fromfile( cfg.input["fmt"], @@ -636,7 +592,10 @@ def preprocess_background_noise(cfg): else: out_fs = cfg.pre.out_fs - # only consider format conversion, resampling and high-pass filtering + if hasattr(input_audio, "object_pos"): + output_audio.object_pos = input_audio.object_pos + + # only apply format conversion, resampling and filtering convert( input=input_audio, output=output_audio, @@ -646,7 +605,6 @@ def preprocess_background_noise(cfg): ) # save result in cfg - # cfg.preprocessing_2["background_noise"].update({"background_object": output_audio}) cfg.proc_chains[0]["processes"][0].background_noise[ "background_object" ] = output_audio diff --git a/ivas_processing_scripts/processing/processing_splitting_scaling.py b/ivas_processing_scripts/processing/processing_splitting_scaling.py index 2280f2036e1f8553d19fe2cf1d4a89aa5b6d19b2..88e5ed33c187156d821973af1ed829a5846858a0 100644 --- a/ivas_processing_scripts/processing/processing_splitting_scaling.py +++ b/ivas_processing_scripts/processing/processing_splitting_scaling.py @@ -4,7 +4,6 @@ from itertools import repeat from pathlib import Path import numpy as np - from ivas_processing_scripts.audiotools import audio from ivas_processing_scripts.audiotools.audiofile import read, write from ivas_processing_scripts.audiotools.metadata import write_ISM_metadata_in_file @@ -203,8 +202,19 @@ class Processing_splitting_scaling(Processing): def revert_preamble_concatenation( self, x, fs, in_file, out_file, in_meta, noerror=False, logger=None ): + tracefile_needed = self.ivas_jbm and not noerror + + if tracefile_needed: + # read JBM data + tracefile = in_file.with_name(f"{in_file.name.split('.')[0]}.tracefile.csv") + tracefile_data = np.genfromtxt(tracefile, delimiter=";") + validate_tracefile(tracefile_data) + else: + tracefile_data = None + # remove preamble and first half of signal due to repetition - if self.preamble or self.repeat_signal: + # JBM conditions are handled later in concat_teardown + if not tracefile_needed and (self.preamble or self.repeat_signal): x, in_meta = remove_preamble( x, self.out_fmt, @@ -215,7 +225,7 @@ class Processing_splitting_scaling(Processing): logger, ) - # reverse concatenation + # reverse concatenation, also handles repeat_signal/preamble reversal for JBM if self.concatenate_input: # read out splits file -> start/end, names, sampling rate splits_info_file = Path( @@ -224,22 +234,6 @@ class Processing_splitting_scaling(Processing): ) ) splits, split_names, split_fs = read_splits_file(splits_info_file) - if self.ivas_jbm and not noerror: - # read out tracefile with jbm info - tracefile_info_file = Path( - f"{in_file.with_suffix('').with_suffix('')}.tracefile.csv" - ) - tracefile_info = np.genfromtxt(tracefile_info_file, delimiter=";") - validate_tracefile(tracefile_info) - else: - tracefile_info = None - - # split file - if self.ivas_jbm and not noerror: - # only use flag if IVAS JBM condition but not the loudness reference without error is processed - ivas_jbm_splitting_flag = True - else: - ivas_jbm_splitting_flag = False file_splits, meta_splits, new_splits = concat_teardown( x, @@ -248,8 +242,10 @@ class Processing_splitting_scaling(Processing): fs, split_fs, in_meta, - tracefile_info, - ivas_jbm_splitting_flag, + tracefile_data, + tracefile_needed, + self.repeat_signal, + self.preamble, logger, ) @@ -311,8 +307,9 @@ def read_splits_file(splits_file): """Read out splitting information from split log in preproceesing 2 temp folder""" with open(splits_file, "r") as f: splits = f.readline()[:-1].split(", ") + splits = [int(s) for s in splits] names = f.readline()[:-1].split(", ") - fs = f.readline()[:-1] + fs = int(f.readline()[:-1]) return splits, names, fs diff --git a/ivas_processing_scripts/processing/tx.py b/ivas_processing_scripts/processing/tx.py index e8f3f954a45f32e471d232cc2c282bca75b75eb8..f5c0c9029dbfbd502ac5e31689febc44eb12efa1 100755 --- a/ivas_processing_scripts/processing/tx.py +++ b/ivas_processing_scripts/processing/tx.py @@ -30,8 +30,11 @@ # the United Nations Convention on Contracts on the International Sales of Goods. # +import sys from typing import Optional +from warnings import warn +import numpy as np from ivas_processing_scripts.processing.config import TestConfig from ivas_processing_scripts.utils import get_abs_path @@ -46,27 +49,75 @@ def get_tx_cfg(cfg: TestConfig, cond_cfg: dict, is_EVS: bool = False) -> Optiona if tx_cfg_tmp.get("type", None) == "FER": tx_cfg = { "type": tx_cfg_tmp.get("type"), - "error_pattern": get_abs_path(tx_cfg_tmp.get("error_pattern", None)), - "error_rate": tx_cfg_tmp.get("error_rate", None), + "error_pattern": get_abs_path(tx_cfg_tmp.get("error_pattern")), + "error_rate": tx_cfg_tmp.get("error_rate"), "master_seed": cfg.master_seed, "prerun_seed": cfg.prerun_seed, } - elif tx_cfg_tmp.get("type", None) == "JBM": + elif tx_cfg_tmp.get("type", None).startswith("JBM"): tx_cfg = { "type": tx_cfg_tmp.get("type"), - "error_pattern": get_abs_path(tx_cfg_tmp.get("error_pattern", None)), - "errpatt_seed": tx_cfg_tmp.get("errpatt_seed", None), - "error_profile": tx_cfg_tmp.get("error_profile", None), - "n_frames_per_packet": tx_cfg_tmp.get("n_frames_per_packet", None), + "error_pattern": get_abs_path(tx_cfg_tmp.get("error_pattern")), + "errpatt_seed": tx_cfg_tmp.get("errpatt_seed"), + "error_profile": tx_cfg_tmp.get("error_profile"), + "n_frames_per_packet": tx_cfg_tmp.get("n_frames_per_packet"), "master_seed": cfg.master_seed, + "errpatt_late_loss_rate": tx_cfg_tmp.get("errpatt_late_loss_rate"), + "errpatt_delay": tx_cfg_tmp.get("errpatt_delay"), } - # EVS specific keys - if is_EVS: - tx_cfg["errpatt_late_loss_rate"] = tx_cfg_tmp.get( - "errpatt_late_loss_rate", None - ) - tx_cfg["errpatt_delay"] = tx_cfg_tmp.get("errpatt_delay", None) else: raise ValueError("Type of bitstream procesing either missing or not valid") return tx_cfg + + +def get_timescaled_splits(tracefile, splits, out_fs, in_fs): + # adjust splits for jbm ivas conditions + # following code is based on jbmtrim.cpp script + rtpTimeScale = 1000 # in ms + playTimeScale = 1000 # in ms + new_splits = [None] * (len(splits) + 1) + + split_start = 1 / float(out_fs) + i = 0 + lastRtpTs = 0 + lastPlayTime = 0 + # find last JBM trace entry with lower or equal RTP time stamp + for entry in tracefile: + # ignore frames with unknown RTP time stamp or playout time + if entry[1] == -1 or entry[3] < 0: + continue + # check if the next position to cut is found + if entry[1] / rtpTimeScale >= split_start: + # interpolate between current and previous RTP time stamp to + # increase accuracy in case of DTX where lot of time stamps are missing + if (num := entry[1] / rtpTimeScale - split_start) == 0: + rtpTsRelErr = num + else: + rtpTsRelErr = num / ( + ((entry[1] - lastRtpTs) / rtpTimeScale) + sys.float_info.epsilon + ) + playTimeAbsErr = rtpTsRelErr * (entry[3] - lastPlayTime) / playTimeScale + # found one split, save in list and search for next + new_splits[i] = entry[3] / playTimeScale - playTimeAbsErr + # get next split marker; add one to make computation more similar to jbmtrim + split_start = (splits[i] + 1) / float(out_fs) + i += 1 + if i >= len(new_splits): + break + lastRtpTs = entry[1] + lastPlayTime = entry[3] + + # check if all splits are found + if i < (len(new_splits) - 1): + raise ValueError("Error in item splitting with JBM compensation") + elif i < (len(new_splits)): + # catch item with missing end + warn("Last split after end of file for IVAS JBM condition") + new_splits[i] = lastPlayTime / playTimeScale + + # set new values and use new sampling rate + # subtract one again (was only used to make computation more similar to jbmtrim) + new_splits = [int(np.floor(s * float(in_fs))) - 1 for s in new_splits] + + return new_splits diff --git a/ivas_processing_scripts/utils.py b/ivas_processing_scripts/utils.py index 945d07911c6ee8a7048399b5c23132b51f6a5aab..08c7bbe205e879a4553a7ec284c5d4157c0d5284 100755 --- a/ivas_processing_scripts/utils.py +++ b/ivas_processing_scripts/utils.py @@ -45,6 +45,7 @@ from typing import Callable, Iterable, Optional, Union import yaml ALLOWED_INPUT_EXT = (".wav", ".pcm", ".txt", ".raw") +ALLOWED_INPUT_EXT_MD = (".csv", ".met") BIN_DIR = Path(__file__).parent.joinpath("bin") BUSY_SPINNER = cycle(["|", "/", "-", "\\"]) @@ -99,7 +100,9 @@ class DirManager: ) -def list_audio(path: str, select_list: list = None) -> list: +def list_audio_or_md( + path: str, select_list: list = None, allowed_ext=ALLOWED_INPUT_EXT +) -> list: """ Return list with all files with ALLOWED_INPUT_EXT found under the given path. @@ -114,11 +117,11 @@ def list_audio(path: str, select_list: list = None) -> list: audio_list = [ f.resolve().absolute() for f in path.iterdir() - if f.suffix in ALLOWED_INPUT_EXT + if f.suffix in allowed_ext ] else: ext = path.suffix - if ext in ALLOWED_INPUT_EXT: + if ext in allowed_ext: audio_list.append(path.resolve().absolute()) # filter according to select list @@ -149,6 +152,22 @@ def use_wine(use_windows_codec_binaries: bool): return linux_system and not wsl and use_windows_codec_binaries +def get_binary_path(binary: str, use_windows_codec_binaries: bool) -> Path: + need_exe_suffix = platform.system() == "Windows" or use_windows_codec_binaries + + if need_exe_suffix and binary: + binary = Path(binary).with_suffix(".exe") + + if not binary or not binary.exists(): + raise FileNotFoundError( + f"The binary {binary.name} was not found!" + f"\nProvided path was '{binary}'." + "\nPlease check the configuration." + ) + + return binary + + def find_binary( binary: str, raise_error: Optional[bool] = True, @@ -281,7 +300,7 @@ def pairwise(iter): def progressbar_update(progress, count, width): fill = int(width * progress / count) print( - f"{int(progress/count*100):3d}%{'['}{'='*fill}{(' '*(width-fill))}{']'}{progress:4d}/{count:4d}", + f"{int(progress / count * 100):3d}%{'['}{'=' * fill}{(' ' * (width - fill))}{']'}{progress:4d}/{count:4d}", end="\r", file=sys.stdout, flush=True, diff --git a/other/get_md5.ps1 b/other/attic/get_md5.ps1 similarity index 100% rename from other/get_md5.ps1 rename to other/attic/get_md5.ps1 diff --git a/other/get_md5.sh b/other/attic/get_md5.sh similarity index 100% rename from other/get_md5.sh rename to other/attic/get_md5.sh diff --git a/other/check_ISM.sh b/other/check_ISM.sh new file mode 100755 index 0000000000000000000000000000000000000000..97690317a94be5f08f80cf038e9e419ba23748d4 --- /dev/null +++ b/other/check_ISM.sh @@ -0,0 +1,92 @@ +#!/usr/bin/env bash + +# (C) 2022-2025 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, +# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., +# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, +# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other +# contributors to this repository. All Rights Reserved. + +# This software is protected by copyright law and by international treaties. +# The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, +# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., +# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, +# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other +# contributors to this repository retain full ownership rights in their respective contributions in +# the software. This notice grants no license of any kind, including but not limited to patent +# license, nor is any license granted by implication, estoppel or otherwise. + +# Contributors are required to enter into the IVAS codec Public Collaboration agreement before making +# contributions. + +# This software is provided "AS IS", without any express or implied warranties. The software is in the +# development stage. It is intended exclusively for experts who have experience with such software and +# solely for the purpose of inspection. All implied warranties of non-infringement, merchantability +# and fitness for a particular purpose are hereby disclaimed and excluded. + +# Any dispute, controversy or claim arising under or in relation to providing this software shall be +# submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in +# accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and +# the United Nations Convention on Contracts on the International Sales of Goods. + + +# Usage: check_ISM.sh audio.wav ism_metadata.0.csv [... ism_metadata.4.csv] +# Compares the number of audio frames against the number of frames in the object metadata +# Requires: InfoAudio + + +if (( $# < 2 || $# > 5 )); then + echo "" + echo "Usage: $0 audio.wav ism_metadata.0.csv [... ism_metadata.4.csv]" >&2 + echo "file_name;success;audio_20ms_aligned;no_audio_frames;no_object_frames" >&2 + exit 1 +fi + +InfoAudio=InfoAudio + +audio_file=$1 +metadata_files=("${@:2}") +line_counts=() + +# getting all info from InfoAudio - storing in res +res=`$InfoAudio "$audio_file"` +# paring res +sampleFreq=`echo "$res" | grep -m1 "Sampling frequency" | sed -e 's/\([a-zA-Z\. ]*: \)\([0-9]*\)\(.*\)/\2/g'` +frameSize=$(( sampleFreq / 50 )) +numberSamples=`echo "$res" | grep -m1 "No. frames" | sed -e 's/\([a-zA-Z\. ]*: \)\([0-9]*\)\(.*\)/\2/g'` +numberSampleFrames=$(( numberSamples / frameSize )) + +aligned20ms=false +remainder=$(expr $numberSamples % 960) +if [ $remainder -eq 0 ]; then + aligned20ms=true +fi + +# iterate over metadata-files +for file in "${metadata_files[@]}"; do + if [[ -r $file ]]; then + # count number of lines + lines=$(wc -l < "$file") + line_counts+=("$lines") + else + echo "Warning: File '$file' not found or not readable" >&2 + line_counts+=(0) + fi +done + +success=true +if [[ "$aligned20ms" == "false" ]]; then + success=false +fi + +no_object_frames="" +for i in "${!line_counts[@]}"; do + count="${line_counts[i]//[[:space:]]/}" # also remove any whitespace + no_object_frames+=";$count" + + if (( count != numberSampleFrames )); then + success=false + fi +done + +# echo "file_name;success;audio_20ms_aligned;no_audio_frames;no_object_frames" +echo "${audio_file};${success};${aligned20ms};${numberSampleFrames}${no_object_frames}" diff --git a/other/get_md5.py b/other/get_md5.py new file mode 100644 index 0000000000000000000000000000000000000000..25390a4a76fe4518db35655ab87652772a989c06 --- /dev/null +++ b/other/get_md5.py @@ -0,0 +1,92 @@ +#! /usr/bin/env python3 +# (C) 2022-2024 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, +# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., +# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, +# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other +# contributors to this repository. All Rights Reserved. + +# This software is protected by copyright law and by international treaties. +# The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, +# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., +# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, +# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other +# contributors to this repository retain full ownership rights in their respective contributions in +# the software. This notice grants no license of any kind, including but not limited to patent +# license, nor is any license granted by implication, estoppel or otherwise. + +# Contributors are required to enter into the IVAS codec Public Collaboration agreement before making +# contributions. + +# This software is provided "AS IS", without any express or implied warranties. The software is in the +# development stage. It is intended exclusively for experts who have experience with such software and +# solely for the purpose of inspection. All implied warranties of non-infringement, merchantability +# and fitness for a particular purpose are hereby disclaimed and excluded. + +# Any dispute, controversy or claim arising under or in relation to providing this software shall be +# submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in +# accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and +# the United Nations Convention on Contracts on the International Sales of Goods. + +import argparse +from collections import Counter +from hashlib import md5 +from pathlib import Path + + +def get_hash_line_for_file(file: Path, output_dir: Path): + with open(file, "rb") as f: + hash = md5(f.read()).hexdigest() + + filepath = file.relative_to(output_dir) + # always print forward slashes even on windows to be able to diff the result files + hashline = f"{str(filepath.as_posix())} {hash}\n" + + return hashline + + +def get_duplicates(hashlines: list) -> dict: + count = Counter([line.split()[-1] for line in hashlines]) + duplicates = {} + for hash, count in count.items(): + if count == 1: + continue + + files = [line.replace(hash, "").strip() for line in hashlines if hash in line] + duplicates[hash] = files + + return duplicates + + +def main(output_dir, out_file): + wav_files = sorted(output_dir.glob("*/**/*c[0-9][0-9].wav")) + + hashlines = [get_hash_line_for_file(f, output_dir) for f in wav_files] + duplicates = get_duplicates(hashlines) + + if len(duplicates) != 0: + print( + "Found duplicate hashes! The following hashes were found in multipe files:" + ) + for hash, files in duplicates.items(): + print(f"{hash} - {', '.join(files)}") + + with open(out_file, "w") as f: + f.writelines(hashlines) + + +if __name__ == "__main__": + parser = argparse.ArgumentParser( + description="Cross-platform script for generating MD5 hashes of output files for the characterization testing experiments." + ) + parser.add_argument( + "output_dir", + type=Path, + help="Path to the output directory of the respective experiment that you want to generate Hashes for. Can be proc_output or proc_final.", + ) + parser.add_argument( + "out_file", type=Path, help="Output text file with filenames and Hashes" + ) + + args = parser.parse_args() + + main(args.output_dir, args.out_file) diff --git a/other/lp16k.py b/other/lp16k.py index c9ae6706bc7b3ab4ada0d68f36011f4862bdd45b..6f806569dd33f5cba4d3855a6cb30d354d021551 100755 --- a/other/lp16k.py +++ b/other/lp16k.py @@ -46,7 +46,7 @@ def lp16k(in_file, out_file): x = fromfile("STEREO", in_file) if x.fs != 48000: raise ValueError( - f"Unsupported sampling rate {x.fs//1000} kHz for input file {in_file} - only 48 kHz is supported!" + f"Unsupported sampling rate {x.fs // 1000} kHz for input file {in_file} - only 48 kHz is supported!" ) # save length of audio since resampling can alter the length by one sample due to rounding diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000000000000000000000000000000000000..97a189ee9cfbfde37c2d0de50fb60b43551b201f --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,11 @@ +[project] +name = "ivas-processing-scripts" +version = "2025.09" +dependencies = ["numpy>=2.0.2,<3", "pyyaml>=6.0.2,<7", "scipy>=1.13.1,<2"] +requires-python = "==3.13.7" +maintainers = [ + { name = "Archit Tamarapu", email = "archit.tamarapu@iis.fraunhofer.de" }, +] +description = "Scripts to setup and run the IVAS characterization and selection listening tests" +readme = "README.md" +license-files = ["LICENSE.md"] diff --git a/requirements.txt b/requirements.txt index 74279e75274374d26604bf90d14e3b6c8514a20b..9863e16dc63d8bdf8571311a009ca454d3f8b60d 100755 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ -numpy -pyyaml -scipy +numpy>=2.0.2,<3 +pyyaml>=6.0.2,<7 +scipy>=1.13.1,<2 \ No newline at end of file diff --git a/tests/test_audiotools_convert.py b/tests/test_audiotools_convert.py index 6a6c7f2cf8501f4d1c397767b38258961a077a9e..6bca6e0cc599655ccec6055494a3d439c52bf31f 100644 --- a/tests/test_audiotools_convert.py +++ b/tests/test_audiotools_convert.py @@ -34,9 +34,9 @@ from pathlib import PurePath from typing import Optional import pytest - from ivas_processing_scripts.audiotools.audiofile import read from ivas_processing_scripts.audiotools.convert import convert_file + from tests.constants import ( CUSTOM_LAYOUT_DIR, CUSTOM_LS_TO_TEST, diff --git a/tests/test_binaries_present.py b/tests/test_binaries_present.py index 4567afa49e9f8279e48683f6e263f61cbbea67f9..18776721f35c5254b7ea99667a5fc8a75b6ef784 100755 --- a/tests/test_binaries_present.py +++ b/tests/test_binaries_present.py @@ -31,7 +31,6 @@ # import pytest - from ivas_processing_scripts.utils import find_binary BINARIES = [ @@ -41,9 +40,10 @@ BINARIES = [ "eid-xor", "gen-patt", "filter", + "IVAS_rend", "random", "networkSimulator_g192", - "masaRenderer", + # "masaRenderer", "masaAnalyzer", ] diff --git a/tests/test_experiments.py b/tests/test_experiments.py index b645d3a9e35ec467d6b71d99ec792b90372cad5c..91f2d96dbbccda82c47a067f6978765c969dd8f0 100644 --- a/tests/test_experiments.py +++ b/tests/test_experiments.py @@ -35,13 +35,13 @@ import sys from pathlib import Path import pytest -from numpy.random import random, seed - -from ivas_processing_scripts import main as generate_test from ivas_processing_scripts.audiotools import audio from ivas_processing_scripts.audiotools.audiofile import read, write from ivas_processing_scripts.processing.config import TestConfig -from ivas_processing_scripts.utils import list_audio +from ivas_processing_scripts.utils import list_audio_or_md +from numpy.random import random, seed + +from ivas_processing_scripts import main as generate_test from tests.constants import ( FORMAT_TO_METADATA_FILES, INPUT_EXPERIMENT_NAMES, @@ -51,7 +51,7 @@ from tests.constants import ( HERE = Path(__file__).parent.absolute() sys.path.append(HERE.parent) -from generate_test import Arguments, create_experiment_setup # NOQA +from generate_test_selection import Arguments, create_experiment_setup # NOQA N_INPUT_SIGNALS = 2 @@ -108,7 +108,7 @@ def all_lengths_equal(cfg): all_lengths_equal = True for condition in cfg.conditions_to_generate.keys(): output_condition_folder = output_folder.joinpath(condition) - for input_file in list_audio(cfg.input_path): + for input_file in list_audio_or_md(cfg.input_path): output_file = output_condition_folder.joinpath(input_file.name).with_suffix( f".{condition}.wav" ) diff --git a/tests/test_processing.py b/tests/test_processing.py index 1eac22b279923e5fd7f8f6362e82b27f6fed6832..6af362974cdce93bde452f49eefc0f8e1129042e 100644 --- a/tests/test_processing.py +++ b/tests/test_processing.py @@ -34,9 +34,9 @@ import shutil from pathlib import Path import pytest +from ivas_processing_scripts.processing.config import TestConfig from ivas_processing_scripts import main as generate_test -from ivas_processing_scripts.processing.config import TestConfig from tests.constants import INPUT_CONFIG_DIR, INPUT_CONFIG_FILES