Uses of Class
be.hogent.tarsos.dsp.AudioDispatcher

Packages that use AudioDispatcher
be.hogent.tarsos.dsp Contains classes to handle sampled sound. 
 

Uses of AudioDispatcher in be.hogent.tarsos.dsp
 

Methods in be.hogent.tarsos.dsp that return AudioDispatcher
static AudioDispatcher AudioDispatcher.fromByteArray(byte[] byteArray, javax.sound.sampled.AudioFormat audioFormat, int audioBufferSize, int bufferOverlap)
          Create a stream from an array of bytes and use that to create a new AudioDispatcher.
static AudioDispatcher AudioDispatcher.fromDefaultMicrophone(int audioBufferSize, int bufferOverlap)
          Create a new AudioDispatcher connected to the default microphone.
static AudioDispatcher AudioDispatcher.fromFile(java.io.File audioFile, int size, int overlap)
          Create a stream from a file and use that to create a new AudioDispatcher
static AudioDispatcher AudioDispatcher.fromFloatArray(float[] floatArray, int sampleRate, int audioBufferSize, int bufferOverlap)
          Create a stream from an array of floats and use that to create a new AudioDispatcher.
static AudioDispatcher AudioDispatcher.fromURL(java.net.URL audioStream, int size, int overlap)
          Create a stream from an URL and use that to create a new AudioDispatcher
 

Methods in be.hogent.tarsos.dsp with parameters of type AudioDispatcher
 void WaveformSimilarityBasedOverlapAdd.setDispatcher(AudioDispatcher newDispatcher)