| And if you're interested to hear the sounds on their own first, I
posted a video to Twitter here:
https://twitter.com/kunstmusik/status/1221493424588820480
On Sun, Jan 26, 2020 at 12:53 PM Steven Yi wrote:
>
> Hi All,
>
> I was doing some sound design for a lecture and I thought I'd share
> them here in case anyone is interested. The code works with
> live.csound.com; you can copy/paste it there, evaluate the instrument
> definitions, then evaluate the schedule lines to fire away sounds.
> There's a gun sound, spawning sound, and a destruction sound that's
> not quite right but fun nevertheless. (You can remove pan_verb_mix and
> replace with out opcodes to use outside of live.csound.com).
>
> As a side note, I've been using cpsoct quite a bit lately for filter
> cutoff modulations. I never really used cpsoct and octcps much until
> recently and it's simplified a lot of code I had previously used.
> I'll share a 3-osc subtractive synth in the future when I have it
> ready. :)
>
> Cheers!
> Steven
>
>
> ;; START OF CODE
> start("ReverbMixer")
>
> instr S1
> asig = random:a(-1, 1) * 0.4
> asig *= expseg:a(1, p3 * 0.5, 0.0001, p3, 0.001)
> asig = zdf_2pole(asig, oscili:a(2000, 15) + 2200, 2, 2)
>
> a1 = foscili(0.5, 800, 1, 1.73, expon(5, p3, 1)) * expon(1, p3, 0.001)
> a1 += foscili(0.5, 1100, 1, 2.73, expon(5, p3, 1)) * expon(1, p3, 0.001)
> a1 += vco2(0.4, 60, 10)
> asig += zdf_ladder(a1, cpsoct(expseg:a(13, 0.2, 5, p3, 4)), 0.5)
>
> pan_verb_mix(asig, 0.5, 0.1)
> endin
>
> instr S2
> asig = vco2(0.25, cpsoct(line(9, p3, 10)), 10)
> asig += vco2(0.25, 2 * cpsoct(line(9, p3, 10)), 12)
> asig *= oscili(0.5, 100)
> pan_verb_mix(asig, 0.5, 0.1)
> endin
>
> instr S3
> asig = random:a(-1, 1) * expon(0.4, p3, 0.001)
> a1 = reson(asig, 177, 400) * 0.5
> a1 += reson(asig, 300, 200) * 0.25
> a1 += reson(asig, 60, 600) * 0.5
>
> asig += a1
>
> ival = random:i(400, 800)
>
> asig = zdf_ladder(asig, cpsoct(linseg(8, p3, 4)), 0.5) * 0.3
> asig += oscili(0.75, 880) * oscili(1, 30) * expon(1, p3, 0.001) ;*
> oscili(1, 0.5/ p3)
> asig += oscili(2, randh(ival * 0.5, 16) + ival) * expon(1, p3,
> 0.001) ;* oscili(1, 0.5/ p3)
>
> asig *= 0.4
>
> pan_verb_mix(asig, 0.5, 0.1)
> endin
>
> schedule("S1", 0, 1)
> schedule("S2", 0, 1)
> schedule("S3", 0, 3)
Csound mailing list
Csound@listserv.heanet.ie
https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND
Send bugs reports to
https://github.com/csound/csound/issues
Discussions of bugs and features can be posted here |