[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [sc-users] audio in with MOTU 828



Your server options are saying you have 18 channels of output, then you try to read in bus 9... try reading in bus 18.

Hope that helps,

Josh

******************************************
Joshua D. Parmenter
http://homepage.mac.com/joshpar/

"...Some people think a composer's supposed to please them, but in a way a composer is a chronicler... He's supposed to report on what he's seen and lived." -Charles Mingus

On Aug 27, 2005, at 5:09 PM, Brian E Willkie wrote:





Hello,

Does any one have an example SynthDef for pulling in audio from a MOTU
828's line inputs (including Server.options)?

I tried the following but didn't get any audio:

Server.default.options.numOutputBusChannels = 18;
s = Server.default;
s.boot;


SynthDef("stereoIn", {arg outBus = 2, inBus = 0,
              trim = 0, level = 1;

              var left, right, numInChnl, inPut;

              numInChnl = 2;

              inPut = In.ar(inBus, numInChnl);

              left = inPut.at(0);
              right = inPut.at(1);

              Out.ar(outBus, [left, right]);
        }
).send(s);

(
var stereoIn;
stereoIn = Synth.new("stereoIn", [\inBus, 9], s);
)

_______________________________________________
sc-users mailing list
sc-users@xxxxxxxxxxxxxxx
http://www.create.ucsb.edu/mailman/listinfo/sc-users