noisehat - guyjbrown/bleepmanual GitHub Wiki
simple noise-based hi hat (noisehat)
simple noise-based hi hat
Author: Guy J Brown
Parameters
| parameter | minimum | maximum | default | description |
|---|---|---|---|---|
decay |
0.05 | 1 | 0.15 | decay |
cutoff |
10 | 20000 | 12000 | cutoff |
resonance |
0 | 25 | 0 | resonance |
volume |
0 | 1 | 0.8 | master volume control |
WebAudio graph
graph TD;
noise_id("NOISE:noise")-->highpass_id["HPF:highpass"];
highpass_id["HPF:highpass"]-->lowpass_id["LPF:lowpass"];
lowpass_id["LPF:lowpass"]-->vca_id("VCA:vca");
vca_id("VCA:vca")-->volume_id("VCA:volume");
volume_id("VCA:volume")-->audio_id("audio");
env_id[/"DECAY:env"\]-.->vca_id("VCA:vca");