Commit 5d9dd9d6 authored by Jan Kiene's avatar Jan Kiene
Browse files

Merge branch '52-add-postamble-option-to-allow-padding-of-concatenated-file' into 'main'

Resolve "Add postamble option to allow padding of concatenated file"

See merge request !97
parents eeb0d266 b1f89897
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
@@ -65,6 +65,13 @@ input:
    fmt: "HOA3"
    ### Input sampling rate in Hz needed for headerless audio files; default = 48000
    # fs: 32000
    ### Enable check for input files being aligned to a integer multiple of a given length in ms.
    ### If a file is not aligned, a warning will be issued. If the input format has metadata or force is true, an error is raised instead.
    # aligned_to:
    ### alignment length in ms, is needed if aligned_to is used
    #     len: 20
    ### default: false
    #     force: true

################################################
### Pre-processing on individual items
@@ -112,6 +119,10 @@ input:
    # preamble: 10000
    ### Flag wheter to use noise (amplitude +-4) for the preamble or silence; default = false (silence)
    # preamble_noise: true
    ### Specify postamble duration in ms. Postamble is added after concatenation and possible signal repetition. defaut = 0
    # postamble: 20
    ### Flag wheter to use noise (amplitude +-4) for the postamble or silence; default = false (silence)
    # postamble_noise: true
    ### Additive background noise
    # background_noise:
        ### SNR for background noise in dB; REQUIRED for prerecorded background noise and ignored for low level noise
+4 −0
Original line number Diff line number Diff line
@@ -18,6 +18,8 @@ condition_in_output_filename: true
input:
    fmt: "STEREO"
    fs: 48000
    aligned_to:
        len: 20

################################################
### Pre-processing on individual items
@@ -33,6 +35,8 @@ preprocessing:
preprocessing_2:
    concatenate_input: false
    preamble_noise: false
    postamble: 20
    postamble_noise: true
    repeat_signal: true

#################################################
+4 −0
Original line number Diff line number Diff line
@@ -18,6 +18,8 @@ condition_in_output_filename: true
input:
    fmt: "STEREO"
    fs: 48000
    aligned_to:
        len: 20

################################################
### Pre-processing on individual items
@@ -33,6 +35,8 @@ preprocessing:
preprocessing_2:
    concatenate_input: false
    preamble_noise: false
    postamble: 20
    postamble_noise: true
    repeat_signal: true

#################################################
+4 −0
Original line number Diff line number Diff line
@@ -18,6 +18,8 @@ condition_in_output_filename: true
input:
    fmt: "5_1"
    fs: 48000
    aligned_to:
        len: 20

################################################
### Pre-processing on individual items
@@ -33,6 +35,8 @@ preprocessing:
preprocessing_2:
    concatenate_input: false
    preamble_noise: false
    postamble: 20
    postamble_noise: true
    repeat_signal: true

#################################################
+4 −0
Original line number Diff line number Diff line
@@ -18,6 +18,8 @@ condition_in_output_filename: true
input:
    fmt: "5_1"
    fs: 48000
    aligned_to:
        len: 20

################################################
### Pre-processing on individual items
@@ -33,6 +35,8 @@ preprocessing:
preprocessing_2:
    concatenate_input: false
    preamble_noise: false
    postamble: 20
    postamble_noise: true
    repeat_signal: true

#################################################
Loading