You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
595 B
Python
24 lines
595 B
Python
FluidNMFMorph : FluidRTUGen {
|
|
|
|
*ar { arg source = -1, target = -1, activations = -1, autoassign = 1, interp = 0, windowSize = 1024, hopSize = -1, fftSize = -1, maxFFTSize = 16384;
|
|
|
|
source = source ?? {-1};
|
|
target = target ?? {-1};
|
|
activations = activations ?? {-1};
|
|
|
|
^this.new1('audio', source, target, activations, autoassign, interp, windowSize, hopSize, fftSize, maxFFTSize);
|
|
}
|
|
|
|
init {arg ...theInputs;
|
|
inputs = theInputs;
|
|
specialIndex = -1;
|
|
}
|
|
|
|
checkInputs {
|
|
if(inputs.last.rate != 'scalar') {
|
|
^(": maxFFTSize cannot be modulated.");
|
|
};
|
|
^this.checkValidInputs;
|
|
}
|
|
}
|