PV_MagClip:
Filter:
Description
Class methods
new
Inherited class methods
Instance methods
Inherited instance methods
Examples
Classes
|
UGens
>
FFT
PV_MagClip
:
PV_MagAbove
:
PV_ChainUGen
:
WidthFirstUGen
:
UGen
:
AbstractFunction
:
Object
Clip bins to a threshold.
Source:
FFT.sc
See also:
FFT
,
IFFT
,
PV_MagAbove
,
PV_LocalMax
,
PV_MagBelow
Description
Clips bin magnitudes to a maximum threshold.
Class Methods
PV_MagClip.
new
(
buffer
,
threshold: 0.0
)
From superclass:
PV_MagAbove
Arguments:
buffer
FFT buffer.
threshold
Magnitude threshold.
Inherited class methods
Instance Methods
Inherited instance methods
Examples
s.boot; b = Buffer.read(s, Platform.resourceDir +/+ "sounds/a11wlk01.wav"); ( var in, chain; in = Mix.arFill(3, { LFSaw.ar(exprand(100, 500), 0, 0.1); }); chain = FFT(LocalBuf(2048), in); chain = PV_MagClip(chain, MouseX.kr(0, 15)); Out.ar(out, 0.5 * IFFT(chain).dup); }).play(s); ) ( SynthDef("help-magClip2", { arg out=0, soundBufnum=2; var in, chain; in = PlayBuf.ar(1, soundBufnum, BufRateScale.kr(soundBufnum), loop: 1); chain = FFT(LocalBuf(2048), in); chain = PV_MagClip(chain, MouseX.kr(0, 50)); Out.ar(out, 0.5 * IFFT(chain).dup); }).play(s, [\soundBufnum, b]); )
helpfile source:
/usr/local/share/SuperCollider/HelpSource/Classes/PV_MagClip.schelp
link::Classes/PV_MagClip::