You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
scd/phase modulation.scd

15 lines
262 B
Plaintext

{max(SinOsc.ar(220), 0) !2}.play
(
SynthDef(\pm, {
var sig;
sig = PMOsc.ar(\freq.ar(440), \modfreq.kr(0), \pmindex.kr(0), SinOsc.kr(\modphase.kr(1.0)));
Out.ar(0, sig.dup);
}).add;
x = Synth(\pm, [\freq, 240, \modfreq, 20, \pmindex, 5, \modphase, 1]);
)