Commit eebea347 authored by Anika Treffehn's avatar Anika Treffehn
Browse files

added config files for different labs

parent 449453b8
Loading
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -18,10 +18,10 @@ fs: 48000
# IR_fs: 48000

### Input path to mono files
input_path: "./items_mono"
input_path: "experiments/selection/P800-1/gen_input/items_mono"

### Input path to stereo impulse response files, default = './ivas_processing_scripts/generation/IR'
IR_path: "./IRs"
IR_path: "experiments/selection/P800-1/gen_input/IRs"

### Output path for generated test items and metadata files
output_path: "experiments/selection/P800-1/proc_input"
@@ -37,8 +37,8 @@ postamble: 1.0
add_low_level_random_noise: true

### File designators, default is "l" for listening lab, "EN" for language, "p01" for exp and "g" for provider
listening_lab: "l"
language: "EN"
listening_lab: "a"
language: "JA"
exp: "p01"
provider: "g"

+400 −0
Original line number Diff line number Diff line
---
################################################
# 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 

### Output format
format: "STEREO"

### Output sampling rate in Hz; default = 48000
fs: 48000

### IR sampling rate in Hz (only for files in .pcm format); default = 48000
# IR_fs: 48000

### Input path to mono files
input_path: "experiments/selection/P800-1/gen_input/items_mono"

### Input path to stereo impulse response files, default = './ivas_processing_scripts/generation/IR'
IR_path: "experiments/selection/P800-1/gen_input/IRs"

### Output path for generated test items and metadata files
output_path: "experiments/selection/P800-1/proc_input"

### Target loudness in LKFS; default = null (no loudness normalization applied)
loudness: -26

### Pre-amble and Post-amble length in seconds (default = 0.0)
preamble: 0.5
postamble: 1.0

### Flag for adding low-level random background noise (amplitude +-4) instead of silence; default = False (silence)
add_low_level_random_noise: true

### File designators, default is "l" for listening lab, "EN" for language, "p01" for exp and "g" for provider
listening_lab: "d"
language: "FR"
exp: "p01"
provider: "g"

### Use prefix for all input filenames (default: "")
### l stands for the 'listening_lab' designator, L stands for the 'language', e stands for the 'exp' designator (the number of consecutive letters define the length of the field) 
use_input_prefix: "lLLeee"

### Use prefix for all IR filenames (default: "")
### p stands for the 'provider', e stands for the 'exp' designator (the number of consecutive letters define the length of the field) 
# use_IR_prefix: "IR_pp_eee_"

### Use prefix for all output filenames (default: "")
### l stands for the 'listening_lab' designator, e stands for the 'exp' designator (the number of consecutive letters define the length of the field) 
use_output_prefix: "leee"


################################################
### Scene description
################################################

### Each scene must begin by specifying the category in the following format: catN_I where N is the category index and N is the scene index
### Each scene shall de described using the following parameters/properties:
###   name:        filename of the generated output item (the program will save th generated items in the output_path folder, note: it is possible to use subfolders, e.g. items_stereo/x1_s01.wav)
###   description: textual description of the scene
###   source:      filename(s) of the mono input sources (the program will search for it in the input_path folder)
###   IR:          filenames(s) of the input IRs (the program will search for it in the IR_path folder)
###   overlap:     overlap length between two input sources in seconds (negative value creates a gap)
### Note 1: use brackets [val1, val2, ...] when specifying multiple values 

### 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 input IR files
### The input IR filenames are represented by:
###   IR_pp_eee_r_tt_mm_ffffff.wav
### where: 
###   pp stands for the provider: do (Dolby), no (Nokia), or (Orange), vo (VoiceAge), g (G.191)
###   eee stands for the experiment designator: p01, p02, p04, p05, p06, p07, p08, p09
###   r stands for the room ID: a, b, c, ... 
###   tt stands for the talker position: 01, 02, ...
###   mm stands for the microphone position: 00, 01, 02, ...
###   ffffff stands for the format ID: stAB20, stABC20, stAB100, stAB150, stMS, stBin, FOA, HOA2

### 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


scenes:
    cat1_1: 
        name: "cat1/a1s01.wav"
        description: "Small anechoic room with AB microphone pickup, partial overlap between the talkers."
        source: ["f1s01.wav", "m1s01.wav"]
        IR: ["IR_g_p01_a_01_00_stAB100.wav", "IR_g_p01_a_07_00_stAB100.wav"] 
        overlap: 1.0
        
    cat1_2: 
        name: "cat1/a1s02.wav"
        description: "Small anechoic room with AB microphone pickup, partial overlap between the talkers."
        source: ["m2s01.wav", "f2s01.wav"]
        IR: ["IR_g_p01_a_05_00_stAB100.wav", "IR_g_p01_a_03_00_stAB100.wav"] 
        overlap: 1.0
        
    cat1_3: 
        name: "cat1/a1s03.wav"
        description: "Small anechoic room with AB microphone pickup, partial overlap between the talkers."
        source: ["f3s01.wav", "m3s01.wav"]
        IR: ["IR_g_p01_a_02_00_stAB100.wav", "IR_g_p01_a_06_00_stAB100.wav"] 
        overlap: 1.0
        
    cat1_4: 
        name: "cat1/a1s04.wav"
        description: "Small anechoic room with AB microphone pickup, partial overlap between the talkers."
        source: ["m1s02.wav", "f1s02.wav"]
        IR: ["IR_g_p01_a_04_00_stAB100.wav", "IR_g_p01_a_01_00_stAB100.wav"] 
        overlap: 1.0
        
    cat1_5: 
        name: "cat1/a1s05.wav"
        description: "Small anechoic room with AB microphone pickup, partial overlap between the talkers."
        source: ["f2s02.wav", "m2s02.wav"]
        IR: ["IR_g_p01_a_03_00_stAB100.wav", "IR_g_p01_a_04_00_stAB100.wav"] 
        overlap: 1.0
        
    cat1_6: 
        name: "cat1/a1s06.wav"
        description: "Small anechoic room with AB microphone pickup, partial overlap between the talkers."
        source: ["m3s02.wav", "f3s02.wav"]
        IR: ["IR_g_p01_a_07_00_stAB100.wav", "IR_g_p01_a_02_00_stAB100.wav"] 
        overlap: 1.0

    cat1_7: 
        name: "cat1/a1s07.wav"
        description: "Preliminary: Small anechoic room with AB microphone pickup, partial overlap between the talkers."
        source: ["f1s13.wav", "m1s13.wav"]
        IR: ["IR_g_p01_a_01_00_stAB100.wav", "IR_g_p01_a_07_00_stAB100.wav"] 
        overlap: 1.0
         
    cat2_1: 
        name: "cat2/a2s01.wav"
        description: "Large anechoic room with AB microphone pickup, no overlap between the talkers."
        source: ["m3s03.wav", "f3s03.wav"]
        IR: ["IR_g_p01_c_05_00_stAB150.wav", "IR_g_p01_c_11_00_stAB150.wav"] 
        overlap: -1.0
        
    cat2_2: 
        name: "cat2/a2s02.wav"
        description: "Large anechoic room with AB microphone pickup, no overlap between the talkers."
        source: ["f1s03.wav", "m1s03.wav"]
        IR: ["IR_g_p01_c_01_00_stAB150.wav", "IR_g_p01_c_06_00_stAB150.wav"] 
        overlap: -1.0
        
    cat2_3: 
        name: "cat2/a2s03.wav"
        description: "Large anechoic room with AB microphone pickup, no overlap between the talkers."
        source: ["m2s03.wav", "f2s03.wav"]
        IR: ["IR_g_p01_c_03_00_stAB150.wav", "IR_g_p01_c_07_00_stAB150.wav"] 
        overlap: -1.0
        
    cat2_4: 
        name: "cat2/a2s04.wav"
        description: "Large anechoic room with AB microphone pickup, no overlap between the talkers."
        source: ["f3s04.wav", "m3s04.wav"]
        IR: ["IR_g_p01_c_05_00_stAB150.wav", "IR_g_p01_c_08_00_stAB150.wav"] 
        overlap: -1.0
        
    cat2_5: 
        name: "cat2/a2s05.wav"
        description: "Large anechoic room with AB microphone pickup, no overlap between the talkers."
        source: ["m1s04.wav", "f1s04.wav"]
        IR: ["IR_g_p01_c_09_00_stAB150.wav", "IR_g_p01_c_07_00_stAB150.wav"] 
        overlap: -1.0
        
    cat2_6: 
        name: "cat2/a2s06.wav"
        description: "Large anechoic room with AB microphone pickup, no overlap between the talkers."
        source: ["f2s04.wav", "m2s04.wav"]
        IR: ["IR_g_p01_c_10_00_stAB150.wav", "IR_g_p01_c_09_00_stAB150.wav"] 
        overlap: -1.0
 
    cat2_7: 
        name: "cat2/a2s07.wav"
        description: "Preliminary: Large anechoic room with AB microphone pickup, no overlap between the talkers."
        source: ["m2s13.wav", "f2s13.wav"]
        IR: ["IR_g_p01_c_05_00_stAB150.wav", "IR_g_p01_c_11_00_stAB150.wav"] 
        overlap: -1.0
 
    cat3_1: 
        name: "cat3/a3s01.wav"
        description: "Small anechoic room with MS microphone pickup, no overlap between the talkers."
        source: ["f2s05.wav", "m2s05.wav"]
        IR: ["IR_g_p01_a_01_00_stMS100.wav", "IR_g_p01_a_07_00_stMS100.wav"] 
        overlap: -1.0
        
    cat3_2: 
        name: "cat3/a3s02.wav"
        description: "Small anechoic room with MS microphone pickup, no overlap between the talkers."
        source: ["m3s05.wav", "f3s05.wav"]
        IR: ["IR_g_p01_a_05_00_stMS100.wav", "IR_g_p01_a_03_00_stMS100.wav"] 
        overlap: -1.0
        
    cat3_3: 
        name: "cat3/a3s03.wav"
        description: "Small anechoic room with MS microphone pickup, no overlap between the talkers."
        source: ["f1s05.wav", "m1s05.wav"]
        IR: ["IR_g_p01_a_02_00_stMS100.wav", "IR_g_p01_a_06_00_stMS100.wav"] 
        overlap: -1.0
        
    cat3_4: 
        name: "cat3/a3s04.wav"
        description: "Small anechoic room with MS microphone pickup, no overlap between the talkers."
        source: ["m2s06.wav", "f2s06.wav"]
        IR: ["IR_g_p01_a_04_00_stMS100.wav", "IR_g_p01_a_01_00_stMS100.wav"] 
        overlap: -1.0
        
    cat3_5: 
        name: "cat3/a3s05.wav"
        description: "Small anechoic room with MS microphone pickup, no overlap between the talkers."
        source: ["f3s06.wav", "m3s06.wav"]
        IR: ["IR_g_p01_a_03_00_stMS100.wav", "IR_g_p01_a_04_00_stMS100.wav"] 
        overlap: -1.0
        
    cat3_6: 
        name: "cat3/a3s06.wav"
        description: "Small anechoic room with MS microphone pickup, no overlap between the talkers."
        source: ["m1s06.wav", "f1s06.wav"]
        IR: ["IR_g_p01_a_07_00_stMS100.wav", "IR_g_p01_a_02_00_stMS100.wav"] 
        overlap: -1.0
        
    cat3_7: 
        name: "cat3/a3s07.wav"
        description: "Preliminary: Small anechoic room with MS microphone pickup, no overlap between the talkers."
        source: ["f3s13.wav", "m3s13.wav"]
        IR: ["IR_g_p01_a_02_00_stMS100.wav", "IR_g_p01_a_06_00_stMS100.wav"] 
        overlap: -1.0
        
    cat4_1: 
        name: "cat4/a4s01.wav"
        description: "Small echoic room with AB microphone pickup, partial overlap between the talkers."
        source: ["m1s07.wav", "f1s07.wav"]
        IR: ["IR_g_p01_b_01_00_stAB100.wav", "IR_g_p01_b_07_00_stAB100.wav"] 
        overlap: 1.0
        
    cat4_2: 
        name: "cat4/a4s02.wav"
        description: "Small echoic room with AB microphone pickup, partial overlap between the talkers."
        source: ["f2s07.wav", "m2s07.wav"]
        IR: ["IR_g_p01_b_07_00_stAB100.wav", "IR_g_p01_b_03_00_stAB100.wav"] 
        overlap: 1.0
        
    cat4_3: 
        name: "cat4/a4s03.wav"
        description: "Small echoic room with AB microphone pickup, partial overlap between the talkers."
        source: ["m3s07.wav", "f3s07.wav"]
        IR: ["IR_g_p01_b_02_00_stAB100.wav", "IR_g_p01_b_06_00_stAB100.wav"] 
        overlap: 1.0
        
    cat4_4: 
        name: "cat4/a4s04.wav"
        description: "Small echoic room with AB microphone pickup, partial overlap between the talkers."
        source: ["f1s08.wav", "m1s08.wav"]
        IR: ["IR_g_p01_b_04_00_stAB100.wav", "IR_g_p01_b_01_00_stAB100.wav"] 
        overlap: 1.0
        
    cat4_5: 
        name: "cat4/a4s05.wav"
        description: "Small echoic room with AB microphone pickup, partial overlap between the talkers."
        source: ["m2s08.wav", "f2s08.wav"]
        IR: ["IR_g_p01_b_03_00_stAB100.wav", "IR_g_p01_b_04_00_stAB100.wav"] 
        overlap: 1.0
        
    cat4_6: 
        name: "cat4/a4s06.wav"
        description: "Small echoic room with AB microphone pickup, partial overlap between the talkers."
        source: ["f3s08.wav", "m3s08.wav"]
        IR: ["IR_g_p01_b_07_00_stAB100.wav", "IR_g_p01_b_02_00_stAB100.wav"] 
        overlap: 1.0

    cat4_7: 
        name: "cat4/a4s07.wav"
        description: "Preliminary: Small echoic room with AB microphone pickup, partial overlap between the talkers."
        source: ["m1s14.wav", "f1s14.wav"]
        IR: ["IR_g_p01_b_04_00_stAB100.wav", "IR_g_p01_b_01_00_stAB100.wav"] 
        overlap: 1.0

    cat5_1: 
        name: "cat5/a5s01.wav"
        description: "Large echoic room with AB microphone pickup, partial overlap between the talkers."
        source: ["f3s09.wav", "m3s09.wav"]
        IR: ["IR_g_p01_d_02_00_stAB150.wav", "IR_g_p01_d_08_00_stAB150.wav"] 
        overlap: 1.0
        
    cat5_2: 
        name: "cat5/a5s02.wav"
        description: "Large echoic room with AB microphone pickup, partial overlap between the talkers."
        source: ["m1s09.wav", "f1s09.wav"]
        IR: ["IR_g_p01_d_09_00_stAB150.wav", "IR_g_p01_d_04_00_stAB150.wav"] 
        overlap: 1.0
        
    cat5_3: 
        name: "cat5/a5s03.wav"
        description: "Large echoic room with AB microphone pickup, partial overlap between the talkers."
        source: ["f2s09.wav", "m2s09.wav"]
        IR: ["IR_g_p01_d_06_00_stAB150.wav", "IR_g_p01_d_10_00_stAB150.wav"] 
        overlap: 1.0
        
    cat5_4: 
        name: "cat5/a5s04.wav"
        description: "Large echoic room with AB microphone pickup, partial overlap between the talkers."
        source: ["m3s10.wav", "f3s10.wav"]
        IR: ["IR_g_p01_d_11_00_stAB150.wav", "IR_g_p01_d_08_00_stAB150.wav"] 
        overlap: 1.0
        
    cat5_5: 
        name: "cat5/a5s05.wav"
        description: "Large echoic room with AB microphone pickup, partial overlap between the talkers."
        source: ["f1s10.wav", "m1s10.wav"]
        IR: ["IR_g_p01_d_10_00_stAB150.wav", "IR_g_p01_d_12_00_stAB150.wav"] 
        overlap: 1.0
        
    cat5_6: 
        name: "cat5/a5s06.wav"
        description: "Large echoic room with AB microphone pickup, partial overlap between the talkers."
        source: ["m2s10.wav", "f2s10.wav"]
        IR: ["IR_g_p01_d_12_00_stAB150.wav", "IR_g_p01_d_01_00_stAB150.wav"] 
        overlap: 1.0
        
    cat5_7: 
        name: "cat5/a5s07.wav"
        description: "Preliminary: Large echoic room with AB microphone pickup, partial overlap between the talkers."
        source: ["f2s14.wav", "m2s14.wav"]
        IR: ["IR_g_p01_d_10_00_stAB150.wav", "IR_g_p01_d_12_00_stAB150.wav"] 
        overlap: 1.0
        
    cat6_1: 
        name: "cat6/a6s01.wav"
        description: "Small echoic room with binaural microphone pickup, no overlap between the talkers."
        source: ["m2s11.wav", "f2s11.wav"]
        IR: ["IR_g_p01_b_01_00_stBI100.wav", "IR_g_p01_b_07_00_stBI100.wav"] 
        overlap: -1.0
        
    cat6_2: 
        name: "cat6/a6s02.wav"
        description: "Small echoic room with binaural microphone pickup, no overlap between the talkers."
        source: ["f3s11.wav", "m3s11.wav"]
        IR: ["IR_g_p01_b_05_00_stBI100.wav", "IR_g_p01_b_03_00_stBI100.wav"] 
        overlap: -1.0
        
    cat6_3: 
        name: "cat6/a6s03.wav"
        description: "Small echoic room with binaural microphone pickup, no overlap between the talkers."
        source: ["m1s11.wav", "f1s11.wav"]
        IR: ["IR_g_p01_b_02_00_stBI100.wav", "IR_g_p01_b_06_00_stBI100.wav"] 
        overlap: -1.0
        
    cat6_4: 
        name: "cat6/a6s04.wav"
        description: "Small echoic room with binaural microphone pickup, no overlap between the talkers."
        source: ["f2s12.wav", "m2s12.wav"]
        IR: ["IR_g_p01_b_04_00_stBI100.wav", "IR_g_p01_b_01_00_stBI100.wav"] 
        overlap: -1.0
        
    cat6_5: 
        name: "cat6/a6s05.wav"
        description: "Small echoic room with binaural microphone pickup, no overlap between the talkers."
        source: ["m3s12.wav", "f3s12.wav"]
        IR: ["IR_g_p01_b_03_00_stBI100.wav", "IR_g_p01_b_04_00_stBI100.wav"] 
        overlap: -1.0
        
    cat6_6: 
        name: "cat6/a6s06.wav"
        description: "Small echoic room with binaural microphone pickup, no overlap between the talkers."
        source: ["f1s12.wav", "m1s12.wav"]
        IR: ["IR_g_p01_b_07_00_stBI100.wav", "IR_g_p01_b_02_00_stBI100.wav"] 
        overlap: -1.0

    cat6_7: 
        name: "cat6/a6s07.wav"
        description: "Preliminary: Small echoic room with binaural microphone pickup, no overlap between the talkers."
        source: ["m2s14.wav", "f2s14.wav"]
        IR: ["IR_g_p01_b_07_00_stBI100.wav", "IR_g_p01_b_02_00_stBI100.wav"] 
        overlap: -1.0
+445 −0

File added.

Preview size limit exceeded, changes collapsed.

+3 −3
Original line number Diff line number Diff line
@@ -18,10 +18,10 @@ fs: 48000
# IR_fs: 48000

### Input path to mono files
input_path: "./items_mono"
input_path: "experiments/selection/P800-4/gen_input/items_mono"

### Input path to stereo impulse response files, default = './ivas_processing_scripts/generation/IR'
IR_path: "./IRs"
IR_path: "experiments/selection/P800-4/gen_input/IRs"

### Output path for generated test items and metadata files
output_path: "experiments/selection/P800-4/proc_input"
@@ -40,7 +40,7 @@ postamble: 1.0
add_low_level_random_noise: true

### File designators, default is "l" for listening lab, "EN" for language, "p04" for exp and "g" for provider
listening_lab: "l"
listening_lab: "c"
language: "EN"
exp: "p04"
provider: "g"
+4 −4
Original line number Diff line number Diff line
@@ -18,10 +18,10 @@ fs: 48000
# IR_fs: 48000

### Input path to mono files
input_path: "./items_mono"
input_path: "experiments/selection/P800-5/gen_input/items_mono"

### Input path to stereo impulse response files, default = './ivas_processing_scripts/generation/IR'
IR_path: "./IRs"
IR_path: "experiments/selection/P800-5/gen_input/IRs"

### Output path for generated test items and metadata files
output_path: "experiments/selection/P800-5/proc_input"
@@ -40,8 +40,8 @@ postamble: 1.0
add_low_level_random_noise: true

### File designators, default is "l" for listening lab, "EN" for language, "p04" for exp and "g" for provider
listening_lab: "l"
language: "EN"
listening_lab: "a"
language: "DA"
exp: "p05"
provider: "g"

Loading