diff --git a/README.md b/README.md index 2723e8fbe0d25734310eef1a67de1c6efef2e281..4707e1d16c2c8769d180c70ffb7259b8c35a5ca4 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 | diff --git a/ivas_processing_scripts/bin/README.md b/ivas_processing_scripts/bin/README.md index 89b09513e3644b9274a9d27a0aabac414410bf1e..4da2659087c5ab5bbfb9f400516a2b054f77a8fa 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 a0ce4f5b6793fa2d768f3999566e2ccb968807a5..62abb593d0f3e11d086aa9a9a3949a136cb9f16b 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"