EQ Examples:
Filter:
sc3-plugins/Guides (extension)
|
UGens
>
Filters
EQ Examples
Extension
some examples of EQ classes (BhobUGens)
NOTE:
these examples require crucial lib.
s.boot; // LoShelf ( Patch({ arg bypass=0, ffreq=120.0, boostcut=0.0, amp=0.1; var dry, filter; dry = SoundIn.ar([0,1]); filter = BhobLoShelf.ar(dry, ffreq, boostcut.dbamp); ((dry * bypass) + (filter * (bypass < 0.5))) * amp; }).gui ) // HiShelf ( Patch({ arg bypass=0, ffreq=2200.0, boostcut=0.0, amp=0.1; var dry, filter; dry = SoundIn.ar([0,1]); filter = BhobHiShelf.ar(dry, ffreq, boostcut.dbamp); ((dry * bypass) + (filter * (bypass < 0.5))) * amp; }).gui ) // Tone ( Patch({ arg bypass=0, tone=0.0, amp=0.1; var dry, filter; dry = SoundIn.ar([0,1]); filter = BhobTone.ar(dry, tone.dbamp) * (bypass < 0.5); ((dry * bypass) + filter) * amp; }, [ nil, KrKnobEditor.new(0.0, \boostcut), nil ]).gui )
helpfile source:
source/BhobUGens/sc/HelpSource/Guides/EQExamples.schelp
link::sc3-plugins/Guides/EQExamples::