Klang is a bank of fixed frequency sine oscillators. Klang is more efficient than creating individual oscillators but offers less flexibility.
specificationsArrayRef |
A Ref to an Array of three Arrays:
|
freqscale |
A scale factor multiplied by all frequencies at initialization time. |
freqoffset |
An offset added to all frequencies at initialization time. |
The parameters in specificationsArrayRef
can't be changed after it has been started. For a modulatable but less efficient version, see DynKlang.
play({ Klang.ar(`[ [800, 1000, 1200], [0.3, 0.3, 0.3], [pi, pi, pi]], 1, 0) * 0.4});
play({ Klang.ar(`[ [800, 1000, 1200], nil, nil], 1, 0) * 0.25});
play({ Klang.ar(`[ Array.rand(12, 600.0, 1000.0), nil, nil ], 1, 0) * 0.05 });
(
{
loop({
play({
Pan2.ar(Klang.ar(`[ Array.rand(12, 200.0, 2000.0), nil, nil ], 1, 0), 1.0.rand)
* EnvGen.kr(Env.sine(4), 1, 0.02, doneAction: Done.freeSelf);
});
2.wait;
})
}.fork;
)
// Multichannel expansion:
(
{
loop({
play({
var nPartials = 12, nChans = 5, n = nPartials * nChans;
Splay.ar(Klang.ar(`[ { { rrand(200.0, 2000.0) } ! nPartials } ! nChans, nil, nil ], 1, 0))
* EnvGen.kr(Env.sine(4), 1, 0.02, doneAction: Done.freeSelf);
});
2.wait;
})
}.fork;
)