Trying to learn more about sound design but fallowing along with people making 808 sounds (very unoriginal I know, but I like the idea of tuning my own set). Im happy with the snare and the cymbal but the kick is not there.
It’s interesting that in digging online the kick seems to be not a sine but a self resonating filter at about 56~54 hz.
Been trying it some different ways but not capturing the ringing out part…
(
SynthDef(\kick,{ | out = 0 |
var sig;
sig = RHPF.ar(Pulse.ar(1),31, 0.1, 0.1);
sig = 2 * BRF.ar(sig,60,0.00000001);
sig = 8 * RHPF.ar(sig, XLine.kr(100, 31,0.25),0.00000000001);
sig = sig * Env.perc(0.001, 0.4, 0.1,curve:-12).ar(doneAction:2);
sig = LPF.ar(sig, 1200);
sig = sig * -9.dbamp;
sig = Splay.ar(sig);
Out.ar(out, sig);
}).add;
)
Synth(\kick);
Im attempting to get increase the resonance by multiplying the filters. Im intrigued that this example gets a good sound with so few components.
I have other less close attempts and have looked at the code on the SC-808 by Yoshinosuke Horiuchi. But aiming to make something more simple and with less code.
Im curious on how I can achieve a self oscillation that gets closer to the sound of the reactor screenshot in the post.