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.
18 lines
739 B
Python
18 lines
739 B
Python
FluidNoveltySlice : UGen {
|
|
*ar { arg in = 0, feature = 0, kernelSize = 3, threshold = 0.8, filterSize = 1, minSliceLength = 1, windowSize = 1024, hopSize = -1, fftSize = -1, maxFFTSize = 16384, maxKernelSize = 101, maxFilterSize = 100;
|
|
^this.multiNew('audio', in.asAudioRateInput(this), feature, kernelSize, threshold, filterSize, minSliceLength, windowSize, hopSize, fftSize, maxFFTSize, maxKernelSize, maxFilterSize)
|
|
}
|
|
checkInputs {
|
|
if(inputs.at(8).rate != 'scalar') {
|
|
^(": maxFFTSize cannot be modulated.");
|
|
};
|
|
if(inputs.at(9).rate != 'scalar') {
|
|
^(": maxKernelSize cannot be modulated.");
|
|
};
|
|
if(inputs.at(10).rate != 'scalar') {
|
|
^(": maxFilterSize cannot be modulated.");
|
|
};
|
|
^this.checkValidInputs;
|
|
}
|
|
}
|