brummer10 / guitarix

guitarix virtual versatile amplification for Jack/Linux
263 stars 29 forks source link

is there a LV2 version of "WaveSharper" effect? #160

Closed checo06 closed 1 month ago

checo06 commented 4 months ago

I was experimenting with "WaveSharper" effect and i think theres no LV2 version of it. I noticed the code is on the file faust-generated/distortion2.cc but couldnt trace to a LV2 effect. Is there a version of it? (or maybe something close?)

brummer10 commented 4 months ago

No, but here is the faust version of it which could be used to make a LV2 plug by using the faust online IDE or XUiDesigner. All you need to do is remove the line import("guitarix.lib");

and replace all of smoothi(0.999) with si.smooth(0.999)

https://github.com/brummer10/guitarix/blob/master/trunk/src/faust/distortion2.dsp

checo06 commented 4 months ago

i did it as explained and worked really good thanks!

image