Monday, March 31, 2008

CC3 Week 4 - Sound Generation

This week I created basic AM synthesis. I have used sawtooth waves creating a harsh electro sounding bass. The frequency is different each time the code is run due to the rrand function.


(
{
LFSaw.ar(
freq: rrand(1, 100),
mul: { LFSaw.kr(
freq: { LFSaw.ar(LFSaw.kr(4, 0, 1000, 1000), 0, 0.1) },
mul: 20,
add: 1
);
}
);
}.play;
)




[1] Christian Haines. "Creative Computing: Semester 1 - Week 4 - Sound Generation". Lecture presented at the Electronic Music Unit, University of Adelaide, South Australia, 1st April 2008.

No comments: