From 937f1cad9e282e04815d902e5d5a70e13677a385 Mon Sep 17 00:00:00 2001 From: Vladimir Malenovsky Date: Fri, 19 May 2023 14:25:52 +0200 Subject: [PATCH 1/2] add info about reverb tool to README --- ivas_processing_scripts/bin/README.md | 1 + ivas_processing_scripts/binary_paths.yml | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ivas_processing_scripts/bin/README.md b/ivas_processing_scripts/bin/README.md index 89b09513..4da26590 100755 --- a/ivas_processing_scripts/bin/README.md +++ b/ivas_processing_scripts/bin/README.md @@ -7,6 +7,7 @@ Necessary additional executables: | 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 | diff --git a/ivas_processing_scripts/binary_paths.yml b/ivas_processing_scripts/binary_paths.yml index a0ce4f5b..62abb593 100644 --- a/ivas_processing_scripts/binary_paths.yml +++ b/ivas_processing_scripts/binary_paths.yml @@ -27,4 +27,6 @@ # ### Binary for JBM network similulator # networkSimulator_g192: "path/to/binary/networkSimulator_g192" # ### Binary for MASA rendering -# masaRenderer: "path/to/binary/masaRenderer" \ No newline at end of file +# masaRenderer: "path/to/binary/masaRenderer" +# ### Binary for reverberation +# reverb: "path/to/binary/reverb" -- GitLab From 35523737ddbfb3e6d559c64efc3628d2a623210a Mon Sep 17 00:00:00 2001 From: Vladimir Malenovsky Date: Fri, 19 May 2023 14:38:28 +0200 Subject: [PATCH 2/2] add info about item_generation_scripts to the main README file --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 2723e8fb..4707e1d1 100755 --- a/README.md +++ b/README.md @@ -47,6 +47,13 @@ --- +# Item generation + +The `item_generation_scripts` module may be used to generate audio items for the P.800 listening test according to the scene description. All scenes must be fully described in the `SCENE.yml` file. The module takes monophonic audio +files from the specified input directory as the input and store the audio items in the requested format specification to the specified output directory. The module also generates the associated metadata files in case the target format requires so. + +This module may be executed from the command-line with `python -m ivas_processing_scripts.generation item_gen_configs/SCENE.YML`. + # Listening test generation The `ivas_processing_scripts` module helps to quickly setup listening tests with multiple (pre-)processing and post-processing options. @@ -521,6 +528,7 @@ The following additional executables are needed for the different processing ste | ESDRU | esdru | https://github.com/openitu/STL | | Frame error pattern application | eid-xor | 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!) | +| Reverberation module | reverb | https://github.com/openitu/STL | | 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 | -- GitLab