Reads audio from the sound input hardware.
| channel |
Input channel number to read. Channel numbers begin at 1. |
Patching input to output
// patching input to output // watch the feedback ( SynthDef("help-AudioIn",{ arg out=0; Out.ar(out, AudioIn.ar(1) ) }).play; )
Stereo through patching from input to output
// stereo through patching from input to output // watch the feedback ( SynthDef("help-AudioIn",{ arg out=0; Out.ar(out, AudioIn.ar([1,2]) ) }).play; )