Gaffa tape max size into SC class stubs
parent
33fb34cbfe
commit
9738c8a057
@ -1,13 +1,13 @@
|
|||||||
FluidSines : MultiOutUGen {
|
FluidSines : MultiOutUGen {
|
||||||
*ar { arg in = 0, bandwidth = 76, thresh = 0.7, minTrackLen = 15, magWeight = 0.1, freqWeight = 1.0, winSize= 2048, hopSize= 512, fftSize= 8192;
|
*ar { arg in = 0, bandwidth = 76, thresh = 0.7, minTrackLen = 15, magWeight = 0.1, freqWeight = 1.0, winSize= 2048, hopSize= 512, fftSize= 8192;
|
||||||
^this.multiNew('audio', in.asAudioRateInput(this), bandwidth, thresh, minTrackLen, magWeight,freqWeight ,winSize, hopSize, fftSize)
|
^this.multiNew('audio', in.asAudioRateInput(this), bandwidth, thresh, minTrackLen, magWeight,freqWeight ,winSize, hopSize, fftSize,16384)
|
||||||
}
|
}
|
||||||
init { arg ... theInputs;
|
init { arg ... theInputs;
|
||||||
inputs = theInputs;
|
inputs = theInputs;
|
||||||
channels = [
|
channels = [
|
||||||
OutputProxy(rate, this, 0),
|
OutputProxy(rate, this, 0),
|
||||||
OutputProxy(rate, this, 1)
|
OutputProxy(rate, this, 1)
|
||||||
];
|
]
|
||||||
^channels
|
^channels
|
||||||
}
|
}
|
||||||
checkInputs { ^this.checkNInputs(1) }
|
checkInputs { ^this.checkNInputs(1) }
|
||||||
|
|||||||
Loading…
Reference in New Issue