ledfx
    Preparing search index...

    Interface NotespectrumEffectConfig

    Specific configuration for the 'noteSpectrum' effect.

    interface NotespectrumEffectConfig {
        blur?: number;
        fade_rate?: number;
        gain?: number;
        mirror?: boolean;
        note_max?: number;
        note_min?: number;
        type: "noteSpectrum";
    }
    Index
    blur?: number

    Amount to blur the effect

    1.0
    

    0.0

    10

    fade_rate?: number

    How quickly a note fades once it stops sounding. Lower leaves a longer trail behind the melody.

    0.25
    

    0.0

    1.0

    gain?: number

    Brightness applied to note energy after levelling

    1.0
    

    0.1

    5.0

    mirror?: boolean

    Mirror the effect

    False
    
    note_max?: number

    Highest note shown, as a MIDI number

    96
    

    21

    108

    note_min?: number

    Lowest note shown, as a MIDI number. Below ~47 a semitone is narrower than one FFT bin, so notes start to smear together.

    48
    

    21

    108

    type: "noteSpectrum"