Skip to content

synthstrings

Guy J Brown edited this page Jun 25, 2024 · 1 revision

Synth strings (synthstrings)

Analogue synth strings, use with chorus and phaser

Author: Guy Brown

Parameters

parameter minimum maximum default description
cutoff 0 16000 7000 Controls the brightness of the sound
basscut 1 5 2 Reduces the bass frequencies of the sound
envelope 0 1 0.18 Controls how long it takes the sound to decay
resonance 0 20 0 Controls the sharpness of the filter usually set low for this sound
detune 0 0.03 0.01 Controls the amount of detuning
attack 0 5 1 attack time
decay 0 5 0.1 decay time
sustain 0 1 1 sustain level
release 0 5 1 release time
volume 0 1 0.8 volume

WebAudio graph

graph TD;
   vco2_id(["SAW-OSC:vco2"])-->mix_id("VCA:mix");
   vco3_id(["SAW-OSC:vco3"])-->mix_id("VCA:mix");
   vco4_id(["SAW-OSC:vco4"])-->mix_id("VCA:mix");
   vco5_id(["SAW-OSC:vco5"])-->mix_id("VCA:mix");
   vco6_id(["SAW-OSC:vco6"])-->mix_id("VCA:mix");
   mix_id("VCA:mix")-->hpf_id["HPF:hpf"];
   hpf_id["HPF:hpf"]-->lpf_id["LPF:lpf"];
   lpf_id["LPF:lpf"]-->vca_id("VCA:vca");
   vca_id("VCA:vca")-->audio_id("audio");
   env_id[/"ADSR:env"\]-.->vca_id("VCA:vca");
Loading

Examples

Clone this wiki locally