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.
22 lines
936 B
Python
22 lines
936 B
Python
FluidBufNoveltySlice{
|
|
*process { arg server, source, startFrame = 0, numFrames = -1, startChan = 0, numChans = -1, indices, feature = 0, kernelSize = 3, threshold = 0.5, filterSize = 1, windowSize = 1024, hopSize = -1, fftSize = -1, action;
|
|
|
|
var maxFFTSize = if (fftSize == -1) {windowSize.nextPowerOfTwo} {fftSize};
|
|
|
|
source = source.asUGenInput;
|
|
indices = indices.asUGenInput;
|
|
|
|
source.isNil.if {"FluidBufNoveltySlice: Invalid source buffer".throw};
|
|
indices.isNil.if {"FluidBufNoveltySlice: Invalid features buffer".throw};
|
|
|
|
server = server ? Server.default;
|
|
|
|
forkIfNeeded{
|
|
server.sendMsg(\cmd, \BufNoveltySlice, source, startFrame, numFrames, startChan, numChans, indices, feature, kernelSize, threshold, filterSize, windowSize, hopSize, fftSize, maxFFTSize, kernelSize, filterSize);
|
|
server.sync;
|
|
indices = server.cachedBufferAt(indices); indices.updateInfo; server.sync;
|
|
action.value(indices);
|
|
};
|
|
}
|
|
}
|