7. The ADSR envelope — the shape of a sound over time

← Learning path

Pluck a guitar string: it’s loud instantly, then fades. Press an organ key: it stays steady, then stops when you let go. That “how the volume changes over time” shape has four parts, nicknamed ADSR:

inst pluck = saw attack 0.005 decay 0.12 sustain 0 release 0.15   # short & plucky
inst pad   = sine attack 0.3  sustain 0.8 release 0.6             # slow swelling pad

Real name: the amplitude envelope (ADSR). It’s the “life story” of each note: born (attack), settles (decay), lives (sustain), dies (release). Times are in seconds.


← Index · Next → 8. Filters