Created
September 29, 2011 14:55
-
-
Save Sciss/1250902 to your computer and use it in GitHub Desktop.
Cases for determining expanded GE's numChannels
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 3x stereo out | |
SynthDef( \test, { Out.ar( 0, [ In.ar(0,2), In.ar(0,3) ])}).writeDefFile( "~/Desktop/".standardizePath ) | |
// 3x stereo demand | |
SynthDef( \test2, { Demand.ar( Impulse.ar(1), 0, [ In.ar(0,2), In.ar(0,3) ])}).writeDefFile( "~/Desktop/".standardizePath ) | |
// 2x 3-channel out | |
SynthDef( \test3, { Out.ar( 0, Demand.ar( Impulse.ar(1), 0, [ In.ar(0,2), In.ar(0,3) ]))}).writeDefFile( "~/Desktop/".standardizePath ) | |
// 2x 3-channel out | |
SynthDef( \test4, { Out.ar( 0, Demand.ar( Impulse.ar(1), 0, [ SinOsc.ar([111,222]), SinOsc.ar([333,444,555]) ]))}).writeDefFile( "~/Desktop/".standardizePath ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment