Minim
index
 
Name getLineIn ( )
Examples
None available
Description Gets an {@link AudioInput}, to which you can attach {@link AudioEffect AudioEffects}.
Syntax
getLineIn();
getLineIn(type);
getLineIn(type, bufferSize);
getLineIn(type, bufferSize, sampleRate);
getLineIn(type, bufferSize, sampleRate, bitDepth);
Parameters
type   Minim.MONO or Minim.STEREO
bufferSize   how long you want the AudioInput's sample buffer to be
sampleRate   the desired sample rate in Hertz (typically 44100)
bitDepth   the desired bit depth (typically 16)
Returns an STEREO AudioInput with a 1024 sample buffer, a sample rate of 44100 and a bit depth of 16
Usage Web & Application
Related