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