
Sign up to save your podcasts
Or


In previous episodes we used something like { SinOsc.ar }.play to play sounds. This is a trick to get sounds while typing less, but it's not very efficient. When we do that we are creating a Synth, sending it to the sound server, and playing it immediately. It's a bit like building a new piano each time we press a key. It's better to build the piano first, and then play the keys many times. This is what we can achieve by using SynthDef and Synth.
By In previous episodes we used something like { SinOsc.ar }.play to play sounds. This is a trick to get sounds while typing less, but it's not very efficient. When we do that we are creating a Synth, sending it to the sound server, and playing it immediately. It's a bit like building a new piano each time we press a key. It's better to build the piano first, and then play the keys many times. This is what we can achieve by using SynthDef and Synth.