A multi choice selector element could allow to switch between :
- words (recording)
- sentences (recording)
- poems (recording)
This select element would then change few behaviors.
Silent pauses settings
// Words recording: stopDuration: { min: 0.10, init: 0.30, max: 4, step: 0.10, unit: "sec." }, // seconds // Sentences recording: stopDuration: { min: 2.00, init: 3.00, max: 8, step: 1.00, unit: "sec." }, // seconds // Poems recording: stopDuration: { min: 4.00, init: 5.00, max:12, step: 1.00, unit: "sec." }, // seconds
All settings
startThreshold:{ init: 0.10, min: 0.02, max: 0.50, step: 0.01, unit: "%" }, // percent stopThreshold: { init: 0.05, min: 0.01, max: 0.25, step: 0.01, unit: "%" }, // percent stopDuration: { init: 0.30, min: 0.10, max: 8, step: 0.01, unit: "sec." }, // seconds marginBefore: { init: 0.25, min: 0.10, max: 3, step: 0.01, unit: "sec." }, // seconds marginAfter: { init: 0.25, min: 0.10, max: 3, step: 0.01, unit: "sec." }, // seconds saturationThreshold: { init: 0.99, min: 0.5, max:0.99, step: 0.01, unit: "%" } // percent
Step 4 : in list loader
NOTE: Section to move to T375750