Interface AperiodicVoiceParams

Parameters for the inharmonic timbre and ADSR of the synth. See aperiodic-oscillator documentation for AperiodicWave.

interface AperiodicVoiceParams {
    aperiodicWave: AperiodicWave;
    attackTime: number;
    audioDelay: number;
    decayTime: number;
    releaseTime: number;
    sustainLevel: number;
}

Hierarchy (view full)

Properties

aperiodicWave: AperiodicWave

AperiodicWave representing an inharmonic timbre.

attackTime: number

Attack time in seconds.

audioDelay: number

Audio delay in seconds. Increase on Firefox to reduce pops.

decayTime: number

Decay time constant (exponential decay from 1 to sustainLevel).

releaseTime: number

Release time constant (exponential decay from sustainLevel to 0).

sustainLevel: number

Steady state amplitude.