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.
43 lines
1.9 KiB
Python
43 lines
1.9 KiB
Python
FluidBufSpectralShape : UGen {
|
|
|
|
*new1{ |rate, source, startFrame = 0, numFrames = -1, startChan = 0, numChans = -1, features, windowSize = 1024, hopSize = -1, fftSize = -1, trig = 1, blocking = 0|
|
|
|
|
var maxFFTSize = if (fftSize == -1) {windowSize.nextPowerOfTwo} {fftSize};
|
|
|
|
source = source.asUGenInput;
|
|
features = features.asUGenInput;
|
|
|
|
source.isNil.if {"FluidBufSpectralShape: Invalid source buffer".throw};
|
|
features.isNil.if {"FluidBufSpectralShape: Invalid features buffer".throw};
|
|
|
|
//NB For wrapped versions of NRT classes, we set the params for maxima to
|
|
//whatever has been passed in language-side (e.g maxFFTSize still exists as a parameter for the server plugin, but makes less sense here: it just needs to be set to a legal value)
|
|
|
|
^super.new1(rate, source, startFrame, numFrames, startChan, numChans, features, windowSize, hopSize, fftSize, maxFFTSize, trig, blocking);
|
|
|
|
}
|
|
|
|
|
|
*kr { |source, startFrame = 0, numFrames = -1, startChan = 0, numChans = -1, features, windowSize = 1024, hopSize = -1, fftSize = -1, trig = 1, blocking = 0|
|
|
^this.multiNew(\control, source, startFrame, numFrames, startChan, numChans, features, windowSize, hopSize, fftSize, trig, blocking);
|
|
|
|
}
|
|
|
|
*process { |server, source, startFrame = 0, numFrames = -1, startChan = 0, numChans = -1, features, windowSize = 1024, hopSize = -1, fftSize = -1, action|
|
|
^FluidNRTProcess.new(
|
|
server, this, action, [features]
|
|
).process(
|
|
source, startFrame, numFrames, startChan, numChans, features, windowSize, hopSize, fftSize
|
|
);
|
|
}
|
|
|
|
*processBlocking { |server, source, startFrame = 0, numFrames = -1, startChan = 0, numChans = -1, features, windowSize = 1024, hopSize = -1, fftSize = -1, action|
|
|
^FluidNRTProcess.new(
|
|
server, this, action, [features], blocking: 1
|
|
).process(
|
|
source, startFrame, numFrames, startChan, numChans, features, windowSize, hopSize, fftSize
|
|
);
|
|
}
|
|
|
|
}
|