|
|
|
|
@ -1,6 +1,6 @@
|
|
|
|
|
FluidBufLoudness : FluidBufProcessor{
|
|
|
|
|
*kr { |source, startFrame = 0, numFrames = -1, startChan = 0, numChans = -1, features, kWeighting = 1, truePeak = 1, windowSize = 1024, hopSize = 512, trig = 1, blocking = 0|
|
|
|
|
|
|
|
|
|
|
*kr { |source, startFrame = 0, numFrames = -1, startChan = 0, numChans = -1, features, kWeighting = 1, truePeak = 1, windowSize = 1024, hopSize = 512, padding = 1, trig = 1, blocking = 0|
|
|
|
|
|
|
|
|
|
|
var maxwindowSize = windowSize.nextPowerOfTwo;
|
|
|
|
|
|
|
|
|
|
source = source.asUGenInput;
|
|
|
|
|
@ -8,12 +8,12 @@ FluidBufLoudness : FluidBufProcessor{
|
|
|
|
|
|
|
|
|
|
source.isNil.if {"FluidBufPitch: Invalid source buffer".throw};
|
|
|
|
|
features.isNil.if {"FluidBufPitch: Invalid features buffer".throw};
|
|
|
|
|
|
|
|
|
|
^FluidProxyUgen.kr(\FluidBufLoudnessTrigger, -1, source, startFrame, numFrames, startChan, numChans, features, kWeighting, truePeak, windowSize, hopSize, maxwindowSize, trig, blocking);
|
|
|
|
|
|
|
|
|
|
^FluidProxyUgen.kr(\FluidBufLoudnessTrigger, -1, source, startFrame, numFrames, startChan, numChans, features,padding, kWeighting, truePeak, windowSize, hopSize, maxwindowSize, trig, blocking);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*process { |server, source, startFrame = 0, numFrames = -1, startChan = 0, numChans = -1, features, kWeighting = 1, truePeak = 1, windowSize = 1024, hopSize = 512, freeWhenDone = true, action|
|
|
|
|
|
|
|
|
|
|
*process { |server, source, startFrame = 0, numFrames = -1, startChan = 0, numChans = -1, features, kWeighting = 1, truePeak = 1, windowSize = 1024, hopSize = 512, padding = 1, freeWhenDone = true, action|
|
|
|
|
|
|
|
|
|
|
var maxwindowSize = windowSize.nextPowerOfTwo;
|
|
|
|
|
|
|
|
|
|
source = source.asUGenInput;
|
|
|
|
|
@ -21,16 +21,16 @@ FluidBufLoudness : FluidBufProcessor{
|
|
|
|
|
|
|
|
|
|
source.isNil.if {"FluidBufPitch: Invalid source buffer".throw};
|
|
|
|
|
features.isNil.if {"FluidBufPitch: Invalid features buffer".throw};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
^this.new(
|
|
|
|
|
server, nil, [features]
|
|
|
|
|
).processList(
|
|
|
|
|
[source, startFrame, numFrames, startChan, numChans, features, kWeighting, truePeak, windowSize, hopSize, maxwindowSize,0],freeWhenDone,action
|
|
|
|
|
[source, startFrame, numFrames, startChan, numChans, features, padding, kWeighting, truePeak, windowSize, hopSize, maxwindowSize,0],freeWhenDone,action
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*processBlocking { |server, source, startFrame = 0, numFrames = -1, startChan = 0, numChans = -1, features, kWeighting = 1, truePeak = 1, windowSize = 1024, hopSize = 512, freeWhenDone = true, action|
|
|
|
|
|
|
|
|
|
|
*processBlocking { |server, source, startFrame = 0, numFrames = -1, startChan = 0, numChans = -1, features, kWeighting = 1, truePeak = 1, windowSize = 1024, hopSize = 512, padding = 1, freeWhenDone = true, action|
|
|
|
|
|
|
|
|
|
|
var maxwindowSize = windowSize.nextPowerOfTwo;
|
|
|
|
|
|
|
|
|
|
source = source.asUGenInput;
|
|
|
|
|
@ -38,11 +38,11 @@ FluidBufLoudness : FluidBufProcessor{
|
|
|
|
|
|
|
|
|
|
source.isNil.if {"FluidBufPitch: Invalid source buffer".throw};
|
|
|
|
|
features.isNil.if {"FluidBufPitch: Invalid features buffer".throw};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
^this.new(
|
|
|
|
|
server, nil, [features]
|
|
|
|
|
).processList(
|
|
|
|
|
[source, startFrame, numFrames, startChan, numChans, features, kWeighting, truePeak, windowSize, hopSize, maxwindowSize,1],freeWhenDone,action
|
|
|
|
|
[source, startFrame, numFrames, startChan, numChans, features,padding, kWeighting, truePeak, windowSize, hopSize, maxwindowSize,1],freeWhenDone,action
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|