Skip to content

Instantly share code, notes, and snippets.

@colinbdclark
Created October 22, 2017 15:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save colinbdclark/483e5f1befd882b29869e39bc973cfd4 to your computer and use it in GitHub Desktop.
Save colinbdclark/483e5f1befd882b29869e39bc973cfd4 to your computer and use it in GitHub Desktop.
Multichannel chord (for testing)
flock.synth({
synthDef: [
{
ugen: "flock.ugen.out",
bus: 4,
expand: 1,
sources: [
{
ugen: "flock.ugen.sinOsc",
freq: 60,
mul: 0.01
}
]
},
{
ugen: "flock.ugen.out",
bus: 5,
expand: 1,
sources: [
{
ugen: "flock.ugen.sinOsc",
freq: 90,
mul: 0.01
}
]
},
{
ugen: "flock.ugen.out",
bus: 6,
expand: 1,
sources: [
{
ugen: "flock.ugen.sinOsc",
freq: 120,
mul: 0.01
}
]
},
{
ugen: "flock.ugen.out",
bus: 7,
expand: 1,
sources: [
{
ugen: "flock.ugen.sinOsc",
freq: 240,
mul: 0.01
}
]
}
]
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment