_id stringlengths 64 64 | repository stringlengths 7 61 | name stringlengths 5 45 | content stringlengths 0 943k | download_url stringlengths 94 213 | language stringclasses 1
value | comments stringlengths 0 20.9k | code stringlengths 0 943k |
|---|---|---|---|---|---|---|---|
b2c0aa8f522688759524bda2354cf4cf4065c8f20797b8553dc1ef4c8c9910d0 | brummer10/guitarix | eq.dsp | declare id "eq";
declare license "BSD";
declare copyright "(c)GRAME 2006";
import("stdfaust.lib");
import("guitarix.lib");
//------------------------- Process --------------------------------
process = ifilter(vslider("Q31_25", 50, 1, 100, 1), 31.25, vslider("f31_25[tooltip:gain (dB) at 31.25 Hz]", 0, -50, 1... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/faust/eq.dsp | faust | ------------------------- Process -------------------------------- | declare id "eq";
declare license "BSD";
declare copyright "(c)GRAME 2006";
import("stdfaust.lib");
import("guitarix.lib");
process = ifilter(vslider("Q31_25", 50, 1, 100, 1), 31.25, vslider("f31_25[tooltip:gain (dB) at 31.25 Hz]", 0, -50, 10, 0.1))
: ifilter(vslider("Q62_5", 50, 1, 100, 1), 62.5,... |
e9bb3b68ac7a67196590ead8789f431d5005d7dceee1c5d5c285f0f5aba0164a | brummer10/guitarix | gxamp11.dsp | declare id "12AU7 feedback"; // in amp tube ba.selector
declare name "12AU7 feedback";
import("stdfaust.lib");
import("guitarix.lib");
/****************************************************************
** Tube Preamp Emulation stage 1 - 2
* 12AU7 feedback
*/
val(x) = valve.vt(dist, q(x), x)
with {
dist = ... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/LV2/faust/gxamp11.dsp | faust | in amp tube ba.selector
***************************************************************
** Tube Preamp Emulation stage 1 - 2
* 12AU7 feedback
drive = vslider(".gxdistortion.drive[alias]",0.35, 0, 1, 0.01);
wet_dry = vslider(".gxdistortion.wet_dry[alias]", 100, 0, 100, 1) : /(100) : smoothi(0.999);
... | declare name "12AU7 feedback";
import("stdfaust.lib");
import("guitarix.lib");
val(x) = valve.vt(dist, q(x), x)
with {
dist = 40.1;
q(x) = lp1tm1(x) * 1 - lp2tm1(x) * 1.02 - 1.0 : clip(-1,-0.01);
lp(a) = *(1 - a) : + ~ *(a);
lp1tm1 = abs <: lp(0.9999), _ : max;
avgs = lp1tm1 : avg;
avg_size... |
755e076156385e72291e5edda422376490ab69e0cd57a65345febb2659a7466f | brummer10/guitarix | gxamp13.dsp | declare id "6DJ8 feedback"; // in amp tube ba.selector
declare name "6DJ8 feedback";
import("stdfaust.lib");
import("guitarix.lib");
/****************************************************************
** Tube Preamp Emulation stage 1 - 2
*/
val(x) = valve.vt(dist, q(x), x)
with {
dist = 40.1;
q(x) = lp1t... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/LV2/faust/gxamp13.dsp | faust | in amp tube ba.selector
***************************************************************
** Tube Preamp Emulation stage 1 - 2
drive = vslider(".gxdistortion.drive[alias]",0.35, 0, 1, 0.01);
wet_dry = vslider(".gxdistortion.wet_dry[alias]", 100, 0, 100, 1) : /(100) : smoothi(0.999);
preamp = vslider("... | declare name "6DJ8 feedback";
import("stdfaust.lib");
import("guitarix.lib");
val(x) = valve.vt(dist, q(x), x)
with {
dist = 40.1;
q(x) = lp1tm1(x) * 1 - lp2tm1(x) * 1.02 - 1.0 : clip(-1,-0.01);
lp(a) = *(1 - a) : + ~ *(a);
lp1tm1 = abs <: lp(0.9999), _ : max;
avgs = lp1tm1 : avg;
avg_size... |
6d5296b23b0f65a0f82548fca1a4b0d913baba38e775aa028773a4f45e7b00e5 | brummer10/guitarix | gxamp13_stereo.dsp | declare id "6DJ8 feedback"; // in amp tube ba.selector
declare name "6DJ8 feedback";
import("stdfaust.lib");
import("guitarix.lib");
/****************************************************************
** Tube Preamp Emulation stage 1 - 2
*/
val(x) = valve.vt(dist, q(x), x)
with {
dist = 40.1;
q(x) = lp1t... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/LV2/faust/gxamp13_stereo.dsp | faust | in amp tube ba.selector
***************************************************************
** Tube Preamp Emulation stage 1 - 2
drive = vslider(".gxdistortion.drive[alias]",0.35, 0, 1, 0.01);
wet_dry = vslider(".gxdistortion.wet_dry[alias]", 100, 0, 100, 1) : /(100) : smoothi(0.999);
preamp = vslider("... | declare name "6DJ8 feedback";
import("stdfaust.lib");
import("guitarix.lib");
val(x) = valve.vt(dist, q(x), x)
with {
dist = 40.1;
q(x) = lp1tm1(x) * 1 - lp2tm1(x) * 1.02 - 1.0 : clip(-1,-0.01);
lp(a) = *(1 - a) : + ~ *(a);
lp1tm1 = abs <: lp(0.9999), _ : max;
avgs = lp1tm1 : avg;
avg_size... |
1d2332c7884151abc124918e14e9ca1bd90e1304555e35f0f271e4b7f2ac6bef | brummer10/guitarix | gxamp9.dsp | declare id "12ax7 feedback"; // in amp tube ba.selector
declare name "12ax7 feedback";
import("stdfaust.lib");
import("guitarix.lib");
/****************************************************************
** Tube Preamp Emulation stage 1 - 2
* 12ax7 feedback
*/
val(x) = valve.vt(dist, q(x), x)
with {
dist = ... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/LV2/faust/gxamp9.dsp | faust | in amp tube ba.selector
***************************************************************
** Tube Preamp Emulation stage 1 - 2
* 12ax7 feedback
drive = vslider(".gxdistortion.drive[alias]",0.35, 0, 1, 0.01);
wet_dry = vslider(".gxdistortion.wet_dry[alias]", 100, 0, 100, 1) : /(100) : smoothi(0.999);
... | declare name "12ax7 feedback";
import("stdfaust.lib");
import("guitarix.lib");
val(x) = valve.vt(dist, q(x), x)
with {
dist = 40.1;
q(x) = lp1tm1(x) * 1 - lp2tm1(x) * 1.02 - 1.0 : clip(-1,-0.01);
lp(a) = *(1 - a) : + ~ *(a);
lp1tm1 = abs <: lp(0.9999), _ : max;
avgs = lp1tm1 : avg;
avg_siz... |
dfa14c98f049bfc6217faee31527e873dc3ba24c9919a7032ae4ed21f68e9e45 | brummer10/guitarix | gxamp5.dsp | declare id "pre 12ax7/ master 6V6"; // in amp tube ba.selector
declare name "pre 12ax7/ master 6V6";
declare samplerate "96000";
import("stdfaust.lib");
import("guitarix.lib");
/****************************************************************
** Tube Preamp Emulation stage 1 - 2
*/
bifilter = fi.tf2(b0,b1,b2,a1... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/faust/gxamp5.dsp | faust | in amp tube ba.selector
***************************************************************
** Tube Preamp Emulation stage 1 - 2
b0 = 1;
b1 = -1.01;
b2 = 0;
a1 = -1.84;
a2 = 0.846416;
drive = vslider(".gxdistortion.drive[alias]",0.35, 0, 1, 0.01);
wet_dry = vslider(".gxdistortion.wet_dry[alias]", 100, 0, 100... | declare name "pre 12ax7/ master 6V6";
declare samplerate "96000";
import("stdfaust.lib");
import("guitarix.lib");
bifilter = fi.tf2(b0,b1,b2,a1,a2) with
{
c = 1.059;
R = 0.9221;
lc0 = 0.00506158;
lc1 = 0.06446806;
lc2 = 0.27547621;
lc3 = 0.43359433;
lc4 = 1.31282248;
lc5 = 0.0723888... |
4088615c06f3b8b9b03a6df86cf23d63714d2c89f1ad9f6e2f210d7d2f2e07fd | brummer10/guitarix | gxamp4.dsp | declare id "pre 12AU7/ master 6V6"; // in amp tube ba.selector
declare name "pre 12AU7/ master 6V6";
declare samplerate "96000";
import("stdfaust.lib");
import("guitarix.lib");
/****************************************************************
** Tube Preamp Emulation stage 1 - 2
*/
bifilter = fi.tf2(b0,b1,b2,a1... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/faust/gxamp4.dsp | faust | in amp tube ba.selector
***************************************************************
** Tube Preamp Emulation stage 1 - 2
b0 = 1;
b1 = -1.01;
b2 = 0;
a1 = -1.84;
a2 = 0.846416;
drive = vslider(".gxdistortion.drive[alias]",0.35, 0, 1, 0.01);
wet_dry = vslider(".gxdistortion.wet_dry[alias]", 100, 0, 100... | declare name "pre 12AU7/ master 6V6";
declare samplerate "96000";
import("stdfaust.lib");
import("guitarix.lib");
bifilter = fi.tf2(b0,b1,b2,a1,a2) with
{
c = 1.059;
R = 0.9221;
lc0 = 0.00506158;
lc1 = 0.06446806;
lc2 = 0.27547621;
lc3 = 0.43359433;
lc4 = 1.31282248;
lc5 = 0.0723888... |
8d219d729bd07344cf15e8d0dd690a3b9ad3683538d6782eefe35befb36320e1 | brummer10/guitarix | gxamp5_stereo.dsp | declare id "pre 12ax7/ master 6V6"; // in amp tube ba.selector
declare name "pre 12ax7/ master 6V6";
import("stdfaust.lib");
import("guitarix.lib");
/****************************************************************
** Tube Preamp Emulation stage 1 - 2
*/
bifilter = fi.tf2(b0,b1,b2,a1,a2) with
{
c = 1.059;
... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/LV2/faust/gxamp5_stereo.dsp | faust | in amp tube ba.selector
***************************************************************
** Tube Preamp Emulation stage 1 - 2
b0 = 1;
b1 = -1.01;
b2 = 0;
a1 = -1.84;
a2 = 0.846416;
drive = vslider(".gxdistortion.drive[alias]",0.35, 0, 1, 0.01);
wet_dry = vslider(".gxdistortion.wet_dry[alias]", 100, 0, 100... | declare name "pre 12ax7/ master 6V6";
import("stdfaust.lib");
import("guitarix.lib");
bifilter = fi.tf2(b0,b1,b2,a1,a2) with
{
c = 1.059;
R = 0.9221;
lc0 = 0.00506158;
lc1 = 0.06446806;
lc2 = 0.27547621;
lc3 = 0.43359433;
lc4 = 1.31282248;
lc5 = 0.07238887;
fc = 1200 : *(2*ma.PI... |
83bc89997a0fd938d4cdb4b20855ed53933a5b4af9a197321812128e32ed4d7a | brummer10/guitarix | gxtubetremelo.dsp | declare name "Tube Tremolo";
declare category "Modulation";
/*
** Model of a vactrol tremolo unit by "transmogrify"
** c.f. http://sourceforge.net/apps/phpbb/guitarix/viewtopic.php?f=7&t=44&p=233&hilit=transmogrifox#p233
** http://transmogrifox.webs.com/vactrol.m
*/
import("stdfaust.lib");
import("redeye.lib");
/* v... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/LV2/faust/gxtubetremelo.dsp | faust |
** Model of a vactrol tremolo unit by "transmogrify"
** c.f. http://sourceforge.net/apps/phpbb/guitarix/viewtopic.php?f=7&t=44&p=233&hilit=transmogrifox#p233
** http://transmogrifox.webs.com/vactrol.m
vactrol model
os.triangle oscillator (not bandlimited, frequency is approximate)
tremolo unit, using os.triangle... | declare name "Tube Tremolo";
declare category "Modulation";
import("stdfaust.lib");
import("redeye.lib");
R1 = 2700;
Ra = 1e6;
Rb = 300;
b = exp(log(Ra)/log(Rb)) - exp(1);
dTC = 0.06;
minTC = log(0.005/dTC);
cds = ((_ <: _,_),_ : _+(1-alpha)*_) ~ (_<:*(alpha)) with {
iSR = 1/ma.SR;
dRC = dTC * exp(*(minTC... |
6dcac5d53b4c90fe3708bb3dfdf3ab8f143d3cb207c4dd9c69796afc8fd45778 | brummer10/guitarix | gxamp4_stereo.dsp | declare id "pre 12AU7/ master 6V6"; // in amp tube ba.selector
declare name "pre 12AU7/ master 6V6";
import("stdfaust.lib");
import("guitarix.lib");
/****************************************************************
** Tube Preamp Emulation stage 1 - 2
*/
bifilter = fi.tf2(b0,b1,b2,a1,a2) with
{
c = 1.059;
... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/LV2/faust/gxamp4_stereo.dsp | faust | in amp tube ba.selector
***************************************************************
** Tube Preamp Emulation stage 1 - 2
b0 = 1;
b1 = -1.01;
b2 = 0;
a1 = -1.84;
a2 = 0.846416;
drive = vslider(".gxdistortion.drive[alias]",0.35, 0, 1, 0.01);
wet_dry = vslider(".gxdistortion.wet_dry[alias]", 100, 0, 100... | declare name "pre 12AU7/ master 6V6";
import("stdfaust.lib");
import("guitarix.lib");
bifilter = fi.tf2(b0,b1,b2,a1,a2) with
{
c = 1.059;
R = 0.9221;
lc0 = 0.00506158;
lc1 = 0.06446806;
lc2 = 0.27547621;
lc3 = 0.43359433;
lc4 = 1.31282248;
lc5 = 0.07238887;
fc = 1200 : *(2*ma.PI... |
d11e9ca79d7aab58d0471f37174b3738552ca3f7ef65fdd7266cf9fe366c8b81 | brummer10/guitarix | gxamp5.dsp | declare id "pre 12ax7/ master 6V6"; // in amp tube ba.selector
declare name "pre 12ax7/ master 6V6";
import("stdfaust.lib");
import("guitarix.lib");
/****************************************************************
** Tube Preamp Emulation stage 1 - 2
*/
bifilter = fi.tf2(b0,b1,b2,a1,a2) with
{
c = 1.059;
... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/LV2/faust/gxamp5.dsp | faust | in amp tube ba.selector
***************************************************************
** Tube Preamp Emulation stage 1 - 2
b0 = 1;
b1 = -1.01;
b2 = 0;
a1 = -1.84;
a2 = 0.846416;
drive = vslider(".gxdistortion.drive[alias]",0.35, 0, 1, 0.01);
wet_dry = vslider(".gxdistortion.wet_dry[alias]", 100, 0, 100... | declare name "pre 12ax7/ master 6V6";
import("stdfaust.lib");
import("guitarix.lib");
bifilter = fi.tf2(b0,b1,b2,a1,a2) with
{
c = 1.059;
R = 0.9221;
lc0 = 0.00506158;
lc1 = 0.06446806;
lc2 = 0.27547621;
lc3 = 0.43359433;
lc4 = 1.31282248;
lc5 = 0.07238887;
fc = 1200 : *(2*ma.PI... |
6b0fec3ac92042423fead56996f5b9f1b982cda4f5c2d7534ddbf56bdf7d0a1d | brummer10/guitarix | gxamp4.dsp | declare id "pre 12AU7/ master 6V6"; // in amp tube ba.selector
declare name "pre 12AU7/ master 6V6";
import("stdfaust.lib");
import("guitarix.lib");
/****************************************************************
** Tube Preamp Emulation stage 1 - 2
*/
bifilter = fi.tf2(b0,b1,b2,a1,a2) with
{
c = 1.059;
... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/LV2/faust/gxamp4.dsp | faust | in amp tube ba.selector
***************************************************************
** Tube Preamp Emulation stage 1 - 2
b0 = 1;
b1 = -1.01;
b2 = 0;
a1 = -1.84;
a2 = 0.846416;
drive = vslider(".gxdistortion.drive[alias]",0.35, 0, 1, 0.01);
wet_dry = vslider(".gxdistortion.wet_dry[alias]", 100, 0, 100... | declare name "pre 12AU7/ master 6V6";
import("stdfaust.lib");
import("guitarix.lib");
bifilter = fi.tf2(b0,b1,b2,a1,a2) with
{
c = 1.059;
R = 0.9221;
lc0 = 0.00506158;
lc1 = 0.06446806;
lc2 = 0.27547621;
lc3 = 0.43359433;
lc4 = 1.31282248;
lc5 = 0.07238887;
fc = 1200 : *(2*ma.PI... |
fe5a6ea12da519fff0f193f67ffc097a55f8e6055c1b32156ce024fa63156b3f | brummer10/guitarix | tremolo.dsp | declare name "Tremolo";
declare category "Modulation";
declare gladefile "tremolo_ui.glade";
/*
** Model of a vactrol tremolo unit by "transmogrify"
** c.f. http://sourceforge.net/apps/phpbb/guitarix/viewtopic.php?f=7&t=44&p=233&hilit=transmogrifox#p233
** http://transmogrifox.webs.com/vactrol.m
*/
import("stdfaust.l... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/faust/tremolo.dsp | faust |
** Model of a vactrol tremolo unit by "transmogrify"
** c.f. http://sourceforge.net/apps/phpbb/guitarix/viewtopic.php?f=7&t=44&p=233&hilit=transmogrifox#p233
** http://transmogrifox.webs.com/vactrol.m
vactrol model
transcendental functions in fast signal path:
** cds: 2 exp() (2 alpha containing each 1 exp())
** v... | declare name "Tremolo";
declare category "Modulation";
declare gladefile "tremolo_ui.glade";
import("stdfaust.lib");
R1 = 2700;
Ra = 1e6;
Rb = 300;
b = exp(log(Ra)/log(Rb)) - exp(1);
dTC = 0.06;
minTC = log(0.005/dTC);
cds = ((_ <: _,_),_ : _+(1-alpha)*_) ~ (_<:*(alpha)) with {
iSR = 1/ma.SR;
dRC = dTC * ... |
b9e327aad19d46d6954e92029acc5b593b30317469ce72c8e6173aac00356208 | brummer10/MelMatchEQ.lv2 | MelEQ.dsp | declare id "melmatcheq";
declare name "Mel-Match EQ";
declare category "Filter";
declare description "EQ using a 26 step Mel Frequency Band ";
import("stdfaust.lib");
rd = library("reducemaps.lib");
//frequency points (20.0, 102.0, 218.0, 351.0, 503.0, 678.0, 878.0, 1107.0, 1369.0, 1669.0, 2013.0, 2407.0, 2857.0, 337... | https://raw.githubusercontent.com/brummer10/MelMatchEQ.lv2/36e9ca3e5d5b0a045e0c465afc45d4d1ca5f8eb5/dsp/MelEQ.dsp | faust | frequency points (20.0, 102.0, 218.0, 351.0, 503.0, 678.0, 878.0, 1107.0, 1369.0, 1669.0, 2013.0, 2407.0, 2857.0, 3373.0,
3964.0, 4641.0, 5416.0, 6303.0, 7319.0, 8483.0, 9815.0, 10000.0, 13000.0, 15000.0, 17000.0, 20000.0)); | declare id "melmatcheq";
declare name "Mel-Match EQ";
declare category "Filter";
declare description "EQ using a 26 step Mel Frequency Band ";
import("stdfaust.lib");
rd = library("reducemaps.lib");
geq = fi.filterbank(3, (51.0, 160.0, 284.5, 427.0, 590.5, 778.0, 992.5, 1238.0, 1519.0, 1841.0, 2210.0, 2632.0, 3115.0... |
caad0bc8f27ed617405743d4a6734cd22cda553dd30d35f517e0fa3e28508240 | brummer10/VintageTubeOverdrive.lv2 | vintagetubeoverdrive.dsp |
/*******************************************************************************
**************************** File generated by *********************************
********************************************************************************
./build-plug.py -i VintageTubeDriver_p1.sch VintageTubeDriver_p2.sch Vinta... | https://raw.githubusercontent.com/brummer10/VintageTubeOverdrive.lv2/aef7f28d540c0910d7984cb72ea316b5bb718758/vintagetubeoverdrive/vintagetubeoverdrive.dsp | faust | ******************************************************************************
**************************** File generated by *********************************
********************************************************************************
./build-plug.py -i VintageTubeDriver_p1.sch VintageTubeDriver_p2.sch VintageTu... |
declare id "vintagetubeoverdrive";
declare name "VintageTubeOverdrive";
declare category "Extern";
declare shortname "VintageTubeOverdrive";
declare description "VintageTubeOverdrive";
import("stdfaust.lib");
p1a = pre : fi.iir((b0/a0,b1/a0),(a1/a0)) with {
LogPot(a, x) = ba.if(a, (exp(a * x) - 1) / (exp(a) ... |
e0d8836c1bed736c6a740e84eb72968d1db8266ac4578a43c41a8b9fc6509738 | brummer10/guitarix | gxmetal_amp.dsp | declare id "metal"; // in amp tube ba.selector
declare name "GxMetal_head";
import("stdfaust.lib");
import("guitarix.lib");
tstack = component("tonestack_bm.dsp");
tone = tstack[tse=tstack.ts.sovtek;];
overdrive(drive,x) = (x*(abs(x) + drive)/(x*x + (drive-1)*abs(x) + 1)) ;
sharp = 10.0;
press = 5 * sharp;
attack... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/LV2/faust/gxmetal_amp.dsp | faust | in amp tube ba.selector
***************************************************************
** Tube Preamp Emulation stage 1 - 2
tubestageP(tb,vplus,divider,Rp,fck,Rk,Vk0)
tubestage(tb,fck,Rk,Vk0) | declare name "GxMetal_head";
import("stdfaust.lib");
import("guitarix.lib");
tstack = component("tonestack_bm.dsp");
tone = tstack[tse=tstack.ts.sovtek;];
overdrive(drive,x) = (x*(abs(x) + drive)/(x*x + (drive-1)*abs(x) + 1)) ;
sharp = 10.0;
press = 5 * sharp;
attack = 0.005;
release = 10;
knee = 10.5;
ratio ... |
ed6203cb03043d676c5462d9f1cd4ba2ed1fd760f06f87604e0f3f0bfce1a23d | brummer10/guitarix | thick_distortion.dsp | declare id "thick_distortion";
declare name "Thick Distortion";
declare category "Distortion";
declare author "Viacheslav Lotsmanov";
declare license "BSD";
declare copyright "(c) 2018 Viacheslav Lotsmanov";
/*
This effect was written first in Haskell as standalone JACK application.
Can be found h... | https://raw.githubusercontent.com/brummer10/guitarix/12a65413816289bbbb6dcf2538f118ccdc2b6330/trunk/src/faust/thick_distortion.dsp | faust |
This effect was written first in Haskell as standalone JACK application.
Can be found here: https://github.com/unclechu/haskell-audio-dsp
There's simple idea behind this distortion effect.
Main thing is that current sample depends on previous one, "Thickness" value
is a coefficient of how much previous sample wi... | declare id "thick_distortion";
declare name "Thick Distortion";
declare category "Distortion";
declare author "Viacheslav Lotsmanov";
declare license "BSD";
declare copyright "(c) 2018 Viacheslav Lotsmanov";
import("stdfaust.lib");
gain
= vslider("input_gain[name:Input][tooltip:Gain (dB)]", 0, 0,... |
597c87bfdbbd5da3acfee1fe57cfb25e585b4a90c5690f5e8a409728223844ac | brummer10/guitarix | gxamp2.dsp | declare id "6V6"; // in amp tube ba.selector
declare name "6V6";
declare samplerate "96000";
import("stdfaust.lib");
import("guitarix.lib");
/****************************************************************
** Tube Preamp Emulation stage 1 - 2
*/
bifilter = fi.tf2(b0,b1,b2,a1,a2) with
{
c = 1.059;
R = 0... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/faust/gxamp2.dsp | faust | in amp tube ba.selector
***************************************************************
** Tube Preamp Emulation stage 1 - 2
b0 = 1;
b1 = -1.01;
b2 = 0;
a1 = -1.84;
a2 = 0.846416;
drive = vslider(".gxdistortion.drive[alias]",0.35, 0, 1, 0.01);
wet_dry = vslider(".gxdistortion.wet_dry[alias]", 100, 0, 100... | declare name "6V6";
declare samplerate "96000";
import("stdfaust.lib");
import("guitarix.lib");
bifilter = fi.tf2(b0,b1,b2,a1,a2) with
{
c = 1.059;
R = 0.9221;
lc0 = 0.00506158;
lc1 = 0.06446806;
lc2 = 0.27547621;
lc3 = 0.43359433;
lc4 = 1.31282248;
lc5 = 0.07238887;
fc = 1200 :... |
fdf5818f3cb18678c86be30873dbe502cd302a8797e16e72a79f89f5d1aea99f | brummer10/guitarix | gxamp2.dsp | declare id "6V6"; // in amp tube ba.selector
declare name "6V6";
import("stdfaust.lib");
import("guitarix.lib");
/****************************************************************
** Tube Preamp Emulation stage 1 - 2
*/
bifilter = fi.tf2(b0,b1,b2,a1,a2) with
{
c = 1.059;
R = 0.9221;
lc0 = 0.00506158;... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/LV2/faust/gxamp2.dsp | faust | in amp tube ba.selector
***************************************************************
** Tube Preamp Emulation stage 1 - 2
b0 = 1;
b1 = -1.01;
b2 = 0;
a1 = -1.84;
a2 = 0.846416;
drive = vslider(".gxdistortion.drive[alias]",0.35, 0, 1, 0.01);
wet_dry = vslider(".gxdistortion.wet_dry[alias]", 100, 0, 100... | declare name "6V6";
import("stdfaust.lib");
import("guitarix.lib");
bifilter = fi.tf2(b0,b1,b2,a1,a2) with
{
c = 1.059;
R = 0.9221;
lc0 = 0.00506158;
lc1 = 0.06446806;
lc2 = 0.27547621;
lc3 = 0.43359433;
lc4 = 1.31282248;
lc5 = 0.07238887;
fc = 1200 : *(2*ma.PI/ma.SR) : log;
... |
0c9e93401bc35fb439b057818e5a293cf4856f64a64fc857bced2d4007e4a613 | brummer10/guitarix | gxamp2_stereo.dsp | declare id "6V6"; // in amp tube ba.selector
declare name "6V6";
import("stdfaust.lib");
import("guitarix.lib");
/****************************************************************
** Tube Preamp Emulation stage 1 - 2
*/
bifilter = fi.tf2(b0,b1,b2,a1,a2) with
{
c = 1.059;
R = 0.9221;
lc0 = 0.00506158;... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/LV2/faust/gxamp2_stereo.dsp | faust | in amp tube ba.selector
***************************************************************
** Tube Preamp Emulation stage 1 - 2
b0 = 1;
b1 = -1.01;
b2 = 0;
a1 = -1.84;
a2 = 0.846416;
drive = vslider(".gxdistortion.drive[alias]",0.35, 0, 1, 0.01);
wet_dry = vslider(".gxdistortion.wet_dry[alias]", 100, 0, 100... | declare name "6V6";
import("stdfaust.lib");
import("guitarix.lib");
bifilter = fi.tf2(b0,b1,b2,a1,a2) with
{
c = 1.059;
R = 0.9221;
lc0 = 0.00506158;
lc1 = 0.06446806;
lc2 = 0.27547621;
lc3 = 0.43359433;
lc4 = 1.31282248;
lc5 = 0.07238887;
fc = 1200 : *(2*ma.PI/ma.SR) : log;
... |
b3cf69679760d2fa6fef8d85321e25a36fb01844d216b25a9cb33bf1c826b855 | brummer10/guitarix | Exp.dsp |
import("stdfaust.lib");
import("guitarix.lib");
/****************************************************************
** unused
*/
/*
distort(x) = x : *(pregain) : (+ : flt : BP(vtu) : flt) ~ *(back) : gain with
{
back = vslider("FB",0.95,0.6,0.99,0.001);
mapper(v) = 1 - 19.7 * v * v;
flt(x) = +(x - x') ~... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/faust/Exp.dsp | faust | ***************************************************************
** unused
distort(x) = x : *(pregain) : (+ : flt : BP(vtu) : flt) ~ *(back) : gain with
{
back = vslider("FB",0.95,0.6,0.99,0.001);
mapper(v) = 1 - 19.7 * v * v;
flt(x) = +(x - x') ~ *(mapper(vslider("FreqT", 1250, 200, 3000, 1)/ma.SR));
... |
import("stdfaust.lib");
import("guitarix.lib");
meter = _ <: (graph*1e-50,_) :> _ with {
t = 0.05;
g = exp(-1/(ma.SR*t));
env = abs : *(1-g) : + ~ *(g);
graph = env : 20*log10 : clip(-20,20) : vbargraph("ENV",-20,20);
};
wet_dry = vslider("wet_dry[name:wet/dry]", 0, -1, 1, 0.1);
process = hgro... |
b7c20b628c01db1435a428904a3cc07334ee90892f81c8c082e1ce882f40488f | brummer10/guitarix | mxrdist.dsp | declare id "mxrdis";
declare name "MXR Distortion Plus";
declare shortname "MXR+";
declare category "Distortion";
declare samplerate "96000";
import("stdfaust.lib");
s = 0.993;
fs = float(ma.SR);
drive = 0.75 + hslider("drive[name:Drive]", 0.5, 0, 1, 0.01) * 0.25 : si.smooth(s);
mxr_in = fi.iir((b0... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/LV2/faust/mxrdist.dsp | faust | declare id "mxrdis";
declare name "MXR Distortion Plus";
declare shortname "MXR+";
declare category "Distortion";
declare samplerate "96000";
import("stdfaust.lib");
s = 0.993;
fs = float(ma.SR);
drive = 0.75 + hslider("drive[name:Drive]", 0.5, 0, 1, 0.01) * 0.25 : si.smooth(s);
mxr_in = fi.iir((b0... | |
b9261acba48fbaabc1622943ea80da582058c0c6c739ee56852655b58bbd690a | brummer10/guitarix | selecteq.dsp | declare id "eqs";
declare name "Scaleable EQ";
declare category "Tone Control";
declare license "BSD";
declare copyright "(c)GRAME 2006";
import("stdfaust.lib");
import("guitarix.lib");
//------------------------- Process --------------------------------
process = ifilter(vslider("Qs31_25", 5... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/LV2/faust/selecteq.dsp | faust | ------------------------- Process -------------------------------- | declare id "eqs";
declare name "Scaleable EQ";
declare category "Tone Control";
declare license "BSD";
declare copyright "(c)GRAME 2006";
import("stdfaust.lib");
import("guitarix.lib");
process = ifilter(vslider("Qs31_25", 50, 1, 100, 1), vslider("freq31_25 [tooltip:Hz]",31, 20, 20000, 1), ... |
f1ffe54ccf0274de41adb68513b3201f2d4d5c28308b35bbe521df47934d440c | brummer10/guitarix | snare.dsp | import("stdfaust.lib");
// Port from SuperCollider to Faust of snare_stein in
// SynthDefPool by Dan Stowell, which in turn was based
// on a Sound-on-Sound 'synth secrets' tutorial
//https://github.com/josmithiii/faust-jos/tree/master/percussion
decay(n,x) = x - (x>0.0)/n;
release(n) = + ~ decay(n);
envgate(dur,tri... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/faust/snare.dsp | faust | Port from SuperCollider to Faust of snare_stein in
SynthDefPool by Dan Stowell, which in turn was based
on a Sound-on-Sound 'synth secrets' tutorial
https://github.com/josmithiii/faust-jos/tree/master/percussion
the 2 'state' signals are fed back
p2 = decay-sustain phase
y = envelop signal
cut off tails to prev... | import("stdfaust.lib");
decay(n,x) = x - (x>0.0)/n;
release(n) = + ~ decay(n);
envgate(dur,trigger) = trigger : release(int(dur*float(ma.SR))) : >(0.0);
with {
env (p2,y) =
with {
na = ma.SR*a+(a==0.0); nd = ma.SR*d+(d==0.0); nr = ma.SR*r+(r==0.0);
z = s+(s==0.0)*ba.db2linear(-60);
u = 1/na; v = 1-pow... |
13ddcc56ae6095c9e98df276ba7d900791cf2f49aaface859eeeb0b5ca6b1a64 | brummer10/Rumor | rumor.dsp |
/*******************************************************************************
**************************** File generated by *********************************
********************************************************************************
./build-plug.py -i Ruiner.sch -t 1 -T -b
*********************************... | https://raw.githubusercontent.com/brummer10/Rumor/17e4f92a07863cd7851b4b840ffd1846f55c4fe1/Rumor/rumor.dsp | faust | ******************************************************************************
**************************** File generated by *********************************
********************************************************************************
./build-plug.py -i Ruiner.sch -t 1 -T -b
*************************************... |
declare id "rumor";
declare name "rumor";
declare category "Extern";
declare shortname "rumor";
declare description "rumor";
declare samplerate "96000";
import("stdfaust.lib");
rd = library("reducemaps.lib");
rtable(table, r) = (table, int(r)):rdtable;
ccopysign(f, x) = ma.fabs(f) * sign(x);
sign(x) = x<0, 1, -... |
3e615e361038bb5d69331bc5b0f8e10b9633bf956e8ac09651c380efea6dd526 | brummer10/guitarix | aclipper.dsp | declare id "aclipper";
declare name "Rat";
declare category "Distortion";
declare samplerate "96000";
import("stdfaust.lib");
s = 0.993;
fs = float(ma.SR);
drive = hslider("drive[name:Drive]", 0.5, 0, 1, 0.01) : si.smooth(s);
rat_in = fi.iir((b0/a0,b1/a0,b2/a0),(a1/a0,a2/a0)) with {
b0 = 1.... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/plugins/aclipper.dsp | faust | declare id "aclipper";
declare name "Rat";
declare category "Distortion";
declare samplerate "96000";
import("stdfaust.lib");
s = 0.993;
fs = float(ma.SR);
drive = hslider("drive[name:Drive]", 0.5, 0, 1, 0.01) : si.smooth(s);
rat_in = fi.iir((b0/a0,b1/a0,b2/a0),(a1/a0,a2/a0)) with {
b0 = 1.... | |
11e2b27ca2f9437fbe096842ba114f299a24492db7e43dae5e2adf7617af8ed2 | brummer10/guitarix | tone.dsp | declare id "amp.tone";
declare version "0.01";
declare author "brummer";
declare license "BSD";
declare copyright "(c)brummer 2008";
import("stdfaust.lib");
import("guitarix.lib");
/*-----------------------------------------------
The tone control
Low and high shelf filters, from Robert Bristow-John... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/LV2/faust/tone.dsp | faust | -----------------------------------------------
The tone control
Low and high shelf filters, from Robert Bristow-Johnson's "Audio
EQ Cookbook", see http://www.musicdsp.org/files/Audio-EQ-Cookbook.txt.
-----------------------------------------------
Fixed bass and treble frequencies. | declare id "amp.tone";
declare version "0.01";
declare author "brummer";
declare license "BSD";
declare copyright "(c)brummer 2008";
import("stdfaust.lib");
import("guitarix.lib");
filter(b0,b1,b2,a0,a1,a2) = f : (+ ~ g)
with {
f(x) = (b0/a0)*x+(b1/a0)*x'+(b2/a0)*x'';
g(y) = 0-(a1/a0)*y-(a2/a0)*y';
};
gxlo... |
612776755eb14268e9e26795ecc7d237d4bc9b8a040478cc5518c0af4674f5c5 | brummer10/guitarix | oc_2.dsp | //BOSS OC-2 partial emulation.
//This file uses data from oc_2.include.
//*.include file was generated using oc_2.py.
//Also, see schematic description in the .odg file
import("stdfaust.lib");
import("../../../tools/plugins/oc_2/oc_2.lib");
//Filters
f1 = _:fi.iir((b0_f1,b1_f1,b2_f1,b3_f1),(a1_f1,a2_f1,a3_f1)):_;
f... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/LV2/faust/oc_2.dsp | faust | BOSS OC-2 partial emulation.
This file uses data from oc_2.include.
*.include file was generated using oc_2.py.
Also, see schematic description in the .odg file
Filters
Switch implementation
Trigger fi.integrator
Trigger prefilters
Frequency divider
Rectifier
Controls |
import("stdfaust.lib");
import("../../../tools/plugins/oc_2/oc_2.lib");
f1 = _:fi.iir((b0_f1,b1_f1,b2_f1,b3_f1),(a1_f1,a2_f1,a3_f1)):_;
f2 = _:fi.iir((b0_f2,b1_f2,b2_f2,b3_f2),(a1_f2,a2_f2,a3_f2)):_;
f3 = _:fi.iir((b0_f3,b1_f3,b2_f3,b3_f3),(a1_f3,a2_f3,a3_f3)):_;
switch_impl(x, state) = select2((state >= 1.7),sw_op... |
18541e6345614307531a4e38b97ba79a555b82da853e044ad02d053bf0b29bb1 | brummer10/guitarix | aclipper.dsp | declare id "aclipper";
declare name "Rat";
declare category "Distortion";
declare samplerate "96000";
import("stdfaust.lib");
s = 0.993;
fs = float(ma.SR);
drive = hslider("drive[name:Drive]", 0.5, 0, 1, 0.01) : si.smooth(s);
rat_in = fi.iir((b0/a0,b1/a0,b2/a0),(a1/a0,a2/a0)) with {
b0 = 1.... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/LV2/faust/aclipper.dsp | faust | declare id "aclipper";
declare name "Rat";
declare category "Distortion";
declare samplerate "96000";
import("stdfaust.lib");
s = 0.993;
fs = float(ma.SR);
drive = hslider("drive[name:Drive]", 0.5, 0, 1, 0.01) : si.smooth(s);
rat_in = fi.iir((b0/a0,b1/a0,b2/a0),(a1/a0,a2/a0)) with {
b0 = 1.... | |
9ce27257d8a7f73caeb8fac403773044df0ce7ecb871cd98468fdfcfc254908b | brummer10/guitarix | duck_delay_st.dsp | declare id "duckDelaySt";
declare name "Duck Delay St";
declare category "Echo / Delay";
//------------------------------------
//Description:
//The delayed signal added to output dependent of input signal amplitude.
//If the input signal is high. The delayed signal turned off, and vise versa.
//The switching contr... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/LV2/faust/duck_delay_st.dsp | faust | ------------------------------------
Description:
The delayed signal added to output dependent of input signal amplitude.
If the input signal is high. The delayed signal turned off, and vise versa.
The switching controlled by envelope follower
(parameters: "attack", "release", and main - "amount", what is controls en... | declare id "duckDelaySt";
declare name "Duck Delay St";
declare category "Echo / Delay";
import("stdfaust.lib");
p_time = hslider("time", 500, 1, 2000, 1):si.smooth(ba.tau2pole(0.1));
p_feedback = hslider("feedback", 0, 0, 1, 0.05);
p_pingpong = hslider("pingpong", 0, 0, 1, 0.05);
coloration = hslider("coloration"... |
5f000f0e3911a34b40a11894428df27602d2f02d6d04b50d5ec524eb5ae3cac2 | brummer10/guitarix | dunwah.dsp | declare id "dunwah";
declare name "DunWah";
import("stdfaust.lib");
dunwah = *(gs) : tf2(1,-1,0,a1s,a2s)
with {
// calculated by dunwah1.py
theta2pi = (1892.75 - 1 / (((0.000927476*wah+-0.00197293)*wah+0.002474)*wah+-0.00152132))/ma.SR;
Q = ((-12.1248*wah+21.9241)*wah+-33.2116)*wah+25.8564;
g = 0.025 ... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/plugins/dunwah.dsp | faust | calculated by dunwah1.py
biquad coeff
biquad coeff
dezippering of slider-driven signals:
smoothing parameter (one-pole pole location)
wah = vslider("wah", 0, 0, 1, 0.01) : *(9) : +(1) : log10;
calculated by dunwah2.py
dezippering of slider-driven signals:
smoothing parameter (one-pole pole location)
biquad coe... | declare id "dunwah";
declare name "DunWah";
import("stdfaust.lib");
dunwah = *(gs) : tf2(1,-1,0,a1s,a2s)
with {
theta2pi = (1892.75 - 1 / (((0.000927476*wah+-0.00197293)*wah+0.002474)*wah+-0.00152132))/ma.SR;
Q = ((-12.1248*wah+21.9241)*wah+-33.2116)*wah+25.8564;
g = 0.025 - 1 / ((((-127.479*wah+387.412)*... |
76c1edeef5c48ec6c85a721a6b412a91b994a44447f8984eb5c02232851f5825 | brummer10/guitarix | room_simulator.dsp | //Description:
//Based at Gardner's room reverberator models:
//http://fc.mbs.net/~pfisher/fov2-0010016c/fov2-0010016e/fov2-001001a3/book/chapters/24mikelson/index.html
//The values with couple of nines are corrected and differ
//from original implementation
import("stdfaust.lib");
//Controls
p_predelay = hslider("P... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/LV2/faust/room_simulator.dsp | faust | Description:
Based at Gardner's room reverberator models:
http://fc.mbs.net/~pfisher/fov2-0010016c/fov2-0010016e/fov2-001001a3/book/chapters/24mikelson/index.html
The values with couple of nines are corrected and differ
from original implementation
Controls
Convert time in ms to samples
One fi.pole filter
Allpasses
Gar... |
import("stdfaust.lib");
p_predelay = hslider("Predelay ms[style:knob]",20,1,200,1);
p_rsize = hslider("Room Size[style:knob]", 1, 0, 3, 0.05);
p_rt = hslider("RT[style:knob]", 0.3, 0, 1, 0.05);
p_drw = hslider("dry wet[style:knob]", 0.5, 0, 1,0.05);
ms2sps(x) = x*ma.SR:_*0.001;
opf(a) = (_+_*(1-a)~@(1)*a);
allpa... |
e73daad5965e52f3f386459020cacf262d5a7623eedba05f40a255f21e1217a4 | brummer10/guitarix | rangem.dsp | // generated automatically
// DO NOT MODIFY!
declare id "rangem";
declare name "Rangemaster";
declare category "Tone Control";
declare shortname "Rangemaster";
declare description "High Frequency Booster";
import("stdfaust.lib");
process = pre : _<:*(dry),(*(wet) : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0),(a1/a0,a2/a0,a3/a0)... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/plugins/rangem.dsp | faust | generated automatically
DO NOT MODIFY! | declare id "rangem";
declare name "Rangemaster";
declare category "Tone Control";
declare shortname "Rangemaster";
declare description "High Frequency Booster";
import("stdfaust.lib");
process = pre : _<:*(dry),(*(wet) : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0),(a1/a0,a2/a0,a3/a0))):>_ with {
LogPot(a, x) = ba.if(a, (exp... |
4997cbe29a559f381253312d4fd65032dddb4c39ad624de803636db12b7e68e0 | brummer10/guitarix | duck_delay_st.dsp | declare id "duckDelaySt";
declare name "Duck Delay St";
declare category "Echo / Delay";
//------------------------------------
//Description:
//The delayed signal added to output dependent of input signal amplitude.
//If the input signal is high. The delayed signal turned off, and vise versa.
//The switching contr... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/faust/duck_delay_st.dsp | faust | ------------------------------------
Description:
The delayed signal added to output dependent of input signal amplitude.
If the input signal is high. The delayed signal turned off, and vise versa.
The switching controlled by envelope follower
(parameters: "attack", "release", and main - "amount", what is controls en... | declare id "duckDelaySt";
declare name "Duck Delay St";
declare category "Echo / Delay";
import("stdfaust.lib");
p_time = hslider("time[name:Delay]", 500, 1, 2000, 1):si.smooth(ba.tau2pole(0.1));
p_feedback = hslider("feedback[name:Feedback]", 0, 0, 1, 0.05);
p_pingpong = hslider("pingpong[name:Ping Pong]", 0, 0, ... |
4ca5a664ca337b329786e73b315acdf14b4d0bb3c6b28160047f29ef76b63b8b | brummer10/guitarix | dattorros_progenitor.dsp | declare id "dattorros_progenitor";
declare name "Plate Reverb";
declare category "Reverb";
//------------------------------------
//Based at:
//Effect Design Part 1: Reverberator and Other Filters
//JON DATTORRO, AES Member
//CCRMA, Stanford University, Stanford, CA, USA
//------------------------------------
impor... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/faust/dattorros_progenitor.dsp | faust | ------------------------------------
Based at:
Effect Design Part 1: Reverberator and Other Filters
JON DATTORRO, AES Member
CCRMA, Stanford University, Stanford, CA, USA
------------------------------------
Controls
Will be moved to .lib
Consts
Original sample rate, described in paper
Correct de.delay lines according ... | declare id "dattorros_progenitor";
declare name "Plate Reverb";
declare category "Reverb";
import("stdfaust.lib");
import("guitarix.lib");
max_predelay_ms = 200;
predelay = hslider("predelay ms[name:Predelay]", 0, 0, max_predelay_ms, 10);
excursion = hslider("excursion[name:Excursion]", 0, 0, 16, 0.5);
decay = hs... |
1883bbaa8ffc20db65604f5764cb6583636249148dd92dc780dde7e188bb3aa1 | brummer10/guitarix | panoram_enhancer.dsp | declare id "panoram_enhancer";
declare name "Panoram Enhancer";
declare shortname "Panoram";
declare category "Misc";
//------------------------------------
//Based at:
//ECE542 T. Tran; Rice University; Spring 2005
//"Title: Stereo Enhancement Algorithm"
//------------------------------------
import("stdfaust.lib"... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/faust/panoram_enhancer.dsp | faust | ------------------------------------
Based at:
ECE542 T. Tran; Rice University; Spring 2005
"Title: Stereo Enhancement Algorithm"
------------------------------------
Controls
Constants
Max length of all de.delay lines, to provide 200 ms at 192 kHz
Real max length, 200 ms
Filters order in filter-banks
Main filter fhi
... | declare id "panoram_enhancer";
declare name "Panoram Enhancer";
declare shortname "Panoram";
declare category "Misc";
import("stdfaust.lib");
delay_width = hslider("Delay width[name:Delay][tooltip:Delay Width]",0,0,1,0.01):si.smooth(0.999);
freq_width = hslider("Frequency width[name:Frequency][tooltip:Frequency Wi... |
1814f49f27adfae230269d43a23312f3fdf5cef0af417fafef6dc7e4b98b4e1f | brummer10/guitarix | tom.dsp | import("stdfaust.lib");
// Port from SuperCollider (SC) to Faust of SynthDef \SOStom in
// <SuperCollider>/examples/demonstrations/DrumSynths.scd
// e.g., /usr/local/share/SuperCollider/examples/demonstrations/DrumSynths.scd
// based on a Sound-on-Sound 'synth secrets' tutorial:
// http://www.soundonsound.com/sos/Mar... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/faust/tom.dsp | faust | Port from SuperCollider (SC) to Faust of SynthDef \SOStom in
<SuperCollider>/examples/demonstrations/DrumSynths.scd
e.g., /usr/local/share/SuperCollider/examples/demonstrations/DrumSynths.scd
based on a Sound-on-Sound 'synth secrets' tutorial:
http://www.soundonsound.com/sos/Mar02/articles/synthsecrets0302.asp
S... | import("stdfaust.lib");
gate = checkbox("gate [nomidi:no][alias]");
trigger = gate > gate';
ampdb = vslider("Gainf [nomidi:no][alias]",-20,-60,40,0.1);
amp = ampdb : si.smooth(0.999) : ba.db2linear;
freq = vslider("[2] freq [nomidi:no][alias]", 90, 90, 150, 1);
sustain = 0.4;
drum_timbre = 1.0;
drum_mode_level =... |
8427ab4504d93725adfadedcf3f421a4929195cfc81aef517dc8f3be4a5114c2 | brummer10/guitarix | kick.dsp | import("stdfaust.lib");
// Port from SuperCollider (SC) to Faust of SOSkick in
// <SuperCollider>/examples/demonstrations/DrumSynths.scd
// based on a Sound-on-Sound 'synth secrets' tutorial:
// http://www.soundonsound.com/sos/jan02/articles/synthsecrets0102.asp
//https://github.com/josmithiii/faust-jos/tree/master/... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/faust/kick.dsp | faust | Port from SuperCollider (SC) to Faust of SOSkick in
<SuperCollider>/examples/demonstrations/DrumSynths.scd
based on a Sound-on-Sound 'synth secrets' tutorial:
http://www.soundonsound.com/sos/jan02/articles/synthsecrets0102.asp
https://github.com/josmithiii/faust-jos/tree/master/percussion
the 2 'state' signals ar... | import("stdfaust.lib");
decay(n,x) = x - (x>0.0)/n;
release(n) = + ~ decay(n);
envgate(dur,trigger) = trigger : release(int(dur*float(ma.SR))) : >(0.0);
with {
env (p2,y) =
with {
na = ma.SR*a+(a==0.0); nd = ma.SR*d+(d==0.0); nr = ma.SR*r+(r==0.0);
z = s+(s==0.0)*ba.db2linear(-60);
u = 1/na; v = 1-pow... |
6423087fe355eb062935d7d5e8f645de0af99ab3b82c87bd6f092293d4587c22 | brummer10/guitarix | selecteq.dsp | declare id "eqs";
declare name "Scaleable EQ";
declare category "Tone Control";
declare license "BSD";
declare copyright "(c)GRAME 2006";
import("stdfaust.lib");
import("guitarix.lib");
//------------------------- Process --------------------------------
// lower bands (up to 125 Hz) suffer fro... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/faust/selecteq.dsp | faust | ------------------------- Process --------------------------------
lower bands (up to 125 Hz) suffer from numerical cancellation
when using single precision.
vectorization makes code slower (tested on ARM NEON). | declare id "eqs";
declare name "Scaleable EQ";
declare category "Tone Control";
declare license "BSD";
declare copyright "(c)GRAME 2006";
import("stdfaust.lib");
import("guitarix.lib");
process = ifilter(vslider("Qs31_25 [tooltip:bandwidth]", 50, 1, 100, 1),
vslider("freq... |
f40d4492f7da48b06958b05a3380a5aec09edb7ddb65cb3d6fe299524e7dd200 | brummer10/guitarix | graphiceq.dsp | declare id "graphiceq";
declare name "Graphic EQ";
declare category "Tone Control";
declare description "Graphic EQ";
import("stdfaust.lib");
rd = library("reducemaps.lib");
//geq = fi.filterbank(3, (31.25, 62.5, 125., 250., 500., 1000., 2000., 4000., 8000., 16000.));
geq = fi.filterbank(3, (44., 88., 177., 354., 707... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/LV2/faust/graphiceq.dsp | faust | geq = fi.filterbank(3, (31.25, 62.5, 125., 250., 500., 1000., 2000., 4000., 8000., 16000.)); | declare id "graphiceq";
declare name "Graphic EQ";
declare category "Tone Control";
declare description "Graphic EQ";
import("stdfaust.lib");
rd = library("reducemaps.lib");
geq = fi.filterbank(3, (44., 88., 177., 354., 707., 1414., 2828., 5657., 11384., 18110.));
g1 = vslider("g1[tooltip:gain (dB) below 31.25 Hz]",... |
ed89ca7e2cf5f12759d05f435405d4fec83c2c7ae08dc388924ad5772d88d93c | brummer10/MetalTone | metaltone_pre.dsp |
/*******************************************************************************
**************************** File generated by *********************************
********************************************************************************
./build-plug.py -i MetalZone.sch -b
***************************************... | https://raw.githubusercontent.com/brummer10/MetalTone/610736038723c8470962a4d862943e9a8c8aecab/MetalTone/metaltone_pre.dsp | faust | ******************************************************************************
**************************** File generated by *********************************
********************************************************************************
./build-plug.py -i MetalZone.sch -b
******************************************... |
declare id "metalzone";
declare name "metalzone";
declare category "Extern";
declare shortname "metalzone";
declare description "metalzone";
import("stdfaust.lib");
p0 = pre : fi.iir((b0/a0,b1/a0),(a1/a0)) with {
LogPot(a, x) = ba.if(a, (exp(a * x) - 1) / (exp(a) - 1), x);
Inverted(b, x) = ba.if(b, 1 - x, ... |
414acd89463bdf7efc50beeca600407434f794d1f31639edd26fa99aedb161a0 | brummer10/LittleFly.lv2 | LittleFly.dsp |
/*******************************************************************************
**************************** File generated by *********************************
********************************************************************************
./build-plug.py -i LittleFly.sch -T --table_neg 1 -N -n LittleFly --build
... | https://raw.githubusercontent.com/brummer10/LittleFly.lv2/5f3e77afec2b29aff1765bd722d8704fcc305c5c/LittleFly/dsp/LittleFly.dsp | faust | ******************************************************************************
**************************** File generated by *********************************
********************************************************************************
./build-plug.py -i LittleFly.sch -T --table_neg 1 -N -n LittleFly --build
****... |
declare id "littlefly";
declare name "LittleFly";
declare category "Extern";
declare shortname "LittleFly";
declare description "Overdrive Pedal";
import("stdfaust.lib");
rd = library("reducemaps.lib");
rtable(table, r) = (table, int(r)):rdtable;
ccopysign(f, x) = ma.fabs(f) * sign(x);
sign(x) = x<0, 1, -1 : se... |
ed7885e9cdfdc2a5772a3bdd56c195cdf904a9965c012d1a24bdfbd7172a5381 | brummer10/guitarix | phaser.dsp | declare id "phaser";
declare name "Phaser";
declare category "Modulation";
//phaser taken from effect.lib
// by Julius O. Smith III
import("stdfaust.lib");
vibrato_mono(sections,phase01,fb,width,frqmin,fratio,frqmax,speed) =
(+ : seq(i,sections,ap2p(R,th(i)))) ~ *(fb)
with {
// fi.tf2 = component("filter.li... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/faust/phaser.dsp | faust | phaser taken from effect.lib
by Julius O. Smith III
fi.tf2 = component("filter.lib").fi.tf2;
second-order resonant digital allpass given fi.pole radius and angle:
ma.SR = component("music.lib").ma.SR;
in [0,1]
depth=0 => direct-signal only
depth=1 => phaser mode (equal sum of direct and allpass-pm.chain)
depth... | declare id "phaser";
declare name "Phaser";
declare category "Modulation";
import("stdfaust.lib");
vibrato_mono(sections,phase01,fb,width,frqmin,fratio,frqmax,speed) =
(+ : seq(i,sections,ap2p(R,th(i)))) ~ *(fb)
with {
ap2p(R,th) = fi.tf2(a2,a1,1,a1,a2) with {
a2 = R^2;
a1 = -2*R*cos(th);
... |
d61c68e6b940e876820d82f05c04162d22e23b6ddba40589a133a12048a450a0 | brummer10/guitarix | preampstereo.dsp | declare id "RedeyePreStereo";
declare name "RedeyePreStereo";
import("stdfaust.lib");
import("guitarix.lib");
// Using guitarix tubes to create a simple line stage emulation stereo
//
//stage1 has approx 3.2dB gain
//stage2 has -10.7dB gain
stage1adjust = *( -3.2:ba.db2linear);
stage2adjust = *( 10.7:ba.db2linear... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/faust/preampstereo.dsp | faust | Using guitarix tubes to create a simple line stage emulation stereo
stage1 has approx 3.2dB gain
stage2 has -10.7dB gain
We now have untiy gain stages which makes feedback easier to apply consistently
And measure freq response flat up tpo around 19K then slow rolloff
Feedback :
Fror some reason what works here... | declare id "RedeyePreStereo";
declare name "RedeyePreStereo";
import("stdfaust.lib");
import("guitarix.lib");
stage1adjust = *( -3.2:ba.db2linear);
stage2adjust = *( 10.7:ba.db2linear);
stage1 = tubestage(TB_12AX7_68k,40.0,1500.0,1.5025):stage1adjust;
stage2 = tubestage(TB_12AX7_68k,20.0,1500.0,1.4925):stage1adju... |
49adc63a5a95eca43eddbbfbc96b7c4eeb7ea60f3d38891db7ebe62c79d61e83 | brummer10/guitarix | hat_closed.dsp | import("stdfaust.lib");
// Port from SuperCollider (SC) to Faust of SynthDef \SOShat in
// <SuperCollider>/examples/demonstrations/DrumSynths.scd
// e.g., /usr/local/share/SuperCollider/examples/demonstrations/DrumSynths.scd
// on Linux
// based on a Sound-on-Sound 'synth secrets' tutorial:
// http://www.soundonsound... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/faust/hat_closed.dsp | faust | Port from SuperCollider (SC) to Faust of SynthDef \SOShat in
<SuperCollider>/examples/demonstrations/DrumSynths.scd
e.g., /usr/local/share/SuperCollider/examples/demonstrations/DrumSynths.scd
on Linux
based on a Sound-on-Sound 'synth secrets' tutorial:
http://www.soundonsound.com/sos/Jun02/articles/synthsecrets0... | import("stdfaust.lib");
pi = ma.PI;
decay(n,x) = x - (x>0.0)/n;
release(n) = + ~ decay(n);
envgate(dur,trigger) = trigger : release(int(dur*float(ma.SR))) : >(0.0);
with {
env (p2,y) =
with {
na = ma.SR*a+(a==0.0); nd = ma.SR*d+(d==0.0); nr = ma.SR*r+(r==0.0);
z = s+(s==0.0)*ba.db2linear(-60);
u = 1/... |
9ee89784edc7a6dd97b318704406728cacc170dc23a6253e883335598b72d463 | brummer10/guitarix | preampmono.dsp | declare id "RedeyePreMono";
declare name "RedeyePreMono";
import("stdfaust.lib");
import("guitarix.lib");
// Using guitarix tubes to create a simple line stage emulation stereo
//
//stage1 has approx 3.2dB gain
//stage2 has -10.7dB gain
stage1adjust = *( -3.2:ba.db2linear);
stage2adjust = *( 10.7:ba.db2linear);
s... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/faust/preampmono.dsp | faust | Using guitarix tubes to create a simple line stage emulation stereo
stage1 has approx 3.2dB gain
stage2 has -10.7dB gain
We now have untiy gain stages which makes feedback easier to apply consistently
And measure freq response flat up tpo around 19K then slow rolloff
Feedback :
Fror some reason what works here... | declare id "RedeyePreMono";
declare name "RedeyePreMono";
import("stdfaust.lib");
import("guitarix.lib");
stage1adjust = *( -3.2:ba.db2linear);
stage2adjust = *( 10.7:ba.db2linear);
stage1 = tubestage(TB_12AX7_68k,40.0,1500.0,1.5025):stage1adjust;
stage2 = tubestage(TB_12AX7_68k,20.0,1500.0,1.4925):stage1adjust ;... |
5a0245eb430f3a65001bddbb0891a45f9b77d904e8005c3d9cad127b0d594b8d | brummer10/guitarix | graphiceq.dsp | declare id "graphiceq";
declare name "Graphic EQ";
declare category "Tone Control";
declare description "Graphic EQ";
import("stdfaust.lib");
rd = library("reducemaps.lib");
//geq = fi.filterbank(3, (31.25, 62.5, 125., 250., 500., 1000., 2000., 4000., 8000., 16000.));
geq = fi.filterbank(3, (44., 88., 177., 354., 707... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/faust/graphiceq.dsp | faust | geq = fi.filterbank(3, (31.25, 62.5, 125., 250., 500., 1000., 2000., 4000., 8000., 16000.)); | declare id "graphiceq";
declare name "Graphic EQ";
declare category "Tone Control";
declare description "Graphic EQ";
import("stdfaust.lib");
rd = library("reducemaps.lib");
geq = fi.filterbank(3, (44., 88., 177., 354., 707., 1414., 2828., 5657., 11384., 18110.));
g1 = vslider("g1[tooltip:gain (dB) below 31.25 Hz]",... |
3c9a34d8bab286a9a55518c458ef2b53565321ea307035a17bf9e4ff02e6adfc | brummer10/guitarix | mbclipper.dsp | declare id "mbclip";
declare name "MultiBand Clipper";
declare shortname "MB Clipper";
declare category "Distortion";
declare description "MultiBand Clipper";
import("stdfaust.lib");
import("reducemaps.lib");
anti_denormal = pow(10,-20);
anti_denormal_ac = 1 - 1' : *(anti_denormal) : + ~ *(-1);
hifr1 =hslider("... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/plugins/mbclipper.dsp | faust | : max(ba.db2linear(-70)) : ba.linear2db; | declare id "mbclip";
declare name "MultiBand Clipper";
declare shortname "MB Clipper";
declare category "Distortion";
declare description "MultiBand Clipper";
import("stdfaust.lib");
import("reducemaps.lib");
anti_denormal = pow(10,-20);
anti_denormal_ac = 1 - 1' : *(anti_denormal) : + ~ *(-1);
hifr1 =hslider("... |
90c1556a6f165715e01907017aa47bef111f8ff4702da7799a4f52e4b1f8d09d | brummer10/guitarix | mbd.dsp | declare id "mbd";
declare name "MultiBand Distortion";
declare shortname "MB Distortion";
declare category "Distortion";
declare description "MultiBand Distortion";
import("stdfaust.lib");
rd = library("reducemaps.lib");
anti_denormal = pow(10,-20);
anti_denormal_ac = 1 - 1' : *(anti_denormal) : + ~ *(-1);
hifr1 ... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/LV2/faust/mbd.dsp | faust | envelop = abs : max ~ (1.0/ma.SR) : mean(4096); // : max(ba.db2linear(-70)) : ba.linear2db; | declare id "mbd";
declare name "MultiBand Distortion";
declare shortname "MB Distortion";
declare category "Distortion";
declare description "MultiBand Distortion";
import("stdfaust.lib");
rd = library("reducemaps.lib");
anti_denormal = pow(10,-20);
anti_denormal_ac = 1 - 1' : *(anti_denormal) : + ~ *(-1);
hifr1 ... |
bd3ef1acfbc96fc0424f5e08e8b27750f54faa263504257895972519e4ecb72a | brummer10/guitarix | gx_vibrochump.dsp | declare id "Redeye Vibro Chump"; // in amp tube ba.selector
declare name "Redeye Vibro Chumo";
declare category "Amplifier";
import("stdfaust.lib");
import("guitarix.lib");
import("redeye.lib");
/****************************************************************
** Tube Preamp Emulation stage 1 - 2
**
** SHP : Experi... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/LV2/faust/gx_vibrochump.dsp | faust | in amp tube ba.selector
***************************************************************
** Tube Preamp Emulation stage 1 - 2
**
** SHP : Experiment with the presence control as a feedback loop
** Created a loop with high shelf filter cutting around 1khz and up
** pot controls the amount of cut 0 > -70dB
** I... | declare name "Redeye Vibro Chumo";
declare category "Amplifier";
import("stdfaust.lib");
import("guitarix.lib");
import("redeye.lib");
R1 = 2700;
Ra = 1e6;
Rb = 300;
b = exp(log(Ra)/log(Rb)) - exp(1);
dTC = 0.06;
minTC = log(0.005/dTC);
cds = ((_ <: _,_),_ : _+(1-alpha)*_) ~ (_<:*(alpha)) with {
iSR = 1/ma.SR;... |
f6b866f7499c3c84512d6fa1fe866459a3e93c307b7e6a4bc0f2c7679ec3a26e | brummer10/guitarix | astrofuzz.dsp | // generated automatically
// DO NOT MODIFY!
declare id "astrofuzz";
declare name "Astrotone Fuzz";
declare category "Fuzz";
declare shortname "Astrotone";
declare description "Astrotone Fuzz";
import("stdfaust.lib");
import("trany.lib");
process = pre : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0),(a1/a0,a2/a0,a3/a0)) : clip wi... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/plugins/astrofuzz.dsp | faust | generated automatically
DO NOT MODIFY! | declare id "astrofuzz";
declare name "Astrotone Fuzz";
declare category "Fuzz";
declare shortname "Astrotone";
declare description "Astrotone Fuzz";
import("stdfaust.lib");
import("trany.lib");
process = pre : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0),(a1/a0,a2/a0,a3/a0)) : clip with {
LogPot(a, x) = ba.if(a, (exp(a * x) ... |
44264199eb0feff623dc56b6f38ee3507bfc0745074257179b484b9e00e3a4b9 | brummer10/guitarix | buffb.dsp | // generated automatically
// DO NOT MODIFY!
declare id "buffb";
declare name "Buffer Booster";
declare category "Tone Control";
declare shortname "Buffer Boost";
declare description "Buffer Booster";
import("stdfaust.lib");
process = pre : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0,b4/a0),(a1/a0,a2/a0,a3/a0,a4/a0)) with {
... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/plugins/buffb.dsp | faust | generated automatically
DO NOT MODIFY! | declare id "buffb";
declare name "Buffer Booster";
declare category "Tone Control";
declare shortname "Buffer Boost";
declare description "Buffer Booster";
import("stdfaust.lib");
process = pre : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0,b4/a0),(a1/a0,a2/a0,a3/a0,a4/a0)) with {
LogPot(a, x) = ba.if(a, (exp(a * x) - 1) / (e... |
0ac2ef8985a5095e5d29833b0b1f5b6fcf7f906ef143738c459c083ecbf529b7 | brummer10/guitarix | uniBar.dsp | declare name "Nonlinear Banded Waveguide Models";
declare author "Romain Michon";
declare copyright "Romain Michon (rmichon@ccrma.stanford.edu)";
declare version "1.0";
declare licence "STK-4.3"; // Synthesis Tool Kit 4.3 (MIT style license);
declare description "This instrument uses banded pm.waveguide. For more infor... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/LV2/faust/uniBar.dsp | faust | Synthesis Tool Kit 4.3 (MIT style license);
==================== GUI SPECIFICATION ================
==================== MODAL PARAMETERS ================
==================== SIGNAL PROCESSING ================
----------------------- Synthesis parameters computing and functions declaration ---------------------------... | declare name "Nonlinear Banded Waveguide Models";
declare author "Romain Michon";
declare copyright "Romain Michon (rmichon@ccrma.stanford.edu)";
declare version "1.0";
declare description "This instrument uses banded pm.waveguide. For more information, see Essl, G. and Cook, P. Banded Waveguides: Towards Physical Mode... |
e367532f25e4dd51982d5d1732d4900eb0ff79e453b9b80ff645f1f80dad5c59 | brummer10/guitarix | compressor.dsp | declare name "Compressor";
declare category "Guitar Effects";
/* Compressor unit. */
//declare name "compressor -- compressor/limiter unit";
declare author "Albert Graef";
declare version "1.0";
import("stdfaust.lib");
import("guitarix.lib");
/* Controls. */
// partition the controls into these three groups
comp_g... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/LV2/faust/compressor.dsp | faust | Compressor unit.
declare name "compressor -- compressor/limiter unit";
Controls.
partition the controls into these three groups
compressor controls: ratio, threshold and knee size
attack and release controls; clamped to a minimum of 1 sample
gain controls: make-up gain, compression gain meter
Compute the envel... | declare name "Compressor";
declare category "Guitar Effects";
declare author "Albert Graef";
declare version "1.0";
import("stdfaust.lib");
import("guitarix.lib");
comp_group(x) = hgroup("1-compression", x);
env_group(x) = vgroup("2-envelop", x);
gain_group(x) = vgroup("3-gain", x);
ratio = nentry("ratio", 2, 1,... |
57c9ac9c3ccdf245babea02d1ce11349af34e9e5006821caeb16b140f8305413 | brummer10/guitarix | compressor.dsp | declare name "Compressor";
declare category "Guitar Effects";
/* Compressor unit. */
//declare name "compressor -- compressor/limiter unit";
declare author "Albert Graef";
declare version "1.0";
import("stdfaust.lib");
import("guitarix.lib");
rd = library("reducemaps.lib");
/* Controls. */
// partition the control... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/faust/compressor.dsp | faust | Compressor unit.
declare name "compressor -- compressor/limiter unit";
Controls.
partition the controls into these three groups
compressor controls: ratio, threshold and knee size
attack and release controls; clamped to a minimum of 1 sample
gain controls: make-up gain, compression gain meter
Compute the envel... | declare name "Compressor";
declare category "Guitar Effects";
declare author "Albert Graef";
declare version "1.0";
import("stdfaust.lib");
import("guitarix.lib");
rd = library("reducemaps.lib");
comp_group(x) = hgroup("1-compression", x);
env_group(x) = vgroup("2-envelop", x);
gain_group(x) = vgroup("3-gain", x);... |
5c4d549fcf78ab6dca56379e782a86acf9048788e1b2aa554a0941ba6da08d78 | brummer10/guitarix | mbchor.dsp | declare id "mbchor";
declare name "Multi Band Chorus";
declare shortname "MB Chorus";
declare category "Modulation";
declare description "Multi Band Chorus";
import("stdfaust.lib");
import("reducemaps.lib");
hifr1 =hslider("crossover_b1_b2 [log][name:Crossover B1-B2 (hz)][tooltip: Crossover fi.bandpass frequency... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/plugins/mbchor.dsp | faust | : max(ba.db2linear(-70)) : ba.linear2db; | declare id "mbchor";
declare name "Multi Band Chorus";
declare shortname "MB Chorus";
declare category "Modulation";
declare description "Multi Band Chorus";
import("stdfaust.lib");
import("reducemaps.lib");
hifr1 =hslider("crossover_b1_b2 [log][name:Crossover B1-B2 (hz)][tooltip: Crossover fi.bandpass frequency... |
caa3009e532b1adb439f7bd333d0859a530d86758a292f90180766b56e703fff | brummer10/guitarix | mbdel.dsp | declare id "mbdel";
declare name "MultiBand Delay";
declare shortname "MB Delay";
declare category "Echo / Delay";
declare description "Multi Band Delay";
import("stdfaust.lib");
rd = library("reducemaps.lib");
hifr1 =hslider("crossover_b1_b2 [log][name:Crossover B1-B2 (hz)][tooltip: Crossover fi.bandpass freque... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/LV2/faust/mbdel.dsp | faust | envelop = abs : max ~ (1.0/ma.SR) : mean(4096) ; // : max(ba.db2linear(-70)) : ba.linear2db; | declare id "mbdel";
declare name "MultiBand Delay";
declare shortname "MB Delay";
declare category "Echo / Delay";
declare description "Multi Band Delay";
import("stdfaust.lib");
rd = library("reducemaps.lib");
hifr1 =hslider("crossover_b1_b2 [log][name:Crossover B1-B2 (hz)][tooltip: Crossover fi.bandpass freque... |
63cde9bdbf459f74109d8ae0f485a4c3dc0917dd29a8b56a2b1b98f2043bfd50 | brummer10/guitarix | tonecontroll.dsp | declare id "tonemodul";
declare name "3 Band EQ";
declare category "Tone Control";
declare version "0.01";
declare author "brummer";
declare license "BSD";
declare copyright "(c)brummer 2008";
import("stdfaust.lib");
import("guitarix.lib");
F = 600; //nentry("split_low_freq", 250, 20, 600, 10... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/LV2/faust/tonecontroll.dsp | faust | nentry("split_low_freq", 250, 20, 600, 10);
nentry("split_middle_freq", 650, 600, 1250, 10);
nentry("split_high_freq", 1250, 1250, 12000, 10);
*********************************************************************
*** this part is included here for backward compatibility from 0.9.27 to
*** 0.9.24
**********************... | declare id "tonemodul";
declare name "3 Band EQ";
declare category "Tone Control";
declare version "0.01";
declare author "brummer";
declare license "BSD";
declare copyright "(c)brummer 2008";
import("stdfaust.lib");
import("guitarix.lib");
countN ((xs, xxs)) = 1 + countN(xxs);
countN (xx)... |
5e2758060ee9f0d4df4f65f1e9101326eec400b3f9cd0f7813c2ec7e3da4476d | brummer10/guitarix | maestrowah.dsp | // generated automatically
// DO NOT MODIFY!
declare id "maestrowah";
declare name "Maestro Wah";
declare category "Guitar Effects";
declare shortname "Maestro Wah";
declare description "Maestro Boomerang Wah EG-1";
import("stdfaust.lib");
import("guitarix.lib");
process(x) = x : _<:*(dry),(*(wet) : pre : fi.iir((b... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/faust/maestrowah.dsp | faust | generated automatically
DO NOT MODIFY! | declare id "maestrowah";
declare name "Maestro Wah";
declare category "Guitar Effects";
declare shortname "Maestro Wah";
declare description "Maestro Boomerang Wah EG-1";
import("stdfaust.lib");
import("guitarix.lib");
process(x) = x : _<:*(dry),(*(wet) : pre : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0,b4/a0),(a1/a0,a2/a0,a3... |
83b07c273afb676ee29643ea1397882f559e6f10eca8672c05c750c583be0203 | brummer10/guitarix | cstb.dsp | // generated automatically
// DO NOT MODIFY!
declare id "cstb";
declare name "Colorsound Tone Blender";
declare category "Distortion";
declare shortname "CS Toneblender";
declare description "Colorsound Tone Blender";
import("stdfaust.lib");
import("trany.lib");
process = pre : _<:*(dry),(*(wet) : fi.iir((b0/a0,b1/a0... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/LV2/faust/cstb.dsp | faust | generated automatically
DO NOT MODIFY!
clip(x) = 0.3 * (min(0.7514,max(-0.4514,x))); | declare id "cstb";
declare name "Colorsound Tone Blender";
declare category "Distortion";
declare shortname "CS Toneblender";
declare description "Colorsound Tone Blender";
import("stdfaust.lib");
import("trany.lib");
process = pre : _<:*(dry),(*(wet) : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0,b4/a0),(a1/a0,a2/a0,a3/a0,a4/a0)... |
e1a9ffc0c3400d25eefe01f8e21ae2294672cc1448a8699c35d548d647806093 | brummer10/guitarix | jenwah.dsp | // generated automatically
// DO NOT MODIFY!
declare id "jenwah";
declare name "Jen Wah";
declare category "Guitar Effects";
declare shortname "Jen Wah";
declare description "Jen Wah";
import("stdfaust.lib");
import("guitarix.lib");
process(x) = x : _<:*(dry),(*(wet) : pre : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0,b4/a0),(a1... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/LV2/faust/jenwah.dsp | faust | generated automatically
DO NOT MODIFY! | declare id "jenwah";
declare name "Jen Wah";
declare category "Guitar Effects";
declare shortname "Jen Wah";
declare description "Jen Wah";
import("stdfaust.lib");
import("guitarix.lib");
process(x) = x : _<:*(dry),(*(wet) : pre : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0,b4/a0),(a1/a0,a2/a0,a3/a0,a4/a0))):>_ with {
LogPot... |
6b2ada76c896cbeb9d9533ca7a7b0b88fc2d0f97a02063cb4a476e75c1dfdc75 | brummer10/guitarix | maestrowah.dsp | // generated automatically
// DO NOT MODIFY!
declare id "maestrowah";
declare name "Maestro Wah";
declare category "Guitar Effects";
declare shortname "Maestro Wah";
declare description "Maestro Boomerang Wah EG-1";
import("stdfaust.lib");
import("guitarix.lib");
process(x) = x : _<:*(dry),(*(wet) : pre : fi.iir((b... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/LV2/faust/maestrowah.dsp | faust | generated automatically
DO NOT MODIFY! | declare id "maestrowah";
declare name "Maestro Wah";
declare category "Guitar Effects";
declare shortname "Maestro Wah";
declare description "Maestro Boomerang Wah EG-1";
import("stdfaust.lib");
import("guitarix.lib");
process(x) = x : _<:*(dry),(*(wet) : pre : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0,b4/a0),(a1/a0,a2/a0,a3... |
9a9a951b88a7abeee76a6f9de9068adb09eeaefef2151654d45d04bb9f103a8f | brummer10/guitarix | selwah.dsp | // generated automatically
// DO NOT MODIFY!
declare id "selwah";
declare name "Selmer Wah";
declare category "Guitar Effects";
declare shortname "Selmer Wah";
declare description "Selmer Wah";
import("stdfaust.lib");
import("guitarix.lib");
process(x) = x : _<:*(dry),(*(wet) : pre : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0,b... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/LV2/faust/selwah.dsp | faust | generated automatically
DO NOT MODIFY! | declare id "selwah";
declare name "Selmer Wah";
declare category "Guitar Effects";
declare shortname "Selmer Wah";
declare description "Selmer Wah";
import("stdfaust.lib");
import("guitarix.lib");
process(x) = x : _<:*(dry),(*(wet) : pre : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0,b4/a0),(a1/a0,a2/a0,a3/a0,a4/a0))):>_ with {
... |
79b0896f8640ba8cfaa036bbfc4d6201dd2d138e2f8b684959a6700a6b4913cf | brummer10/guitarix | rolwah.dsp | // generated by ./build_wah.py
// DO NOT MODIFY!
declare id "rolwah";
declare name "Roland Wah";
declare category "Guitar Effects";
declare description "Roland Wah";
import("stdfaust.lib");
import("guitarix.lib");
process(x) = x : _<:*(dry),(*(wet) : pre : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0,b4/a0),(a1/a0,a2/a0,a3/a0,a4/... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/faust/rolwah.dsp | faust | generated by ./build_wah.py
DO NOT MODIFY! | declare id "rolwah";
declare name "Roland Wah";
declare category "Guitar Effects";
declare description "Roland Wah";
import("stdfaust.lib");
import("guitarix.lib");
process(x) = x : _<:*(dry),(*(wet) : pre : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0,b4/a0),(a1/a0,a2/a0,a3/a0,a4/a0))):>_ with {
LogPot(a, x) = ba.if(a, (exp(... |
dd82088b04c7a431deb467d00c78bf996dfd57c4b42de7860743cca389b0245b | brummer10/guitarix | gcb_95.dsp | // generated by scripts/build_GCB_95.py
// DO NOT MODIFY!
declare id "GCB_95";
declare name "GCB 95";
declare category "Guitar Effects";
declare description "Linear filter simulating the GCB 95 ve.crybaby circuit";
import("stdfaust.lib");
process = pre : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0,b4/a0),(a1/a0,a2/a0,a3/a0,a4/a0... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/plugins/gcb_95.dsp | faust | generated by scripts/build_GCB_95.py
DO NOT MODIFY! | declare id "GCB_95";
declare name "GCB 95";
declare category "Guitar Effects";
declare description "Linear filter simulating the GCB 95 ve.crybaby circuit";
import("stdfaust.lib");
process = pre : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0,b4/a0),(a1/a0,a2/a0,a3/a0,a4/a0)) : *(Volume) with {
LogPot(a, x) = ba.if(a, (exp(a *... |
69aa4b70b02d43d211fe3357a13e5f909159d80aedac08fdb98fffe7dac6a095 | brummer10/guitarix | foxwah.dsp | // generated automatically
// DO NOT MODIFY!
declare id "foxwah";
declare name "Foxx Wah";
declare category "Guitar Effects";
declare shortname "Foxx Wah";
declare description "Foxx Wah";
import("stdfaust.lib");
import("guitarix.lib");
process(x) = x : _<:*(dry),(*(wet) : pre : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0,b4/a0),... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/faust/foxwah.dsp | faust | generated automatically
DO NOT MODIFY! | declare id "foxwah";
declare name "Foxx Wah";
declare category "Guitar Effects";
declare shortname "Foxx Wah";
declare description "Foxx Wah";
import("stdfaust.lib");
import("guitarix.lib");
process(x) = x : _<:*(dry),(*(wet) : pre : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0,b4/a0),(a1/a0,a2/a0,a3/a0,a4/a0))):>_ with {
Log... |
53d17df56766dd6b7514000556b9976c7eb627cf4c76172caf0cdc2a93d7922b | brummer10/guitarix | colbwah.dsp | // generated automatically
// DO NOT MODIFY!
declare id "colbwah";
declare name "ColorSound Bass Wah";
declare category "Guitar Effects";
declare shortname "ColorSound Bass Wah";
declare description "ColorSound Bass Wah";
import("stdfaust.lib");
import("guitarix.lib");
process(x) = x : _<:*(dry),(*(wet) : pre : fi.ii... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/faust/colbwah.dsp | faust | generated automatically
DO NOT MODIFY! | declare id "colbwah";
declare name "ColorSound Bass Wah";
declare category "Guitar Effects";
declare shortname "ColorSound Bass Wah";
declare description "ColorSound Bass Wah";
import("stdfaust.lib");
import("guitarix.lib");
process(x) = x : _<:*(dry),(*(wet) : pre : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0,b4/a0),(a1/a0,a2/a... |
2bd6453e90c4c3341213ce791fdac62a1f99d9203fb9bf51c2d90026d66ffb5e | brummer10/guitarix | voxwah.dsp | // generated automatically
// DO NOT MODIFY!
declare id "voxwah";
declare name "Vox Wah V847";
declare category "Guitar Effects";
declare shortname "Vox Wah";
declare description "Vox Wah V847";
import("stdfaust.lib");
import("guitarix.lib");
process(x) = x : _<:*(dry),(*(wet) : pre : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0,... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/faust/voxwah.dsp | faust | generated automatically
DO NOT MODIFY! | declare id "voxwah";
declare name "Vox Wah V847";
declare category "Guitar Effects";
declare shortname "Vox Wah";
declare description "Vox Wah V847";
import("stdfaust.lib");
import("guitarix.lib");
process(x) = x : _<:*(dry),(*(wet) : pre : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0,b4/a0),(a1/a0,a2/a0,a3/a0,a4/a0))):>_ with {
... |
0356082c9584e840e5f04e6908d30aa8af7c69eb1fac834fa76ef09d01e868aa | brummer10/guitarix | bfuzz.dsp | // generated automatically
// DO NOT MODIFY!
declare id "bfuzz";
declare name "Bass Fuzz Pedal";
declare category "Fuzz";
declare shortname "Bass Fuzz";
declare description "Bass Fuzz Pedal";
declare insert_p "tranyclipper";
import("stdfaust.lib");
import("trany.lib");
process = pre : _<:*(dry),(*(wet) : fi.iir((b0/a... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/plugins/bfuzz.dsp | faust | generated automatically
DO NOT MODIFY! | declare id "bfuzz";
declare name "Bass Fuzz Pedal";
declare category "Fuzz";
declare shortname "Bass Fuzz";
declare description "Bass Fuzz Pedal";
declare insert_p "tranyclipper";
import("stdfaust.lib");
import("trany.lib");
process = pre : _<:*(dry),(*(wet) : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0,b4/a0),(a1/a0,a2/a0,a3/a0... |
fd243344f4135e991d3ab238af68faeef190540bdceca58ec28a133d50cb7911 | brummer10/guitarix | mbreverb.dsp | declare id "mbe";
declare name "MultiBand Reverb";
declare shortname "MB Reverb";
declare category "Reverb";
declare description "Multi Band Reverb";
import("stdfaust.lib");
rd = library("reducemaps.lib");
import("guitarix.lib");
hifr1 =hslider("crossover_b1_b2 [log][name:Crossover B1-B2 (hz)][tooltip: Crossove... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/LV2/faust/mbreverb.dsp | faust | envelop = abs : max ~ (1.0/ma.SR) : mean(4096) ; // : max(ba.db2linear(-70)) : ba.linear2db;
-----------------------------------------------
freeverb by "Grame"
-----------------------------------------------
Filter Parameters
Reverb components
------------------------------------------------------------... | declare id "mbe";
declare name "MultiBand Reverb";
declare shortname "MB Reverb";
declare category "Reverb";
declare description "Multi Band Reverb";
import("stdfaust.lib");
rd = library("reducemaps.lib");
import("guitarix.lib");
hifr1 =hslider("crossover_b1_b2 [log][name:Crossover B1-B2 (hz)][tooltip: Crossove... |
849133b78e84ea8bf222a99e408aa20c1e01eaef6aca36fb30654ff904e6ed6a | brummer10/guitarix | voxwah.dsp | // generated automatically
// DO NOT MODIFY!
declare id "voxwah";
declare name "Vox Wah V847";
declare category "Guitar Effects";
declare shortname "Vox Wah";
declare description "Vox Wah V847";
import("stdfaust.lib");
import("guitarix.lib");
process(x) = x : _<:*(dry),(*(wet) : pre : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0,... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/LV2/faust/voxwah.dsp | faust | generated automatically
DO NOT MODIFY! | declare id "voxwah";
declare name "Vox Wah V847";
declare category "Guitar Effects";
declare shortname "Vox Wah";
declare description "Vox Wah V847";
import("stdfaust.lib");
import("guitarix.lib");
process(x) = x : _<:*(dry),(*(wet) : pre : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0,b4/a0),(a1/a0,a2/a0,a3/a0,a4/a0))):>_ with {
... |
617f5797c11d5cabec2e1e8c87678a9bcbebd40f483fb281a0f5843b9fc99956 | brummer10/guitarix | selwah.dsp | // generated automatically
// DO NOT MODIFY!
declare id "selwah";
declare name "Selmer Wah";
declare category "Guitar Effects";
declare shortname "Selmer Wah";
declare description "Selmer Wah";
import("stdfaust.lib");
import("guitarix.lib");
process(x) = x : _<:*(dry),(*(wet) : pre : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0,b... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/faust/selwah.dsp | faust | generated automatically
DO NOT MODIFY! | declare id "selwah";
declare name "Selmer Wah";
declare category "Guitar Effects";
declare shortname "Selmer Wah";
declare description "Selmer Wah";
import("stdfaust.lib");
import("guitarix.lib");
process(x) = x : _<:*(dry),(*(wet) : pre : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0,b4/a0),(a1/a0,a2/a0,a3/a0,a4/a0))):>_ with {
... |
dc9c775fe880a51a1f58ddc8c63c38e6eb2d9bbc09ea5a7bd07354e11e06dd10 | brummer10/guitarix | jenbasswah.dsp | // generated by ./build_wah.py
// DO NOT MODIFY!
declare id "jenbasswah";
declare name "Jen Bass Wah";
declare category "Guitar Effects";
declare description "Jen BassWah";
import("stdfaust.lib");
import("guitarix.lib");
process(x) = x : _<:*(dry),(*(wet) : pre : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0,b4/a0),(a1/a0,a2/a0,a3... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/faust/jenbasswah.dsp | faust | generated by ./build_wah.py
DO NOT MODIFY! | declare id "jenbasswah";
declare name "Jen Bass Wah";
declare category "Guitar Effects";
declare description "Jen BassWah";
import("stdfaust.lib");
import("guitarix.lib");
process(x) = x : _<:*(dry),(*(wet) : pre : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0,b4/a0),(a1/a0,a2/a0,a3/a0,a4/a0))):>_ with {
LogPot(a, x) = ba.if(a... |
ff1d50aca8c5f1552221b8d9a4c50eb19d3fe63cdb4203542b74f69f6643569e | brummer10/guitarix | jenwah.dsp | // generated automatically
// DO NOT MODIFY!
declare id "jenwah";
declare name "Jen Wah";
declare category "Guitar Effects";
declare shortname "Jen Wah";
declare description "Jen Wah";
import("stdfaust.lib");
import("guitarix.lib");
process(x) = x : _<:*(dry),(*(wet) : pre : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0,b4/a0),(a1... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/faust/jenwah.dsp | faust | generated automatically
DO NOT MODIFY! | declare id "jenwah";
declare name "Jen Wah";
declare category "Guitar Effects";
declare shortname "Jen Wah";
declare description "Jen Wah";
import("stdfaust.lib");
import("guitarix.lib");
process(x) = x : _<:*(dry),(*(wet) : pre : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0,b4/a0),(a1/a0,a2/a0,a3/a0,a4/a0))):>_ with {
LogPot... |
2898fe9e00060fc6a18ef15e4df57b74715ead3c5460c74f5744e875b3ef31fa | brummer10/guitarix | foxwah.dsp | // generated automatically
// DO NOT MODIFY!
declare id "foxwah";
declare name "Foxx Wah";
declare category "Guitar Effects";
declare shortname "Foxx Wah";
declare description "Foxx Wah";
import("stdfaust.lib");
import("guitarix.lib");
process(x) = x : _<:*(dry),(*(wet) : pre : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0,b4/a0),... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/LV2/faust/foxwah.dsp | faust | generated automatically
DO NOT MODIFY! | declare id "foxwah";
declare name "Foxx Wah";
declare category "Guitar Effects";
declare shortname "Foxx Wah";
declare description "Foxx Wah";
import("stdfaust.lib");
import("guitarix.lib");
process(x) = x : _<:*(dry),(*(wet) : pre : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0,b4/a0),(a1/a0,a2/a0,a3/a0,a4/a0))):>_ with {
Log... |
129108c630f4da0195fea4f6f772a27a66d36ef0cffb94e659f02b993ce6a65c | brummer10/guitarix | colwah.dsp | // generated automatically
// DO NOT MODIFY!
declare id "colwah";
declare name "ColorSound Wah";
declare category "Guitar Effects";
declare shortname "ColorSound Wah";
declare description "ColorSound Wah";
import("stdfaust.lib");
import("guitarix.lib");
process(x) = x : _<:*(dry),(*(wet) : pre : fi.iir((b0/a0,b1/a0,b... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/LV2/faust/colwah.dsp | faust | generated automatically
DO NOT MODIFY! | declare id "colwah";
declare name "ColorSound Wah";
declare category "Guitar Effects";
declare shortname "ColorSound Wah";
declare description "ColorSound Wah";
import("stdfaust.lib");
import("guitarix.lib");
process(x) = x : _<:*(dry),(*(wet) : pre : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0,b4/a0),(a1/a0,a2/a0,a3/a0,a4/a0)))... |
3b36be40ec630652edd91608741345b882e9578a8ca8efb5a073761e7677a090 | brummer10/guitarix | dallaswah.dsp | // generated automatically
// DO NOT MODIFY!
declare id "dallaswah";
declare name "Dallas Wah";
declare category "Guitar Effects";
declare shortname "Dallas Wah";
declare description "Dallas Arbiter Wah";
import("stdfaust.lib");
import("guitarix.lib");
process(x) = x : _<:*(dry),(*(wet) : pre : fi.iir((b0/a0,b1/a0,... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/LV2/faust/dallaswah.dsp | faust | generated automatically
DO NOT MODIFY! | declare id "dallaswah";
declare name "Dallas Wah";
declare category "Guitar Effects";
declare shortname "Dallas Wah";
declare description "Dallas Arbiter Wah";
import("stdfaust.lib");
import("guitarix.lib");
process(x) = x : _<:*(dry),(*(wet) : pre : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0,b4/a0),(a1/a0,a2/a0,a3/a0,a4/a0))... |
c4d7cf5827d63b9545f7bf4cabffc01824bd94ee2b9f844a57377816f37e7926 | brummer10/guitarix | bmp.dsp | // generated automatically
// DO NOT MODIFY!
declare id "bmp";
declare name "BigMuffPi";
declare category "Fuzz";
declare shortname "BMP";
declare description "BigMuffPi";
declare samplerate "96000";
import("stdfaust.lib");
bpmin = pre : fi.iir((b0/a0,b1/a0,b2/a0),(a1/a0,a2/a0)) with {
LogPot(a, x) = ba.if(a, (ex... | https://raw.githubusercontent.com/brummer10/guitarix/ef0c509dc3538e32152206667d37a157bb471ae7/trunk/src/LV2/faust/bmp.dsp | faust | generated automatically
DO NOT MODIFY! | declare id "bmp";
declare name "BigMuffPi";
declare category "Fuzz";
declare shortname "BMP";
declare description "BigMuffPi";
declare samplerate "96000";
import("stdfaust.lib");
bpmin = pre : fi.iir((b0/a0,b1/a0,b2/a0),(a1/a0,a2/a0)) with {
LogPot(a, x) = ba.if(a, (exp(a * x) - 1) / (exp(a) - 1), x);
Inverte... |
15746e8ef7bea72ad72f4ef83f44549f5e8d06673e614be32607f8baa488f6d3 | brummer10/guitarix | gxdistortion.dsp | declare id "gxdistortion";
declare version "0.01";
declare author "brummer";
declare license "BSD";
declare copyright "(c)brummer 2008";
import("stdfaust.lib");
import("guitarix.lib");
F = 300; //nentry("split_low_freq", 250, 20, 600, 10);
F1 = 1200; //nentry("split_middle_freq", 650, 600, 1250, 10);
F2 = 3200... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/faust/gxdistortion.dsp | faust | nentry("split_low_freq", 250, 20, 600, 10);
nentry("split_middle_freq", 650, 600, 1250, 10);
nentry("split_high_freq", 1250, 1250, 12000, 10);
*********************************************************************
*** this part is included here for backward compatibility from 0.9.27 to
*** 0.9.24
**********************... | declare id "gxdistortion";
declare version "0.01";
declare author "brummer";
declare license "BSD";
declare copyright "(c)brummer 2008";
import("stdfaust.lib");
import("guitarix.lib");
countN ((xs, xxs)) = 1 + countN(xxs);
countN (xx) = 1;
takeN (1, (xs, xxs)) = xs;
takeN (1, xs) = x... |
770a4d6158e2b2245b3f19f5755181da96bf96d856a516ed66c52de9de64f156 | brummer10/guitarix | zita_rev1.dsp | // this code is copied from faust effect.lib and
// some parameter texts and defaults changed
declare id "zita_rev1";
declare name "Zita Rev1";
declare category "Reverb";
import("stdfaust.lib");
process(x,y) = re.zita_rev1_stereo(rdel,f1,f2,t60dc,t60m,fsmax,x,y)
: out_eq : dry_wet(x,y) : out_level
with {
fsmax... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/plugins/zita_rev1.dsp | faust | this code is copied from faust effect.lib and
some parameter texts and defaults changed
highest sampling rate that will be used
Zolzer style peaking eq (not used in zita-fi.rev1) (filter.lib):
pareq_stereo(eqf,eql,Q) = fi.peak_eq(eql,eqf,eqf/Q), fi.peak_eq(eql,eqf,eqf/Q);
Regalia-Mitra peaking eq with "Q" hard-wi... |
declare id "zita_rev1";
declare name "Zita Rev1";
declare category "Reverb";
import("stdfaust.lib");
process(x,y) = re.zita_rev1_stereo(rdel,f1,f2,t60dc,t60m,fsmax,x,y)
: out_eq : dry_wet(x,y) : out_level
with {
fdn_group(x) = hgroup(
"zita_rev1[name:Zita_Rev1] [tooltip: ~ ZITA REV1 FEEDBACK DELAY NETWORK... |
0b36071e14fb8becc008f962245132e78d1bfbd685c86b4a9b0536ff6768ce13 | brummer10/guitarix | bmp.dsp | // generated automatically
// DO NOT MODIFY!
declare id "bmp";
declare name "BigMuffPi";
declare category "Fuzz";
declare shortname "BMP";
declare description "BigMuffPi";
declare samplerate "96000";
import("stdfaust.lib");
bpmin = pre : fi.iir((b0/a0,b1/a0,b2/a0),(a1/a0,a2/a0)) with {
LogPot(a, x) = ba.if(a, (ex... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/plugins/bmp.dsp | faust | generated automatically
DO NOT MODIFY! | declare id "bmp";
declare name "BigMuffPi";
declare category "Fuzz";
declare shortname "BMP";
declare description "BigMuffPi";
declare samplerate "96000";
import("stdfaust.lib");
bpmin = pre : fi.iir((b0/a0,b1/a0,b2/a0),(a1/a0,a2/a0)) with {
LogPot(a, x) = ba.if(a, (exp(a * x) - 1) / (exp(a) - 1), x);
Inverte... |
c8f45d37783eef3a07eceb8eddae1281bbfa9d6e055ace84c39cd549221930ab | brummer10/guitarix | bossds1.dsp | // generated automatically
// DO NOT MODIFY!
declare id "bossds1";
declare name "Boss DS1";
declare category "Distortion";
declare shortname "DS1";
declare description "Boss DS1";
declare samplerate "96000";
import("stdfaust.lib");
ds1_in = fi.iir((b0/a0,b1/a0),(a1/a0)) with {
fs = float(ma.... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/LV2/faust/bossds1.dsp | faust | generated automatically
DO NOT MODIFY! | declare id "bossds1";
declare name "Boss DS1";
declare category "Distortion";
declare shortname "DS1";
declare description "Boss DS1";
declare samplerate "96000";
import("stdfaust.lib");
ds1_in = fi.iir((b0/a0,b1/a0),(a1/a0)) with {
fs = float(ma.SR);
b0 = 2.07110717442793e-5*fs;
b... |
129783104ba558737316a9bc032c891b2c14bb174934e645b9d0dc8456922a7a | brummer10/guitarix | gx_zita_rev1.dsp | // this code is copied from faust effect.lib and
// some parameter texts and defaults changed
declare id "zita_rev1";
declare name "Zita Rev1";
declare category "Reverb";
import("stdfaust.lib");
process(x,y) = re.zita_rev1_stereo(rdel,f1,f2,t60dc,t60m,fsmax,x,y)
: out_eq : dry_wet(x,y) : out_level
with {
fsmax... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/LV2/faust/gx_zita_rev1.dsp | faust | this code is copied from faust effect.lib and
some parameter texts and defaults changed
highest sampling rate that will be used
Zolzer style peaking eq (not used in zita-fi.rev1) (filter.lib):
pareq_stereo(eqf,eql,Q) = fi.peak_eq(eql,eqf,eqf/Q), fi.peak_eq(eql,eqf,eqf/Q);
Regalia-Mitra peaking eq with "Q" hard-wi... |
declare id "zita_rev1";
declare name "Zita Rev1";
declare category "Reverb";
import("stdfaust.lib");
process(x,y) = re.zita_rev1_stereo(rdel,f1,f2,t60dc,t60m,fsmax,x,y)
: out_eq : dry_wet(x,y) : out_level
with {
fdn_group(x) = hgroup(
"zita_rev1[name:Zita_Rev1] [tooltip: ~ ZITA REV1 FEEDBACK DELAY NETWORK... |
75583b498d465a194c29777f4fda0447d0a290ed4760db866d341c5c551754d4 | brummer10/guitarix | distortion.dsp | //declare name "distortion";
declare version "0.01";
declare author "brummer";
declare license "BSD";
declare copyright "(c)brummer 2008";
import("stdfaust.lib");
import("guitarix.lib");
F = nentry("split_low_freq", 250, 20, 600, 10);
F1 = nentry("split_middle_freq", 650, 600, 1250, 10);
F2 = nentry("split_hig... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/faust/distortion.dsp | faust | declare name "distortion";
*********************************************************************
*** this part is included here for backward compatibility from 0.9.27 to
*** 0.9.24
**********************************************************************
------------------------------ ba.count and ba.take -------------... | declare version "0.01";
declare author "brummer";
declare license "BSD";
declare copyright "(c)brummer 2008";
import("stdfaust.lib");
import("guitarix.lib");
F = nentry("split_low_freq", 250, 20, 600, 10);
F1 = nentry("split_middle_freq", 650, 600, 1250, 10);
F2 = nentry("split_high_freq", 1250, 1250, 12000, 10)... |
bc518c844b0026340ab9e9c81403357e89945137176398acbc34097561e344d7 | brummer10/guitarix | gxdistortion.dsp | declare id "gxdistortion";
declare version "0.01";
declare author "brummer";
declare license "BSD";
declare copyright "(c)brummer 2008";
import("stdfaust.lib");
import("guitarix.lib");
F = 300; //nentry("split_low_freq", 250, 20, 600, 10);
F1 = 1200; //nentry("split_middle_freq", 650, 600, 1250, 10);
F2 = 3200... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/LV2/faust/gxdistortion.dsp | faust | nentry("split_low_freq", 250, 20, 600, 10);
nentry("split_middle_freq", 650, 600, 1250, 10);
nentry("split_high_freq", 1250, 1250, 12000, 10);
*********************************************************************
*** this part is included here for backward compatibility from 0.9.27 to
*** 0.9.24
**********************... | declare id "gxdistortion";
declare version "0.01";
declare author "brummer";
declare license "BSD";
declare copyright "(c)brummer 2008";
import("stdfaust.lib");
import("guitarix.lib");
countN ((xs, xxs)) = 1 + countN(xxs);
countN (xx) = 1;
takeN (1, (xs, xxs)) = xs;
takeN (1, xs) = x... |
f4756390176436789da2c16abe5ee8e82bf632c8f0b39bf95980ab7dbd5e15e6 | brummer10/guitarix | bossds1.dsp | // generated automatically
// DO NOT MODIFY!
declare id "bossds1";
declare name "DS1";
declare category "Distortion";
declare shortname "DS1";
declare description "DS1 simulation";
declare samplerate "96000";
import("stdfaust.lib");
ds1_in = fi.iir((b0/a0,b1/a0),(a1/a0)) with {
fs = float(ma... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/plugins/bossds1.dsp | faust | generated automatically
DO NOT MODIFY!
sclip = symclip(_); | declare id "bossds1";
declare name "DS1";
declare category "Distortion";
declare shortname "DS1";
declare description "DS1 simulation";
declare samplerate "96000";
import("stdfaust.lib");
ds1_in = fi.iir((b0/a0,b1/a0),(a1/a0)) with {
fs = float(ma.SR);
b0 = 2.06179485600366e-5*fs;
... |
e01f5967c0684d2eafade1ee82c5acce61fa3cb20feb3eede9e34298d6627f21 | brummer10/guitarix | tapesim.dsp | // Tape compression/saturation and frequency response
// Add wow & flutter and we have tape emulation - needsa to modulate the frequency
// which means basically vibrato
// So far so good - tubes may not be needed
// Need to work out better levels of saturation as current range too distorted
// wow at 1% is 0.15 inchs ... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/LV2/faust/tapesim.dsp | faust | Tape compression/saturation and frequency response
Add wow & flutter and we have tape emulation - needsa to modulate the frequency
which means basically vibrato
So far so good - tubes may not be needed
Need to work out better levels of saturation as current range too distorted
wow at 1% is 0.15 inchs per second >... |
import("stdfaust.lib");
import("guitarix.lib");
import("redeye.lib");
wow = de.sdelay(N, interp, delaytime) with{
freq = hgroup( "Wow Control",vslider("wowfreq[style:knob]",0.0,0.0,4.0,0.1) );
depth = hgroup( "Wow Control",vslider("wowdepth[style:knob]",0.0,0.0,0.03,0.001) );
delaytime = modulation * ma.SR/1000... |
cfa84ed78c525c662e28eca90d5cd1d585e529dbf6fdf72201b121573e1ba782 | brummer10/guitarix | fuzzface.dsp | // generated automatically
// DO NOT MODIFY!
declare id "fuzzface";
declare name "Fuzz Face";
declare category "Fuzz";
declare description "J Hendrix Fuzz Face simulation";
declare insert_p "clipper";
import("stdfaust.lib");
//import("trany.lib");
process = pre : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0,b4/a0,b5/a0),(a1/a0,a... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/faust/fuzzface.dsp | faust | generated automatically
DO NOT MODIFY!
import("trany.lib");
clip = tranystage(TB_7199P_68k,86.0,2700.0,3.571981) : tranystage(TB_7199P_68k,86.0,2700.0,3.571981) ; | declare id "fuzzface";
declare name "Fuzz Face";
declare category "Fuzz";
declare description "J Hendrix Fuzz Face simulation";
declare insert_p "clipper";
import("stdfaust.lib");
process = pre : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0,b4/a0,b5/a0),(a1/a0,a2/a0,a3/a0,a4/a0,a5/a0)) with {
Inverted(b, x) = ba.if(b, 1 - ... |
a561a77c58c809968c3243a122ca67380050c1c7399568da5f643f73a60c5bb4 | brummer10/guitarix | fuzzface.dsp | // generated automatically
// DO NOT MODIFY!
declare id "fuzzface";
declare name "Fuzz Face";
declare category "Distortion";
declare description "J Hendrix Fuzz Face simulation";
import("stdfaust.lib");
import("trany.lib");
process = pre : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0,b4/a0,b5/a0),(a1/a0,a2/a0,a3/a0,a4/a0,a5/a0)) ... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/LV2/faust/fuzzface.dsp | faust | generated automatically
DO NOT MODIFY!
clip(x) = 0.4 * (min(0.7514,max(-0.4514,x))); | declare id "fuzzface";
declare name "Fuzz Face";
declare category "Distortion";
declare description "J Hendrix Fuzz Face simulation";
import("stdfaust.lib");
import("trany.lib");
process = pre : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0,b4/a0,b5/a0),(a1/a0,a2/a0,a3/a0,a4/a0,a5/a0)) : clip with {
LogPot(a, x) = ba.if(a, (ex... |
9f4232ef95d1e0378ef4825819dcdc031662e3aa27138830fb31ffbac9a5fbdb | brummer10/CollisionDrive | CollisionDrivesim.dsp | declare id "collison";
declare name "Collision Drive";
declare category "Distortion";
declare samplerate "96000";
import("stdfaust.lib");
/*******************************************************************************
* 1-dimensional function table for linear interpolation
*********************... | https://raw.githubusercontent.com/brummer10/CollisionDrive/24e745a4b6d6406b5e4e5f05230d5df23a424742/CollisionDrive/dsp/CollisionDrivesim.dsp | faust | ******************************************************************************
* 1-dimensional function table for linear interpolation
******************************************************************************
-- Rdtable from waveform
-- Copy the sign of x to f
-- Get sign of value x
-- Check if value x is negati... | declare id "collison";
declare name "Collision Drive";
declare category "Distortion";
declare samplerate "96000";
import("stdfaust.lib");
rd = library("reducemaps.lib");
rtable(table, r) = (table, int(r)):rdtable;
ccopysign(f, x) = ma.fabs(f) * sign(x);
sign(x) = x<0, 1, -1 : select2;
fsignbit... |
9d3a8dfe0db3ed474351ed8aa8b970ba8fe6b091ce436ca097ac1990ec5540b7 | brummer10/guitarix | mbc.dsp | declare id "mbc";
declare name "Multi Band Compressor";
declare shortname "MB Comp";
declare category "Guitar Effects";
declare description "Multi Band Compressor contributed by kokoko3k";
import("stdfaust.lib");
import("reducemaps.lib");
vmeter1(x) = attach(x, envelop(x) : vbargraph("v1[nomidi][log]", -70, +5));
vm... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/plugins/mbc.dsp | faust | : max(ba.db2linear(-70)) : ba.linear2db;
Mono
threshold-=push ; makeup+=push
threshold-=push ; makeup+=push
threshold-=push ; makeup+=push
threshold-=push ; makeup+=push
threshold-=push ; makeup+=push
makeup-=safe
makeup-=safe
makeup-=safe
makeup-=safe
makeup-=safe
Low end headsets: 13,10,4,8,11 (split... | declare id "mbc";
declare name "Multi Band Compressor";
declare shortname "MB Comp";
declare category "Guitar Effects";
declare description "Multi Band Compressor contributed by kokoko3k";
import("stdfaust.lib");
import("reducemaps.lib");
vmeter1(x) = attach(x, envelop(x) : vbargraph("v1[nomidi][log]", -70, +5));
vm... |
602d4f10185d150feeeada92569371498c1353fd555823f4c150e2133981d42f | brummer10/guitarix | hornet.dsp | // generated automatically
// DO NOT MODIFY!
declare id "hornet";
declare name "Hornet";
declare category "Fuzz";
declare description "Hornet simulation";
import("stdfaust.lib");
process = pre : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0,b4/a0),(a1/a0,a2/a0,a3/a0,a4/a0)) : clip with {
LogPot(a, x) = ba.if(a, (exp(a * x) - 1... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/plugins/hornet.dsp | faust | generated automatically
DO NOT MODIFY! | declare id "hornet";
declare name "Hornet";
declare category "Fuzz";
declare description "Hornet simulation";
import("stdfaust.lib");
process = pre : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0,b4/a0),(a1/a0,a2/a0,a3/a0,a4/a0)) : clip with {
LogPot(a, x) = ba.if(a, (exp(a * x) - 1) / (exp(a) - 1), x);
Inverted(b, x) = ba... |
48ebeb1d4346642327ac2c16ca5138fa5355593386f6c2b6343c327e940d8147 | brummer10/guitarix | fumaster.dsp | // generated automatically
// DO NOT MODIFY!
declare id "fumaster";
declare name "Fuzz Master";
declare category "Fuzz";
declare shortname "Fuzz Master";
declare description "Vintage Fuzz Master simulation";
declare insert_p "tranyclipper";
declare drywetbox "true";
declare volume_p "Level";
import("stdfaust.lib");
im... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/plugins/fumaster.dsp | faust | generated automatically
DO NOT MODIFY!
wet = vslider("wet_dry[name:wet/dry][tooltip:percentage of processed signal in output signal]", 100, 0, 100, 1) : /(100);
dry = 1 - wet;
clip = tranystage(TB_7199P_68k,86.0,2700.0,3.571981) : tranystage(TB_7199P_68k,86.0,2700.0,3.571981) : tranystage(TB_7199P_68k,86.0,2700.0,3.... | declare id "fumaster";
declare name "Fuzz Master";
declare category "Fuzz";
declare shortname "Fuzz Master";
declare description "Vintage Fuzz Master simulation";
declare insert_p "tranyclipper";
declare drywetbox "true";
declare volume_p "Level";
import("stdfaust.lib");
import("trany.lib");
process = pre : fi.iir((b... |
677fece36229288c7671d3280c8d338c89ee06d032c000a4f4226c2dc40fad13 | brummer10/guitarix | hornet.dsp | // generated automatically
// DO NOT MODIFY!
declare id "hornet";
declare name "Hornet";
declare category "Distortion";
declare description "Hornet simulation";
import("stdfaust.lib");
process = fi.iir((b0/a0,b1/a0,b2/a0,b3/a0,b4/a0),(a1/a0,a2/a0,a3/a0,a4/a0)) : clip with {
LogPot(a, x) = ba.if(a, (exp(a * x) ... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/LV2/faust/hornet.dsp | faust | generated automatically
DO NOT MODIFY! | declare id "hornet";
declare name "Hornet";
declare category "Distortion";
declare description "Hornet simulation";
import("stdfaust.lib");
process = fi.iir((b0/a0,b1/a0,b2/a0,b3/a0,b4/a0),(a1/a0,a2/a0,a3/a0,a4/a0)) : clip with {
LogPot(a, x) = ba.if(a, (exp(a * x) - 1) / (exp(a) - 1), x);
Inverted(b, x) =... |
9a6640247e839f5cabfbf9d7f260771d069f9ad2fe549fce3433d44db1b66560 | brummer10/guitarix | fumaster.dsp | // generated automatically
// DO NOT MODIFY!
declare id "fumaster";
declare name "Fuzz Master";
declare category "Distortion";
declare shortname "Fuzz Master";
declare description "Vintage Fuzz Master";
import("stdfaust.lib");
import("trany.lib");
process = pre : _<:*(dry),(*(wet) : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0,b4... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/LV2/faust/fumaster.dsp | faust | generated automatically
DO NOT MODIFY! | declare id "fumaster";
declare name "Fuzz Master";
declare category "Distortion";
declare shortname "Fuzz Master";
declare description "Vintage Fuzz Master";
import("stdfaust.lib");
import("trany.lib");
process = pre : _<:*(dry),(*(wet) : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0,b4/a0,b5/a0,b6/a0),(a1/a0,a2/a0,a3/a0,a4/a0,a5/... |
3ed7a1773d01bb9535af343bc62450805294ae76209fa235702fed41bc8ab33f | brummer10/guitarix | mbcs.dsp | declare id "mbcs";
declare name "Multi Band Compressor Stereo";
declare shortname "MB Comp St";
declare category "Guitar Effects";
declare description "Multi Band Compressor contributed by kokoko3k";
import("stdfaust.lib");
import("reducemaps.lib");
sel1 = hslider("Mode1[enum:Compress|Bypass|Mute][tooltip: Co... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/plugins/mbcs.dsp | faust | : max(ba.db2linear(-70)) : ba.linear2db;
Stereo
threshold-=push ; makeup+=push
threshold-=push ; makeup+=push
threshold-=push ; makeup+=push
threshold-=push ; makeup+=push
threshold-=push ; makeup+=push
makeup-=safe
makeup-=safe
makeup-=safe
makeup-=safe
makeup-=safe
Low end headsets: 13,10,4,8,11 (spl... | declare id "mbcs";
declare name "Multi Band Compressor Stereo";
declare shortname "MB Comp St";
declare category "Guitar Effects";
declare description "Multi Band Compressor contributed by kokoko3k";
import("stdfaust.lib");
import("reducemaps.lib");
sel1 = hslider("Mode1[enum:Compress|Bypass|Mute][tooltip: Co... |
c62b4e493b25c89ef35279be19145fc141a0d209eff590b74508ddffbf7ca170 | brummer10/guitarix | baxandall.dsp | // generated automatically
// DO NOT MODIFY!
declare id "baxandall";
declare name "Baxandall";
declare category "Tone Control";
import("stdfaust.lib");
process = pre : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0,b4/a0),(a1/a0,a2/a0,a3/a0,a4/a0)) with {
s = 0.993;
fs = float(ma.SR);
pre = _;
tr = vslider... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/faust/baxandall.dsp | faust | generated automatically
DO NOT MODIFY! | declare id "baxandall";
declare name "Baxandall";
declare category "Tone Control";
import("stdfaust.lib");
process = pre : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0,b4/a0),(a1/a0,a2/a0,a3/a0,a4/a0)) with {
s = 0.993;
fs = float(ma.SR);
pre = _;
tr = vslider("tr[name:treble]", 0.5, 0, 1, 0.01) : si.sm... |
aae1da96fd8eac38cf6798ef102f347c69a592e3c183fe38dd6691962dc6f2cf | brummer10/guitarix | axface.dsp | // generated automatically
// DO NOT MODIFY!
declare id "axface";
declare name "Axis Face";
declare category "Fuzz";
declare shortname "Axis Face";
declare description "Axis Face";
import("stdfaust.lib");
import("trany.lib");
process = pre : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0,b4/a0,b5/a0),(a1/a0,a2/a0,a3/a0,a4/a0,a5/a0... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/plugins/axface.dsp | faust | generated automatically
DO NOT MODIFY! | declare id "axface";
declare name "Axis Face";
declare category "Fuzz";
declare shortname "Axis Face";
declare description "Axis Face";
import("stdfaust.lib");
import("trany.lib");
process = pre : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0,b4/a0,b5/a0),(a1/a0,a2/a0,a3/a0,a4/a0,a5/a0)) : clip with {
LogPot(a, x) = ba.if(a, ... |
d2f204c785c1b02da8f1296a27128f358eb1e69e73ae369df088b4e6530917cb | brummer10/guitarix | muff.dsp | // generated automatically
// DO NOT MODIFY!
declare id "muff";
declare name "Muff";
declare category "Fuzz";
declare shortname "Muff";
declare description "Muff";
declare insert_p "tranyclipper";
declare volume_p "Level";
import("stdfaust.lib");
import("trany.lib");
process = pre : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0,b4... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/plugins/muff.dsp | faust | generated automatically
DO NOT MODIFY!
clip = tranystage(TB_7199P_68k,86.0,2700.0,3.571981) : tranystage(TB_7199P_68k,86.0,2700.0,3.571981) : tranystage(TB_7199P_68k,86.0,2700.0,3.571981) ;
Level = vslider("Level[name:Level]", 0.5, 0, 1, 0.01): *(0.8) : Inverted(0) : si.smooth(s); | declare id "muff";
declare name "Muff";
declare category "Fuzz";
declare shortname "Muff";
declare description "Muff";
declare insert_p "tranyclipper";
declare volume_p "Level";
import("stdfaust.lib");
import("trany.lib");
process = pre : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0,b4/a0,b5/a0,b6/a0),(a1/a0,a2/a0,a3/a0,a4/a0,a5/... |
4b81e6c25eec92827075b6d2a60c5a0e64631016ad0d09f0eb7a5808220b0cd5 | brummer10/guitarix | muff.dsp | // generated automatically
// DO NOT MODIFY!
declare id "muff";
declare name "Muff";
declare category "Fuzz";
declare shortname "Muff";
declare description "Muff";
declare insert_p "tranyclipper";
declare volume_p "Volume";
import("stdfaust.lib");
import("trany.lib");
process = pre : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0,b... | https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/LV2/faust/muff.dsp | faust | generated automatically
DO NOT MODIFY!
clip = tranystage(TB_7199P_68k,86.0,2700.0,3.571981) : tranystage(TB_7199P_68k,86.0,2700.0,3.571981) : tranystage(TB_7199P_68k,86.0,2700.0,3.571981) ;
Level = vslider("Level[name:Level]", 0.5, 0, 1, 0.01): *(0.8) : Inverted(0) : si.smooth(s); | declare id "muff";
declare name "Muff";
declare category "Fuzz";
declare shortname "Muff";
declare description "Muff";
declare insert_p "tranyclipper";
declare volume_p "Volume";
import("stdfaust.lib");
import("trany.lib");
process = pre : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0,b4/a0,b5/a0,b6/a0),(a1/a0,a2/a0,a3/a0,a4/a0,a5... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.