Minim index
Name SignalSplitter
Examples
None available
Description A SignalSplitter acts exactly like a headphone splitter. When you pass it audio with the samples method, it echoes that audio out to all of its listeners, giving each their own copy of the audio. In other words, changes that the listeners make to the float arrays they receive from a SignalSplitter will not be reflected in the arrays you pass to samples. SignalSplitter is fully synchronized so that listeners cannot be added and removed while it is in the midst transmitting.
Constructors
SignalSplitter(format, bufferSize);
Parameters
format   the AudioFormat of samples that this will receive
bufferSize   the size of the float arrays this will receive
Usage Web & Application
Related