_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
6dff309892a4423a81d086657d1cad3c5fb4308cf619509b97d11288b490f5e9
ntonnaett/guitarix
stereoverb.dsp
declare name "Stereo Verb"; declare category "Reverb"; declare version "0.01"; declare author "brummer"; declare license "BSD"; declare copyright "(c)brummer 2008"; import("math.lib"); import("music.lib"); import("effect.lib"); import("filter.lib"); import("guitarix.lib"); /*--------------------------...
https://raw.githubusercontent.com/ntonnaett/guitarix/e5ce36c3a693eeada3cb70425ec09f8d6f91e78c/trunk/src/faust/stereoverb.dsp
faust
----------------------------------------------- freeverb by "Grame" ----------------------------------------------- Filter Parameters wetslider = 0.5 + vslider("wet_dry[name:wet/dry]", 0, -0.5, 0.5, 0.1); Reverb components ---------------------------------------------------------------- sine for left channel
declare name "Stereo Verb"; declare category "Reverb"; declare version "0.01"; declare author "brummer"; declare license "BSD"; declare copyright "(c)brummer 2008"; import("math.lib"); import("music.lib"); import("effect.lib"); import("filter.lib"); import("guitarix.lib"); combtuningL1 = 1116; combt...
44572634075f1e8d21f8cb81c9fd3b18b5331373cacf6a785bb4832abe1cb9da
ntonnaett/guitarix
impulseresponse.dsp
declare id "IR"; declare name "ImpulseResponse"; declare category "Tone Control"; declare version "0.01"; declare author "brummer"; declare license "BSD"; declare copyright "(c)brummer 2008"; import("math.lib"); import("music.lib"); import("effect.lib"); import("filter.lib"); import("guitari...
https://raw.githubusercontent.com/ntonnaett/guitarix/e5ce36c3a693eeada3cb70425ec09f8d6f91e78c/trunk/src/LV2/faust/impulseresponse.dsp
faust
pole radius [0 required] pole angle (radians pole = 2) radius = 2 time-domain coefficients ASSUMING ONE PIPELINE DELAY:
declare id "IR"; declare name "ImpulseResponse"; declare category "Tone Control"; declare version "0.01"; declare author "brummer"; declare license "BSD"; declare copyright "(c)brummer 2008"; import("math.lib"); import("music.lib"); import("effect.lib"); import("filter.lib"); import("guitari...
83e850caa35353404155d38201739b7c7269a692d9e68252b2444191e0ed1ab6
ntonnaett/guitarix
gx_distortion.dsp
declare name "Multi Band Distortion"; declare shortname "Distortion"; declare category "Distortion"; declare groups "resonator[Distortion resonator]"; declare version "0.01"; declare author "brummer"; declare license "BSD"; declare copyright "(c)brummer 2008"; import("math.lib"); import("music.lib"...
https://raw.githubusercontent.com/ntonnaett/guitarix/e5ce36c3a693eeada3cb70425ec09f8d6f91e78c/trunk/src/LV2/faust/gx_distortion.dsp
faust
********************************************************************* *** this part is included here for backward compatibility from 0.9.27 to *** 0.9.24 ********************************************************************** ------------------------------ count and take -------------------------------------- ---------...
declare name "Multi Band Distortion"; declare shortname "Distortion"; declare category "Distortion"; declare groups "resonator[Distortion resonator]"; declare version "0.01"; declare author "brummer"; declare license "BSD"; declare copyright "(c)brummer 2008"; import("math.lib"); import("music.lib"...
3dea5fbb69b1a1e75c6a9c3c465e925055394ffc7ac67c55a2dd6091d30b7144
ntonnaett/guitarix
distortion1.dsp
declare id "distortion1"; declare version "0.01"; declare author "brummer"; declare license "BSD"; declare copyright "(c)brummer 2008"; import("math.lib"); import("music.lib"); import("effect.lib"); import("filter.lib"); import("guitarix.lib"); //----------distortion--------- //-speaker emulation sbp1 = v...
https://raw.githubusercontent.com/ntonnaett/guitarix/e5ce36c3a693eeada3cb70425ec09f8d6f91e78c/trunk/src/LV2/faust/distortion1.dsp
faust
----------distortion--------- -speaker emulation -low and highpass -distortion -resonator
declare id "distortion1"; declare version "0.01"; declare author "brummer"; declare license "BSD"; declare copyright "(c)brummer 2008"; import("math.lib"); import("music.lib"); import("effect.lib"); import("filter.lib"); import("guitarix.lib"); sbp1 = vslider("low_freq[name:low freq][tooltip:low-freq cuto...
76f74fb93229574f0d18b3ddda56f09dfa8c7ccd551a8d985b40714c45a8cca4
brummer10/guitarix
distortion2.dsp
declare name "WaveSharper"; declare category "Distortion"; declare id "distortion2"; declare description "A simple Wavesharper distortion"; import("stdfaust.lib"); import("guitarix.lib"); //----------distortion--------- bread = fi.highpass(2,f) : fi.lowpass(1,6532) with { f = vslider("H...
https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/faust/distortion2.dsp
faust
----------distortion---------
declare name "WaveSharper"; declare category "Distortion"; declare id "distortion2"; declare description "A simple Wavesharper distortion"; import("stdfaust.lib"); import("guitarix.lib"); bread = fi.highpass(2,f) : fi.lowpass(1,6532) with { f = vslider("Hfreq [log][name:Hi Pass][tooltip...
02c371f431fb16a06487a433b306ae369b91d7415edc69c9070ba00dd9857b6c
brummer10/guitarix
scream.dsp
// generated automatically // DO NOT MODIFY! declare id "scream"; declare name "Screaming Bird"; declare category "Fuzz"; declare shortname "Scream Bird"; declare description "Screaming Bird"; declare samplerate "96000"; import("stdfaust.lib"); process = pre : fi.iir((b0/a0,b1/a0,b2/a0),(a1/a0,a2/a0)) : clip with { ...
https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/plugins/scream.dsp
faust
generated automatically DO NOT MODIFY! asymclip = ffunction(float asymclip(float), "clipping.h", ""); clip = asymclip(_);
declare id "scream"; declare name "Screaming Bird"; declare category "Fuzz"; declare shortname "Scream Bird"; declare description "Screaming Bird"; declare samplerate "96000"; import("stdfaust.lib"); process = pre : fi.iir((b0/a0,b1/a0,b2/a0),(a1/a0,a2/a0)) : clip with { LogPot(a, x) = ba.if(a, (exp(a * x) - 1) /...
e8433a69a7bf2ed18437f9dbdbb454a8ea570b3b3bc5129c2b8b78ab2de8967f
brummer10/guitarix
flanger.dsp
declare id "flanger"; declare name "Flanger"; declare category "Modulation"; declare license "BSD"; import("stdfaust.lib"); import("guitarix.lib"); flangerstereogx = *(level),*(level) : flangerstereoN(dmax,curdel1,curdel2,depth,fb,invert) // change to pf.flanger_stereo for faust >= 0.9.27 with { ...
https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/faust/flanger.dsp
faust
change to pf.flanger_stereo for faust >= 0.9.27 sine for left channel cosine for right channel freq = hslider("LFO freq [unit:Hz]", 0.2, 0, 5, 0.01);
declare id "flanger"; declare name "Flanger"; declare category "Modulation"; declare license "BSD"; import("stdfaust.lib"); import("guitarix.lib"); with { dmax = 2048; dflange = 0.001 * ma.SR * hslider("flange delay[name:Delay][unit:ms]", 10, 0, 20, 0.01); odflange = 0.001 * ma.SR * hslider...
6740f4e4a52a6d3cc4903671c2caf88a8806b370fbd395f1506b7a82c0ea62f0
ntonnaett/guitarix
eldist.dsp
// generated automatically // DO NOT MODIFY! declare id "eldist"; declare name "Electra Distortion"; declare category "Distortion"; declare shortname "Electra Dst"; declare description "Electra Distortion"; declare samplerate "96000"; import("filter.lib"); process = pre : iir((b0/a0,b1/a0),(a1/a0)) : clip with { ...
https://raw.githubusercontent.com/ntonnaett/guitarix/e5ce36c3a693eeada3cb70425ec09f8d6f91e78c/trunk/src/plugins/eldist.dsp
faust
generated automatically DO NOT MODIFY! clip(x) = (min(0.4514,max(-0.4514,x)));
declare id "eldist"; declare name "Electra Distortion"; declare category "Distortion"; declare shortname "Electra Dst"; declare description "Electra Distortion"; declare samplerate "96000"; import("filter.lib"); process = pre : iir((b0/a0,b1/a0),(a1/a0)) : clip with { LogPot(a, x) = if(a, (exp(a * x) - 1) / (exp(...
2c7e023ef49df634d12e2beb0199a7342f50c5d8bafbde2b199051aa39b3a153
rodamaralgeo/guitarix
gx_distortion.dsp
declare name "Multi Band Distortion"; declare shortname "Distortion"; declare category "Distortion"; declare groups "resonator[Distortion resonator]"; declare gladefile "gx_distortion_ui.glade"; declare version "0.01"; declare author "brummer"; declare license "BSD"; declare copyright "(c)brum...
https://raw.githubusercontent.com/rodamaralgeo/guitarix/09cda116411bee85e2c9077ab99186cdfab6a314/trunk/src/faust/gx_distortion.dsp
faust
********************************************************************* *** this part is included here for backward compatibility from 0.9.27 to *** 0.9.24 ********************************************************************** ------------------------------ ba.count and ba.take -------------------------------------- ---...
declare name "Multi Band Distortion"; declare shortname "Distortion"; declare category "Distortion"; declare groups "resonator[Distortion resonator]"; declare gladefile "gx_distortion_ui.glade"; declare version "0.01"; declare author "brummer"; declare license "BSD"; declare copyright "(c)brum...
697fe5fc7d831c37c12fd0dda286b69379e814f873dace5440b7353a42daa469
unclechu/guitarix
low_high_pass.dsp
declare id "low_highpass"; declare name "low high pass"; declare shortname "L/H/Filter"; declare category "Tone control"; declare groups ".low_high_pass.lhp[low_highpass], .low_high_pass.lhc[low_highcutoff]"; declare version "0.01"; declare author "brummer"; declare license "BSD"; declare copyright "(c)brum...
https://raw.githubusercontent.com/unclechu/guitarix/630e762d480264619919b8b9c69d64f5b6f83da3/trunk/src/LV2/faust/low_high_pass.dsp
faust
-speaker emulation ------------------------------ low/high-passfilters -------------------------------------- bilinear-transform scale-factor bilinear-transform scale-factor current section number -low and highpass
declare id "low_highpass"; declare name "low high pass"; declare shortname "L/H/Filter"; declare category "Tone control"; declare groups ".low_high_pass.lhp[low_highpass], .low_high_pass.lhc[low_highcutoff]"; declare version "0.01"; declare author "brummer"; declare license "BSD"; declare copyright "(c)brum...
2b2f1b4ac06ec463857fe24a79ffd4bb5f7a2921acaf2b1431aefed7d314fd9d
brummer10/guitarix
mbd.dsp
declare id "mbd"; declare name "MultiBand Distortion"; declare shortname "MB Distortion"; declare category "Distortion"; declare description "MultiBand Distortion"; declare samplerate "96000"; import("stdfaust.lib"); import("reducemaps.lib"); anti_denormal = pow(10,-20); anti_denormal_ac = 1 - 1' : *(anti_denormal) :...
https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/plugins/mbd.dsp
faust
: max(ba.db2linear(-70)) : ba.linear2db;
declare id "mbd"; declare name "MultiBand Distortion"; declare shortname "MB Distortion"; declare category "Distortion"; declare description "MultiBand Distortion"; declare samplerate "96000"; import("stdfaust.lib"); import("reducemaps.lib"); anti_denormal = pow(10,-20); anti_denormal_ac = 1 - 1' : *(anti_denormal) :...
079e427ff5627ce58d0a2e41f260863ac9524c93c9985e2dbd4195b65637c372
ntonnaett/guitarix
ring_modulator.dsp
declare id "ring_modulator"; declare name "Ring Modulator Mono"; declare shortname "Ring Modulator"; declare category "Modulation"; import("music.lib"); freq = hslider("freq[name:Freq]", 240, 120, 1600, 0.5); wet_dry = hslider("dry/wet[name:Mix]", 0.5, 0, 1, 0.05); process = _<:((1 - wet_dry)*_,(_*osc(freq))*wet_d...
https://raw.githubusercontent.com/ntonnaett/guitarix/e5ce36c3a693eeada3cb70425ec09f8d6f91e78c/trunk/src/faust/ring_modulator.dsp
faust
declare id "ring_modulator"; declare name "Ring Modulator Mono"; declare shortname "Ring Modulator"; declare category "Modulation"; import("music.lib"); freq = hslider("freq[name:Freq]", 240, 120, 1600, 0.5); wet_dry = hslider("dry/wet[name:Mix]", 0.5, 0, 1, 0.05); process = _<:((1 - wet_dry)*_,(_*osc(freq))*wet_d...
961254578cabf4a0ef20a1abec9fdb00c359faef72b1705267cb21d70a46bfbd
ntonnaett/guitarix
moog.dsp
declare id "moog"; declare name "Moog Filter"; declare category "Tone Control"; declare license "BSD"; import("effect.lib"); import("guitarix.lib"); Q = hslider("Q[name:Q]", 1, 0, 4, 0.1); fr = hslider("fr[name:Freq]", 3000, 440, 6000, 10): smoothi(0.999); process = ( +(anti_denormal_ac): moogvcfN(Q,fr)...
https://raw.githubusercontent.com/ntonnaett/guitarix/e5ce36c3a693eeada3cb70425ec09f8d6f91e78c/trunk/src/faust/moog.dsp
faust
declare id "moog"; declare name "Moog Filter"; declare category "Tone Control"; declare license "BSD"; import("effect.lib"); import("guitarix.lib"); Q = hslider("Q[name:Q]", 1, 0, 4, 0.1); fr = hslider("fr[name:Freq]", 3000, 440, 6000, 10): smoothi(0.999); process = ( +(anti_denormal_ac): moogvcfN(Q,fr)...
ff0ba935d0b319df8b71ad6f9b1ae65c3ee37c4b05da90ac62414a0d448dbbb4
ntonnaett/guitarix
scream.dsp
// generated automatically // DO NOT MODIFY! declare id "scream"; declare name "Screaming Bird"; declare category "Fuzz"; declare shortname "Scream Bird"; declare description "Screaming Bird"; declare samplerate "96000"; import("filter.lib"); process = pre : iir((b0/a0,b1/a0,b2/a0),(a1/a0,a2/a0)) : clip with { Lo...
https://raw.githubusercontent.com/ntonnaett/guitarix/e5ce36c3a693eeada3cb70425ec09f8d6f91e78c/trunk/src/plugins/scream.dsp
faust
generated automatically DO NOT MODIFY! clip(x) = min(0.4514,max(-0.2514,x));
declare id "scream"; declare name "Screaming Bird"; declare category "Fuzz"; declare shortname "Scream Bird"; declare description "Screaming Bird"; declare samplerate "96000"; import("filter.lib"); process = pre : iir((b0/a0,b1/a0,b2/a0),(a1/a0,a2/a0)) : clip with { LogPot(a, x) = if(a, (exp(a * x) - 1) / (exp(a)...
178eadd2ff2741edf8e64306471848ad4f3ff54a2bc51893eedcbc5bb3abcf18
ntonnaett/guitarix
freeverb.dsp
declare name "Freeverb"; declare category "Reverb"; declare version "0.01"; declare author "brummer"; declare license "BSD"; declare copyright "(c)brummer 2008"; import("math.lib"); import("music.lib"); import("effect.lib"); import("filter.lib"); import("guitarix.lib"); /*-------------------------------------...
https://raw.githubusercontent.com/ntonnaett/guitarix/e5ce36c3a693eeada3cb70425ec09f8d6f91e78c/trunk/src/LV2/faust/freeverb.dsp
faust
----------------------------------------------- freeverb by "Grame" ----------------------------------------------- Filter Parameters wetslider = 0.5 + vslider("wet_dry[name:wet/dry]", 0, -0.5, 0.5, 0.1); Reverb components ----------------------------------------------------------------
declare name "Freeverb"; declare category "Reverb"; declare version "0.01"; declare author "brummer"; declare license "BSD"; declare copyright "(c)brummer 2008"; import("math.lib"); import("music.lib"); import("effect.lib"); import("filter.lib"); import("guitarix.lib"); combtuningL1 = 1116; combtuningL2 = 1...
9e5e2201bd625c2341db0cc713321d4cf858ed139af9f360d49ae8b301e67b20
rodamaralgeo/guitarix
peak_eq.dsp
declare id "eq"; declare name "Peak EQ"; declare category "Tone Control"; declare license "BSD"; declare copyright "(c)GRAME 2006"; import("stdfaust.lib"); import("guitarix.lib"); //------------------------- Process -------------------------------- // USAGE: _ : fi.peak_eq(Lfx,fx,B) : _; // wher...
https://raw.githubusercontent.com/rodamaralgeo/guitarix/09cda116411bee85e2c9077ab99186cdfab6a314/trunk/src/faust/peak_eq.dsp
faust
------------------------- Process -------------------------------- USAGE: _ : fi.peak_eq(Lfx,fx,B) : _; where Lfx = level (dB) at fx fx = peak frequency (Hz) B = bandwidth (B) of peak in Hz
declare id "eq"; declare name "Peak EQ"; declare category "Tone Control"; declare license "BSD"; declare copyright "(c)GRAME 2006"; import("stdfaust.lib"); import("guitarix.lib"); process = fi.peak_eq(vslider("level1 [name:Sub][tooltip:gain (dB)]", 0, -50, 50, 0.1),vslider("peak1 [tooltip:fre...
f937e9ec3dd0d388a85ae81d84aebd82f5b82bb33bf14cb39abbe59d49d6531c
ntonnaett/guitarix
chorus_mono.dsp
declare name "Chorus Mono"; declare category "Modulation"; declare author "Albert Graef"; declare version "1.0"; import("music.lib"); import("filter.lib"); level = hslider("level[name:Level]", 0.5, 0, 1, 0.01); freq = hslider("freq[name:Freq]", 2, 0, 10, 0.01); dtime = 0.02 ;//hslider("delay", 0.02, 0, 0.2, 0.01): s...
https://raw.githubusercontent.com/ntonnaett/guitarix/e5ce36c3a693eeada3cb70425ec09f8d6f91e78c/trunk/src/faust/chorus_mono.dsp
faust
hslider("delay", 0.02, 0, 0.2, 0.01): smooth(0.999); hslider("depth", 0.02, 0, 1, 0.01);
declare name "Chorus Mono"; declare category "Modulation"; declare author "Albert Graef"; declare version "1.0"; import("music.lib"); import("filter.lib"); level = hslider("level[name:Level]", 0.5, 0, 1, 0.01); freq = hslider("freq[name:Freq]", 2, 0, 10, 0.01); wet = vslider("wet_dry[name:Dry/Wet][tooltip:percentag...
4f9305a459f1d82a215aa90442c7a78b106e18e06c04de2ea720709ea30cbff9
brummer10/guitarix
digital_delay.dsp
declare id "dide"; declare name "Digital Delay"; declare shortname "Digi Delay"; declare category "Echo / Delay"; declare description "Digital Delay"; import("stdfaust.lib"); import("guitarix.lib"); guitarboost = fi.highpass(3,80) : fi.peak_eq(-3,200,50): fi.peak_eq(1.5,375,125) : fi.peak_eq(3,2000,500) : fi.peak_eq...
https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/faust/digital_delay.dsp
faust
declare id "dide"; declare name "Digital Delay"; declare shortname "Digi Delay"; declare category "Echo / Delay"; declare description "Digital Delay"; import("stdfaust.lib"); import("guitarix.lib"); guitarboost = fi.highpass(3,80) : fi.peak_eq(-3,200,50): fi.peak_eq(1.5,375,125) : fi.peak_eq(3,2000,500) : fi.peak_eq...
1b603224f812c758704efa01507e399b9e0116ed9d007d74fdbd47e2667b102c
Blumealc/43PR3
spanner9.dsp
declare filename "spanner9.dsp"; declare name "spanner9"; declare compilation_options "-single -scal -I libraries/ -I project/ -lang wasm"; declare library_path0 "/libraries/stdfaust.lib"; declare library_path1 "/libraries/maths.lib"; declare library_path2 "/libraries/signals.lib"; declare library_path3 "/libraries/...
https://raw.githubusercontent.com/Blumealc/43PR3/0bd1e28c690d43d2905a0a06e69a60e55b0b6116/spanner9%7E.mxo/spanner9.dsp
faust
declare filename "spanner9.dsp"; declare name "spanner9"; declare compilation_options "-single -scal -I libraries/ -I project/ -lang wasm"; declare library_path0 "/libraries/stdfaust.lib"; declare library_path1 "/libraries/maths.lib"; declare library_path2 "/libraries/signals.lib"; declare library_path3 "/libraries/...
c5f4f587c58469025868cf825b98fbfaab89d424be0bc5df1c431b249fbe6374
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/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)...
fc1e20ae5ec9e77b6d53df3bcea097d0880c7d3fcb8505c9974b510979e5cfeb
ntonnaett/guitarix
flanger.dsp
declare id "flanger"; declare name "Flanger"; declare category "Modulation"; declare license "BSD"; import("effect.lib"); import("guitarix.lib"); import("oscillator.lib"); flangerstereogx = *(level),*(level) : flangerstereoN(dmax,curdel1,curdel2,depth,fb,invert) // change to flanger_stereo for fa...
https://raw.githubusercontent.com/ntonnaett/guitarix/e5ce36c3a693eeada3cb70425ec09f8d6f91e78c/trunk/src/faust/flanger.dsp
faust
change to flanger_stereo for faust >= 0.9.27 sine for left channel cosine for right channel freq = hslider("LFO freq [unit:Hz]", 0.2, 0, 5, 0.01);
declare id "flanger"; declare name "Flanger"; declare category "Modulation"; declare license "BSD"; import("effect.lib"); import("guitarix.lib"); import("oscillator.lib"); with { dmax = 2048; dflange = 0.001 * SR * hslider("flange delay[name:Delay][unit:ms]", 10, 0, 20, 0.01); odflange = 0....
0c91fe7bb3b21bbcb3f82211b8aac926cde486d242622fd450e53509b3dde4dc
brummer10/guitarix
gain.dsp
declare id "gain"; declare name "Volume"; declare category "Tone Control"; declare description "simple volume control"; import("stdfaust.lib"); import("guitarix.lib"); gain = vslider("gain[name:Gain][tooltip:gain (dB)]", 0, -40, 40, 0.1) : ba.db2linear : smoothi(0.999); process = *(gain);
https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/faust/gain.dsp
faust
declare id "gain"; declare name "Volume"; declare category "Tone Control"; declare description "simple volume control"; import("stdfaust.lib"); import("guitarix.lib"); gain = vslider("gain[name:Gain][tooltip:gain (dB)]", 0, -40, 40, 0.1) : ba.db2linear : smoothi(0.999); process = *(gain);
47ab9407046e747d8135052b49d729098139e87124ef534d64b7aeb31a5f0d23
tonal-glyph/faustus
noisemetadata.dsp
<mdoc> \title{<metadata>name</metadata>} \author{<metadata>author</metadata>} \date{\today} \maketitle \begin{tabular}{ll} \hline \textbf{name} & <metadata>name</metadata> \\ \textbf{version} & <metadata>version</metadata> \\ \textbf{author} & <metadata>author</metadata> \\ \textbf{license} & <metadata>licens...
https://raw.githubusercontent.com/tonal-glyph/faustus/cc887b115aceaee202edbdb37ee0e4087bfb5a33/tests/impulse-tests/dsp/noisemetadata.dsp
faust
----------------------------------------------------------------- Noise generator and demo file for the Faust math documentation ----------------------------------------------------------------- avoid same name as in noise.dsp
<mdoc> \title{<metadata>name</metadata>} \author{<metadata>author</metadata>} \date{\today} \maketitle \begin{tabular}{ll} \hline \textbf{name} & <metadata>name</metadata> \\ \textbf{version} & <metadata>version</metadata> \\ \textbf{author} & <metadata>author</metadata> \\ \textbf{license} & <metadata>licens...
736b3dcf09d3a5f95cd53e8eb2c21933a2d2d39dc3e3473a902910a108c8fd3c
guysherman/Faust
prefix.dsp
declare name "prefix"; declare version "1.0"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2009"; //------------------------------------------------- // Simple prefix test for documentator //------------------------------------------------- process = prefix (3,*(7));
https://raw.githubusercontent.com/guysherman/Faust/4cac36e7fc493158e92946b3a840c4f611ac2844/tests/mathdoc/prefix.dsp
faust
------------------------------------------------- Simple prefix test for documentator -------------------------------------------------
declare name "prefix"; declare version "1.0"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2009"; process = prefix (3,*(7));
03c55cdd4999db4326f26314603e7473a7bcbad88e642603f9e7fa782dd33caa
CICM/pd-faustgen
mixer.dsp
declare name "mixer"; declare version "1.0"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2006"; process = _;
https://raw.githubusercontent.com/CICM/pd-faustgen/9e2aaeabe94a7fab6928711050535ac12a1a591a/external/examples/mixer.dsp
faust
declare name "mixer"; declare version "1.0"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2006"; process = _;
82ae5dae862259fd7957ce4c2880eee61e8d896278efc287ed885cf23b0c8d99
ntonnaett/guitarix
trbuff.dsp
// generated automatically // DO NOT MODIFY! declare id "trbuff"; declare name "Transistor Buffer"; declare category "Guitar Effects"; declare shortname "Transistor Buffer"; declare description "Transistor Buffer"; import("filter.lib"); process = pre : _<:*(dry),(*(wet) : iir((b0/a0,b1/a0),(a1/a0))):>_ with { Log...
https://raw.githubusercontent.com/ntonnaett/guitarix/e5ce36c3a693eeada3cb70425ec09f8d6f91e78c/trunk/src/faust/trbuff.dsp
faust
generated automatically DO NOT MODIFY!
declare id "trbuff"; declare name "Transistor Buffer"; declare category "Guitar Effects"; declare shortname "Transistor Buffer"; declare description "Transistor Buffer"; import("filter.lib"); process = pre : _<:*(dry),(*(wet) : iir((b0/a0,b1/a0),(a1/a0))):>_ with { LogPot(a, x) = if(a, (exp(a * x) - 1) / (exp(a) ...
a5a1dd33f0885e91126b673430f7b059e0e5770466771046581ab286f7542a2a
Pro19/guitarix
stereoverb.dsp
declare name "Stereo Verb"; declare category "Reverb"; declare version "0.01"; declare author "brummer"; declare license "BSD"; declare copyright "(c)brummer 2008"; import("stdfaust.lib"); import("guitarix.lib"); /*----------------------------------------------- freeverb by "Grame" ---------------...
https://raw.githubusercontent.com/Pro19/guitarix/b1c686212332d1ea40683262bf95ad2b486b2bb6/trunk/src/LV2/faust/stereoverb.dsp
faust
----------------------------------------------- freeverb by "Grame" ----------------------------------------------- Filter Parameters wetslider = 0.5 + vslider("wet_dry[name:wet/dry]", 0, -0.5, 0.5, 0.1); Reverb components ---------------------------------------------------------------- sine for left channel
declare name "Stereo Verb"; declare category "Reverb"; declare version "0.01"; declare author "brummer"; declare license "BSD"; declare copyright "(c)brummer 2008"; import("stdfaust.lib"); import("guitarix.lib"); combtuningL1 = 1116; combtuningL2 = 1188; combtuningL3 = 1277; combtuningL4 = 1356; comb...
01af3d6de7930a19f2f1c3b1ab7545604725ce39ecfff87d03a5757de9925d38
ntonnaett/guitarix
mole.dsp
// generated automatically // DO NOT MODIFY! declare id "mole"; declare name "The Mole"; declare category "Tone Control"; declare shortname "The Mole"; declare description "EHX Mole"; import("filter.lib"); process = pre : _<:*(dry),(*(wet) : iir((b0/a0,b1/a0,b2/a0,b3/a0),(a1/a0,a2/a0,a3/a0))):>_ with { LogPot(a, ...
https://raw.githubusercontent.com/ntonnaett/guitarix/e5ce36c3a693eeada3cb70425ec09f8d6f91e78c/trunk/src/plugins/mole.dsp
faust
generated automatically DO NOT MODIFY!
declare id "mole"; declare name "The Mole"; declare category "Tone Control"; declare shortname "The Mole"; declare description "EHX Mole"; import("filter.lib"); process = pre : _<:*(dry),(*(wet) : iir((b0/a0,b1/a0,b2/a0,b3/a0),(a1/a0,a2/a0,a3/a0))):>_ with { LogPot(a, x) = if(a, (exp(a * x) - 1) / (exp(a) - 1), x...
99e60eaa2486e05446fecbeb8105a48d9ca1efcb83c3aef2f8467483287ada44
brummer10/guitarix
lpbboost.dsp
// generated automatically // DO NOT MODIFY! declare id "lpbboost"; declare name "LPB-1 Booster"; declare category "Tone Control"; declare shortname "LPB-1 Boost"; declare description "LPB-1 Linear Power Booster "; import("stdfaust.lib"); process = pre : fi.iir((b0/a0,b1/a0,b2/a0),(a1/a0,a2/a0)) with { LogPot(a, ...
https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/plugins/lpbboost.dsp
faust
generated automatically DO NOT MODIFY!
declare id "lpbboost"; declare name "LPB-1 Booster"; declare category "Tone Control"; declare shortname "LPB-1 Boost"; declare description "LPB-1 Linear Power Booster "; import("stdfaust.lib"); process = 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)...
4204eb0ff52da69f2c3dd75917d29c6c289000d47ebc89e196e9a2704dda4a03
guysherman/Faust
echo.dsp
declare name "echo"; declare version "1.0"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2006"; //----------------------------------------------- // A Simple Echo //----------------------------------------------- import("music.lib"); process = vgroup("echo-simple", echo1s);
https://raw.githubusercontent.com/guysherman/Faust/4cac36e7fc493158e92946b3a840c4f611ac2844/tools/faust2pd/examples/faust/echo.dsp
faust
----------------------------------------------- A Simple Echo -----------------------------------------------
declare name "echo"; declare version "1.0"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2006"; import("music.lib"); process = vgroup("echo-simple", echo1s);
a4fd1e622dfbe2186c24c775f55e01b04f5fefb1f8d5af0f7f902dfcaabb9257
guysherman/Faust
noise2.dsp
declare name "noise"; declare version "1.0"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2006"; // noise generator random = +(12345)~*(1103515245); noise = random/2147483647.0; process = noise * vslider("vol", 0, 0, 1, 0.1);
https://raw.githubusercontent.com/guysherman/Faust/4cac36e7fc493158e92946b3a840c4f611ac2844/tools/faust2pd/examples/faust/noise2.dsp
faust
noise generator
declare name "noise"; declare version "1.0"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2006"; random = +(12345)~*(1103515245); noise = random/2147483647.0; process = noise * vslider("vol", 0, 0, 1, 0.1);
cb1e8f866abbe43d0bdf8a3f7738c7d18b0161b6b73a271f52c9bcfbea05ffc4
brummer10/guitarix
hogsfoot.dsp
// generated automatically // DO NOT MODIFY! declare id "hogsfoot"; declare name "Hogs Foot"; declare category "Tone Control"; declare shortname "Hogs Foot"; declare description "Hogs Foot Bass 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/hogsfoot.dsp
faust
generated automatically DO NOT MODIFY!
declare id "hogsfoot"; declare name "Hogs Foot"; declare category "Tone Control"; declare shortname "Hogs Foot"; declare description "Hogs Foot Bass 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(a...
c04d616b94c7c9d6ee76ed74ef1977e0828fb03f1a0a29f39a88703d66bfecd6
brummer10/guitarix
hogsfoot.dsp
// generated automatically // DO NOT MODIFY! declare id "hogsfoot"; declare name "Hogs Foot"; declare category "Tone Control"; declare shortname "Hogs Foot"; declare description "Hogs Foot Bass 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/LV2/faust/hogsfoot.dsp
faust
generated automatically DO NOT MODIFY!
declare id "hogsfoot"; declare name "Hogs Foot"; declare category "Tone Control"; declare shortname "Hogs Foot"; declare description "Hogs Foot Bass 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(a...
ab3dc68aca000da01872351ad37b4ccd9410014a3d0477d5bb9df5b1cbc86a84
smoge/gxplugins
tone.dsp
declare name "amp.tone"; declare version "0.01"; declare author "brummer"; declare license "BSD"; declare copyright "(c)brummer 2008"; import("math.lib"); import("music.lib"); import("effect.lib"); import("filter.lib"); import("guitarix.lib"); /*----------------------------------------------- The tone...
https://raw.githubusercontent.com/smoge/gxplugins/30a5160ff626975aa521a316cd33f973e3bc5d0c/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 name "amp.tone"; declare version "0.01"; declare author "brummer"; declare license "BSD"; declare copyright "(c)brummer 2008"; import("math.lib"); import("music.lib"); import("effect.lib"); import("filter.lib"); import("guitarix.lib"); filter(b0,b1,b2,a0,a1,a2) = f : (+ ~ g) with { f(x) = (b0/a0)*x+...
9395afffb8fb2c4a63ad1f8fb9705c5b6401bde79dba8b31a263a2e21d346436
guysherman/Faust
stereoecho.dsp
declare name "stereoecho"; declare version "1.0"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2007"; //----------------------------------------------- // A 1 second Stereo Echo //----------------------------------------------- import("music.lib"); process = vgroup("stereo ec...
https://raw.githubusercontent.com/guysherman/Faust/4cac36e7fc493158e92946b3a840c4f611ac2844/examples/stereoecho.dsp
faust
----------------------------------------------- A 1 second Stereo Echo -----------------------------------------------
declare name "stereoecho"; declare version "1.0"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2007"; import("music.lib"); process = vgroup("stereo echo", (echo1s, echo1s));
2bb9e7ce4a2cb0a0b49abf1224cb1b6160f59fab2b3f1e6dd67ecee16455b80f
Pro19/guitarix
trbuff.dsp
// generated automatically // DO NOT MODIFY! declare id "trbuff"; declare name "Transistor Buffer"; declare category "Guitar Effects"; declare shortname "Transistor Buffer"; declare description "Transistor Buffer"; import("stdfaust.lib"); process = pre : _<:*(dry),(*(wet) : fi.iir((b0/a0,b1/a0),(a1/a0))):>_ with { ...
https://raw.githubusercontent.com/Pro19/guitarix/b1c686212332d1ea40683262bf95ad2b486b2bb6/trunk/src/faust/trbuff.dsp
faust
generated automatically DO NOT MODIFY!
declare id "trbuff"; declare name "Transistor Buffer"; declare category "Guitar Effects"; declare shortname "Transistor Buffer"; declare description "Transistor Buffer"; import("stdfaust.lib"); process = pre : _<:*(dry),(*(wet) : fi.iir((b0/a0,b1/a0),(a1/a0))):>_ with { LogPot(a, x) = ba.if(a, (exp(a * x) - 1) / ...
b6f6d32ab4f2851a00e4062cfd70adcf2729677120f08956d3b4d26ae759d7d8
guysherman/Faust
panpot.dsp
declare name "panpot"; declare version "1.0"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2006"; //------------------------------------------------- // Stereo panpot //------------------------------------------------- panpot(x) = (1-c)*x, c*x with { c=(nentry("",0,-8,8,1)...
https://raw.githubusercontent.com/guysherman/Faust/4cac36e7fc493158e92946b3a840c4f611ac2844/tools/faust2pd/examples/faust/panpot.dsp
faust
------------------------------------------------- Stereo panpot -------------------------------------------------
declare name "panpot"; declare version "1.0"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2006"; panpot(x) = (1-c)*x, c*x with { c=(nentry("",0,-8,8,1)-8)/-16; }; process = vgroup("panpot", panpot);
ae12d26d87d3dc46be4fa0229d9e5a16be1a4a2c927d58d6957b678516e3eb13
simonvanderveldt/guitarix
scream.dsp
// generated automatically // DO NOT MODIFY! declare id "scream"; declare name "Screaming Bird"; declare category "Fuzz"; declare shortname "Scream Bird"; declare description "Screaming Bird"; declare samplerate "96000"; import("stdfaust.lib"); process = pre : fi.iir((b0/a0,b1/a0,b2/a0),(a1/a0,a2/a0)) : clip with { ...
https://raw.githubusercontent.com/simonvanderveldt/guitarix/51ba3d2bba6118a7fbf67a56c30e860faa155d5f/trunk/src/plugins/scream.dsp
faust
generated automatically DO NOT MODIFY! clip(x) = min(0.4514,max(-0.2514,x));
declare id "scream"; declare name "Screaming Bird"; declare category "Fuzz"; declare shortname "Scream Bird"; declare description "Screaming Bird"; declare samplerate "96000"; import("stdfaust.lib"); process = pre : fi.iir((b0/a0,b1/a0,b2/a0),(a1/a0,a2/a0)) : clip with { LogPot(a, x) = ba.if(a, (exp(a * x) - 1) /...
980cc6d86cd3503a22407887a7d982d0abb7b317f57c33fcae1cd05775354a92
ntonnaett/guitarix
flanger_mono.dsp
declare id "flanger_mono"; declare name "Flanger Mono"; declare category "Modulation"; declare license "BSD"; import("effect.lib"); import("guitarix.lib"); import("oscillator.lib"); flangermono(curdel) = _<: _, (-:fdelay(2048,curdel)) ~ *(0.5) : _, *(-1) : + : *(0.5); flangermonogx = *(l...
https://raw.githubusercontent.com/ntonnaett/guitarix/e5ce36c3a693eeada3cb70425ec09f8d6f91e78c/trunk/src/faust/flanger_mono.dsp
faust
freq = hslider("freq [unit:Hz]", 0.2, 0, 5, 0.01);
declare id "flanger_mono"; declare name "Flanger Mono"; declare category "Modulation"; declare license "BSD"; import("effect.lib"); import("guitarix.lib"); import("oscillator.lib"); flangermono(curdel) = _<: _, (-:fdelay(2048,curdel)) ~ *(0.5) : _, *(-1) : + : *(0.5); flangermonogx = *(l...
80f5fc59b9e707daadf829bd6f006bccdaff568e150eabd47e0fef6c45f7ab92
simonvanderveldt/guitarix
ring_modulator.dsp
declare id "ring_modulator"; declare name "Ring Modulator Mono"; declare shortname "Ring Modulator"; declare category "Modulation"; import("stdfaust.lib"); freq = hslider("freq[name:Freq]", 240, 120, 1600, 0.5); wet_dry = hslider("dry/wet[name:Mix]", 0.5, 0, 1, 0.05); process = _<:((1 - wet_dry)*_,(_*os.osc(freq))...
https://raw.githubusercontent.com/simonvanderveldt/guitarix/51ba3d2bba6118a7fbf67a56c30e860faa155d5f/trunk/src/faust/ring_modulator.dsp
faust
declare id "ring_modulator"; declare name "Ring Modulator Mono"; declare shortname "Ring Modulator"; declare category "Modulation"; import("stdfaust.lib"); freq = hslider("freq[name:Freq]", 240, 120, 1600, 0.5); wet_dry = hslider("dry/wet[name:Mix]", 0.5, 0, 1, 0.05); process = _<:((1 - wet_dry)*_,(_*os.osc(freq))...
3a7fa450ab37dac6027f8f45b52247f49c8a9ae6a0b7095614aedcb7278f34d9
ntonnaett/guitarix
digital_delay.dsp
declare id "dide"; declare name "Digital Delay"; declare shortname "Digi Delay"; declare category "Echo / Delay"; declare description "Digital Delay"; import("music.lib"); import("guitarix.lib"); import("math.lib"); guitarboost = highpass(3,80) : peak_eq(-3,200,50): peak_eq(1.5,375,125) : peak_eq(3,2000,500) : peak...
https://raw.githubusercontent.com/ntonnaett/guitarix/e5ce36c3a693eeada3cb70425ec09f8d6f91e78c/trunk/src/faust/digital_delay.dsp
faust
declare id "dide"; declare name "Digital Delay"; declare shortname "Digi Delay"; declare category "Echo / Delay"; declare description "Digital Delay"; import("music.lib"); import("guitarix.lib"); import("math.lib"); guitarboost = highpass(3,80) : peak_eq(-3,200,50): peak_eq(1.5,375,125) : peak_eq(3,2000,500) : peak...
30409dbc84d455cf8d222b51e6aadc8f86b301279f7528cc5c64da7d4a919944
tonal-glyph/faustus
noiseMetadata.dsp
// WARNING: This a "legacy example based on a deprecated library". Check noises.lib // for more accurate examples of noise functions <mdoc> \title{<metadata>name</metadata>} \author{<metadata>author</metadata>} \date{\today} \maketitle \begin{tabular}{ll} \hline \textbf{name} & <metadata>name</metadata> \\ \textb...
https://raw.githubusercontent.com/tonal-glyph/faustus/cc887b115aceaee202edbdb37ee0e4087bfb5a33/examples/generator/noiseMetadata.dsp
faust
WARNING: This a "legacy example based on a deprecated library". Check noises.lib for more accurate examples of noise functions ----------------------------------------------------------------- Noise generator and demo file for the Faust math documentation -------------------------------------------------------------...
<mdoc> \title{<metadata>name</metadata>} \author{<metadata>author</metadata>} \date{\today} \maketitle \begin{tabular}{ll} \hline \textbf{name} & <metadata>name</metadata> \\ \textbf{version} & <metadata>version</metadata> \\ \textbf{author} & <metadata>author</metadata> \\ \textbf{license} & <metadata>licen...
b7e46a4d90bd17b00db1bdcd20d98deeb3072a32e2a94482cd9dd77a42fb0387
brummer10/guitarix
scream.dsp
// generated automatically // DO NOT MODIFY! declare id "scream"; declare name "Screaming Bird"; declare category "Distortion"; declare shortname "Scream Bird"; declare description "Screaming Bird"; import("stdfaust.lib"); process = pre : fi.iir((b0/a0,b1/a0,b2/a0),(a1/a0,a2/a0)) : clip with { LogPot(a, x) = ba....
https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/LV2/faust/scream.dsp
faust
generated automatically DO NOT MODIFY!
declare id "scream"; declare name "Screaming Bird"; declare category "Distortion"; declare shortname "Scream Bird"; declare description "Screaming Bird"; import("stdfaust.lib"); process = pre : fi.iir((b0/a0,b1/a0,b2/a0),(a1/a0,a2/a0)) : clip with { LogPot(a, x) = ba.if(a, (exp(a * x) - 1) / (exp(a) - 1), x); ...
23929cbe7941571e2211d90c5cf4921ad5e906815265dec3b1748860194ed634
Pro19/guitarix
flanger_mono.dsp
declare id "flanger_mono"; declare name "Flanger Mono"; declare category "Modulation"; declare license "BSD"; import("stdfaust.lib"); import("guitarix.lib"); flangermono(curdel) = _<: _, (-:de.fdelay(2048,curdel)) ~ *(0.5) : _, *(-1) : + : *(0.5); flangermonogx = *(level):flangermono(cur...
https://raw.githubusercontent.com/Pro19/guitarix/b1c686212332d1ea40683262bf95ad2b486b2bb6/trunk/src/faust/flanger_mono.dsp
faust
freq = hslider("freq [unit:Hz]", 0.2, 0, 5, 0.01);
declare id "flanger_mono"; declare name "Flanger Mono"; declare category "Modulation"; declare license "BSD"; import("stdfaust.lib"); import("guitarix.lib"); flangermono(curdel) = _<: _, (-:de.fdelay(2048,curdel)) ~ *(0.5) : _, *(-1) : + : *(0.5); flangermonogx = *(level):flangermono(cur...
a9ca7a2d3ea8bc12646f65f0ff335611fe17f01437d0c8ea8db8236185e9f929
simonvanderveldt/guitarix
moog.dsp
declare id "moog"; declare name "Moog Filter"; declare category "Tone Control"; declare license "BSD"; import("stdfaust.lib"); import("guitarix.lib"); Q = hslider("Q[name:Q]", 1, 0, 4, 0.1); fr = hslider("fr[name:Freq]", 3000, 440, 6000, 10): smoothi(0.999); process = ( +(anti_denormal_ac): moogvcfN(Q,fr...
https://raw.githubusercontent.com/simonvanderveldt/guitarix/51ba3d2bba6118a7fbf67a56c30e860faa155d5f/trunk/src/faust/moog.dsp
faust
declare id "moog"; declare name "Moog Filter"; declare category "Tone Control"; declare license "BSD"; import("stdfaust.lib"); import("guitarix.lib"); Q = hslider("Q[name:Q]", 1, 0, 4, 0.1); fr = hslider("fr[name:Freq]", 3000, 440, 6000, 10): smoothi(0.999); process = ( +(anti_denormal_ac): moogvcfN(Q,fr...
2faa72cdc595b2b7d461e9a798d39c688fb0add1705d704ca8711860cfcbc81e
simonvanderveldt/guitarix
chorus_mono.dsp
declare name "Chorus Mono"; declare category "Modulation"; declare author "Albert Graef"; declare version "1.0"; import("stdfaust.lib"); level = hslider("level[name:Level]", 0.5, 0, 1, 0.01); freq = hslider("freq[name:Freq]", 2, 0, 10, 0.01); dtime = 0.02 ;//hslider("de.delay", 0.02, 0, 0.2, 0.01): si.smooth(0.999);...
https://raw.githubusercontent.com/simonvanderveldt/guitarix/51ba3d2bba6118a7fbf67a56c30e860faa155d5f/trunk/src/faust/chorus_mono.dsp
faust
hslider("de.delay", 0.02, 0, 0.2, 0.01): si.smooth(0.999); hslider("depth", 0.02, 0, 1, 0.01);
declare name "Chorus Mono"; declare category "Modulation"; declare author "Albert Graef"; declare version "1.0"; import("stdfaust.lib"); level = hslider("level[name:Level]", 0.5, 0, 1, 0.01); freq = hslider("freq[name:Freq]", 2, 0, 10, 0.01); wet = vslider("wet_dry[name:Dry/Wet][tooltip:percentage of processed sign...
8d8b4399fa4af358a1fd97b83559c7746a9da713fafaa6568b80b6b19e580b3c
guysherman/Faust
quadecho.dsp
declare name "quadecho"; declare version "1.0"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2007"; //----------------------------------------------- // A 1 second quadriphonic Echo //----------------------------------------------- import("music.lib"); process = vgroup("ster...
https://raw.githubusercontent.com/guysherman/Faust/4cac36e7fc493158e92946b3a840c4f611ac2844/examples/quadecho.dsp
faust
----------------------------------------------- A 1 second quadriphonic Echo -----------------------------------------------
declare name "quadecho"; declare version "1.0"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2007"; import("music.lib"); process = vgroup("stereo echo", multi(echo1s, 4)) with{ multi(f,1) = f; multi(f,n) = f,multi(f,n-1); };
ceb572ab215ec6c683c54b8e8d5be03bcc5925234e93c854df8fd07b8139f2e6
guysherman/Faust
volume.dsp
declare name "volume"; declare version "1.0"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2006"; //----------------------------------------------- // Volume control in dB //----------------------------------------------- import("music.lib"); smooth(c) = *(1-c) : +~*(c); gain ...
https://raw.githubusercontent.com/guysherman/Faust/4cac36e7fc493158e92946b3a840c4f611ac2844/examples/volume.dsp
faust
----------------------------------------------- Volume control in dB -----------------------------------------------
declare name "volume"; declare version "1.0"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2006"; import("music.lib"); smooth(c) = *(1-c) : +~*(c); gain = vslider("[1]", 0, -70, +4, 0.1) : db2linear : smooth(0.999); process = *(gain);
f0a4a2585c204a1188f4ba0e93e6a4ceabf1a9300c0cbc8db914ff06cbd26c73
guysherman/Faust
panpot.dsp
declare name "panpot"; declare version "1.0"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2006"; //------------------------------------------------- // Stereo panpot //------------------------------------------------- panpot(x) = sqrt(c)*x, sqrt(1-c)*x with { c=(nentry("[...
https://raw.githubusercontent.com/guysherman/Faust/4cac36e7fc493158e92946b3a840c4f611ac2844/examples/panpot.dsp
faust
------------------------------------------------- Stereo panpot -------------------------------------------------
declare name "panpot"; declare version "1.0"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2006"; panpot(x) = sqrt(c)*x, sqrt(1-c)*x with { c=(nentry("[1]pan[style:knob]",0,-90,90,1)-90.0)/-180.0; }; process = panpot;
59eda93713a0a11b115d3c4eb4d1b6c28beea4677ec24ab8558049220a1c82a8
guysherman/Faust
multibandfilter.dsp
declare name "multibandfilter"; declare version "1.0"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2006"; //---------------------------Multi Band Filter----------------------------- // //------------------------------------------------------------------------- process = hgroup(...
https://raw.githubusercontent.com/guysherman/Faust/4cac36e7fc493158e92946b3a840c4f611ac2844/examples/multibandfilter.dsp
faust
---------------------------Multi Band Filter----------------------------- -------------------------------------------------------------------------
declare name "multibandfilter"; declare version "1.0"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2006"; process = hgroup("Multi Band Filter", seq( i, 10, vgroup("peak %i", component("bandfilter.dsp").bandfilter(1000*(1+i))) ) );
ac4e0a12f61247c7db65ac770da7edca85b9783a4cfe8d13bda099519dbf4a89
ntonnaett/guitarix
ts9sim.dsp
declare id "ts9sim"; declare name "Tube Screamer"; declare category "Distortion"; declare samplerate "96000"; /* ** based on a circuit diagram of the Ibanez TS-9 and ** a mathematical analysis published by Tamás Kenéz */ smoothi(c) = *(1-c) : +~*(c); process = ts9 : lowpass : *(gain) with { S...
https://raw.githubusercontent.com/ntonnaett/guitarix/e5ce36c3a693eeada3cb70425ec09f8d6f91e78c/trunk/src/plugins/ts9sim.dsp
faust
** based on a circuit diagram of the Ibanez TS-9 and ** a mathematical analysis published by Tamás Kenéz
declare id "ts9sim"; declare name "Tube Screamer"; declare category "Distortion"; declare samplerate "96000"; smoothi(c) = *(1-c) : +~*(c); process = ts9 : lowpass : *(gain) with { SR = component("math.lib").SR; R1 = 4700; R2 = 51000 + 500000 * hslider("drive[name:Drive]", 0.5, 0, 1, ...
afdca84a342deb138a4b56c7cd1761e5f41390f7872654d5831bc06d3a3869f7
Pro19/guitarix
hfb.dsp
// generated automatically // DO NOT MODIFY! declare id "hfb"; declare name "HF Brightener"; declare category "Tone Control"; declare shortname "HF Brighten"; declare description "High Frequency Brightener"; import("stdfaust.lib"); process = pre : fi.iir((b0/a0,b1/a0,b2/a0),(a1/a0,a2/a0)) with { LogPot(a, x) = ba...
https://raw.githubusercontent.com/Pro19/guitarix/b1c686212332d1ea40683262bf95ad2b486b2bb6/trunk/src/plugins/hfb.dsp
faust
generated automatically DO NOT MODIFY!
declare id "hfb"; declare name "HF Brightener"; declare category "Tone Control"; declare shortname "HF Brighten"; declare description "High Frequency Brightener"; import("stdfaust.lib"); process = 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); ...
56b9875ca038113d64c1ac68bcf223c045baa558ac0bc0902d482542f9be9167
Pro19/guitarix
hfb.dsp
// generated automatically // DO NOT MODIFY! declare id "hfb"; declare name "HF Brightener"; declare category "Tone Control"; declare shortname "HF Brightener"; declare description "High Frequency Brightener"; import("stdfaust.lib"); process = pre : fi.iir((b0/a0,b1/a0,b2/a0),(a1/a0,a2/a0)) with { LogPot(a, x) = ...
https://raw.githubusercontent.com/Pro19/guitarix/b1c686212332d1ea40683262bf95ad2b486b2bb6/trunk/src/LV2/faust/hfb.dsp
faust
generated automatically DO NOT MODIFY!
declare id "hfb"; declare name "HF Brightener"; declare category "Tone Control"; declare shortname "HF Brightener"; declare description "High Frequency Brightener"; import("stdfaust.lib"); process = 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);...
858d7d5284640c3dff9d1fa83e12403bfdae7e6348a15439919ff2ac17b03bf4
Pro19/guitarix
mole.dsp
// generated automatically // DO NOT MODIFY! declare id "mole"; declare name "The Mole"; declare category "Tone Control"; declare shortname "The Mole"; declare description "EHX Mole"; import("stdfaust.lib"); process = pre : _<:*(dry),(*(wet) : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0),(a1/a0,a2/a0,a3/a0))):>_ with { LogPo...
https://raw.githubusercontent.com/Pro19/guitarix/b1c686212332d1ea40683262bf95ad2b486b2bb6/trunk/src/LV2/faust/mole.dsp
faust
generated automatically DO NOT MODIFY!
declare id "mole"; declare name "The Mole"; declare category "Tone Control"; declare shortname "The Mole"; declare description "EHX Mole"; 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(a * x) - 1) / (exp(a)...
d08378a8107f6f265502d506995342c4cb29acf44d80809e92e2c80943808833
guysherman/Faust
volume.dsp
declare name "volume"; declare version "1.0"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2006"; //----------------------------------------------- // Volume control in dB //----------------------------------------------- import("music.lib"); smooth(c) = *(1-c) : +~*(c); gain ...
https://raw.githubusercontent.com/guysherman/Faust/4cac36e7fc493158e92946b3a840c4f611ac2844/tools/faust2pd/examples/faust/volume.dsp
faust
----------------------------------------------- Volume control in dB -----------------------------------------------
declare name "volume"; declare version "1.0"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2006"; import("music.lib"); smooth(c) = *(1-c) : +~*(c); gain = vslider(" dB ", 0, -96, 4, 0.1) : db2linear : smooth(0.999); process = vgroup("fader", *(gain));
06ddd5ec8d169641fc4adcd14861ad43e725289455af3764c99bd34afd290b32
ntonnaett/guitarix
stereoverb.dsp
declare name "Stereo Verb"; declare category "Reverb"; declare version "0.01"; declare author "brummer"; declare license "BSD"; declare copyright "(c)brummer 2008"; import("math.lib"); import("music.lib"); import("effect.lib"); import("filter.lib"); import("guitarix.lib"); /*--------------------------...
https://raw.githubusercontent.com/ntonnaett/guitarix/e5ce36c3a693eeada3cb70425ec09f8d6f91e78c/trunk/src/LV2/faust/stereoverb.dsp
faust
----------------------------------------------- freeverb by "Grame" ----------------------------------------------- Filter Parameters wetslider = 0.5 + vslider("wet_dry[name:wet/dry]", 0, -0.5, 0.5, 0.1); Reverb components ---------------------------------------------------------------- sine for left channel
declare name "Stereo Verb"; declare category "Reverb"; declare version "0.01"; declare author "brummer"; declare license "BSD"; declare copyright "(c)brummer 2008"; import("math.lib"); import("music.lib"); import("effect.lib"); import("filter.lib"); import("guitarix.lib"); combtuningL1 = 1116; combt...
6682ba93bf86d7e4490b7323b11048b9abe885353b399b0f881a3d437a36a2c2
ntonnaett/guitarix
hfb.dsp
// generated automatically // DO NOT MODIFY! declare id "hfb"; declare name "HF Brightener"; declare category "Tone Control"; declare shortname "HF Brighten"; declare description "High Frequency Brightener"; import("filter.lib"); process = pre : iir((b0/a0,b1/a0,b2/a0),(a1/a0,a2/a0)) with { LogPot(a, x) = if(a, (...
https://raw.githubusercontent.com/ntonnaett/guitarix/e5ce36c3a693eeada3cb70425ec09f8d6f91e78c/trunk/src/plugins/hfb.dsp
faust
generated automatically DO NOT MODIFY!
declare id "hfb"; declare name "HF Brightener"; declare category "Tone Control"; declare shortname "HF Brighten"; declare description "High Frequency Brightener"; import("filter.lib"); process = pre : iir((b0/a0,b1/a0,b2/a0),(a1/a0,a2/a0)) with { LogPot(a, x) = if(a, (exp(a * x) - 1) / (exp(a) - 1), x); Inver...
1fe99eaad9a3fc70b06b71c2c03661787addbeec1f13e146d87139b9fe7fa4f7
ntonnaett/guitarix
hogsfoot.dsp
// generated automatically // DO NOT MODIFY! declare id "hogsfoot"; declare name "Hogs Foot"; declare category "Tone Control"; declare shortname "Hogs Foot"; declare description "Hogs Foot Bass Booster"; import("filter.lib"); process = pre : _<:*(dry),(*(wet) : iir((b0/a0,b1/a0,b2/a0,b3/a0),(a1/a0,a2/a0,a3/a0))):>_ w...
https://raw.githubusercontent.com/ntonnaett/guitarix/e5ce36c3a693eeada3cb70425ec09f8d6f91e78c/trunk/src/plugins/hogsfoot.dsp
faust
generated automatically DO NOT MODIFY!
declare id "hogsfoot"; declare name "Hogs Foot"; declare category "Tone Control"; declare shortname "Hogs Foot"; declare description "Hogs Foot Bass Booster"; import("filter.lib"); process = pre : _<:*(dry),(*(wet) : iir((b0/a0,b1/a0,b2/a0,b3/a0),(a1/a0,a2/a0,a3/a0))):>_ with { LogPot(a, x) = if(a, (exp(a * x) - ...
4aa13015f1666f152d918af85217da0cbc875c9a383f7c8f51b5fee1ff55f4c6
ntonnaett/guitarix
buzz.dsp
// generated automatically // DO NOT MODIFY! declare id "buzz"; declare name "Buzz Box"; declare category "Fuzz"; declare shortname "Buzz Box"; declare description "Buzz Box"; import("filter.lib"); import("trany.lib"); process = pre : _<:*(dry),(*(wet) : iir((b0/a0,b1/a0,b2/a0,b3/a0),(a1/a0,a2/a0,a3/a0)) : clip):>_ w...
https://raw.githubusercontent.com/ntonnaett/guitarix/e5ce36c3a693eeada3cb70425ec09f8d6f91e78c/trunk/src/plugins/buzz.dsp
faust
generated automatically DO NOT MODIFY!
declare id "buzz"; declare name "Buzz Box"; declare category "Fuzz"; declare shortname "Buzz Box"; declare description "Buzz Box"; import("filter.lib"); import("trany.lib"); process = pre : _<:*(dry),(*(wet) : iir((b0/a0,b1/a0,b2/a0,b3/a0),(a1/a0,a2/a0,a3/a0)) : clip):>_ with { LogPot(a, x) = if(a, (exp(a * x) - ...
e5a44c89304210784b95402751c60a46942fbdfc44cf9fe0b7be8f36eba897b4
ntonnaett/guitarix
hogsfoot.dsp
// generated automatically // DO NOT MODIFY! declare id "hogsfoot"; declare name "Hogs Foot"; declare category "Tone Control"; declare shortname "Hogs Foot"; declare description "Hogs Foot Bass Booster"; import("filter.lib"); process = pre : _<:*(dry),(*(wet) : iir((b0/a0,b1/a0,b2/a0,b3/a0),(a1/a0,a2/a0,a3/a0))):>_ w...
https://raw.githubusercontent.com/ntonnaett/guitarix/e5ce36c3a693eeada3cb70425ec09f8d6f91e78c/trunk/src/LV2/faust/hogsfoot.dsp
faust
generated automatically DO NOT MODIFY!
declare id "hogsfoot"; declare name "Hogs Foot"; declare category "Tone Control"; declare shortname "Hogs Foot"; declare description "Hogs Foot Bass Booster"; import("filter.lib"); process = pre : _<:*(dry),(*(wet) : iir((b0/a0,b1/a0,b2/a0,b3/a0),(a1/a0,a2/a0,a3/a0))):>_ with { LogPot(a, x) = if(a, (exp(a * x) - ...
cc70440b6cb94d2b663809d2b5fc7c2974ce0ba50c5bbce33e8ba0fd99670f97
ntonnaett/guitarix
hfb.dsp
// generated automatically // DO NOT MODIFY! declare id "hfb"; declare name "HF Brightener"; declare category "Tone Control"; declare shortname "HF Brightener"; declare description "High Frequency Brightener"; import("filter.lib"); process = pre : iir((b0/a0,b1/a0,b2/a0),(a1/a0,a2/a0)) with { LogPot(a, x) = if(a,...
https://raw.githubusercontent.com/ntonnaett/guitarix/e5ce36c3a693eeada3cb70425ec09f8d6f91e78c/trunk/src/LV2/faust/hfb.dsp
faust
generated automatically DO NOT MODIFY!
declare id "hfb"; declare name "HF Brightener"; declare category "Tone Control"; declare shortname "HF Brightener"; declare description "High Frequency Brightener"; import("filter.lib"); process = pre : iir((b0/a0,b1/a0,b2/a0),(a1/a0,a2/a0)) with { LogPot(a, x) = if(a, (exp(a * x) - 1) / (exp(a) - 1), x); Inv...
19dc43fde26b7609894e68d7dd3de53a65a79d8aa7b7023e130341f70cff69fc
ntonnaett/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("math.lib"); import("music.lib"); import("effect.lib"); import("filter.lib"); import("guitar...
https://raw.githubusercontent.com/ntonnaett/guitarix/e5ce36c3a693eeada3cb70425ec09f8d6f91e78c/trunk/src/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("math.lib"); import("music.lib"); import("effect.lib"); import("filter.lib"); import("guitar...
fe61f8beb12cf13ef7ccbe9c042ba09e8843433250dd150e67e93786cba16e18
Pro19/guitarix
ts9sim.dsp
declare id "ts9sim"; declare name "Tube Screamer"; declare category "Distortion"; declare samplerate "96000"; import("stdfaust.lib"); /* ** based on a circuit diagram of the Ibanez TS-9 and ** a mathematical analysis published by Tamás Kenéz */ smoothi(c) = *(1-c) : +~*(c); process = ts9 : lowpa...
https://raw.githubusercontent.com/Pro19/guitarix/b1c686212332d1ea40683262bf95ad2b486b2bb6/trunk/src/plugins/ts9sim.dsp
faust
** based on a circuit diagram of the Ibanez TS-9 and ** a mathematical analysis published by Tamás Kenéz ma.SR = component("math.lib").ma.SR;
declare id "ts9sim"; declare name "Tube Screamer"; declare category "Distortion"; declare samplerate "96000"; import("stdfaust.lib"); smoothi(c) = *(1-c) : +~*(c); process = ts9 : lowpass : *(gain) with { R1 = 4700; R2 = 51000 + 500000 * hslider("drive[name:Drive]", 0.5, 0, 1, 0.01); ...
a3de4b0466bbb50b465651c324aa06f135382ab608a3143206de7a4b82292409
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/plugins/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...
03734c104d71e2acf8ee661347fe1f1ffcad774ca01259e10f2faee79e2de969
brummer10/guitarix
chorus.dsp
declare name "Chorus"; declare category "Modulation"; /* Stereo chorus. */ // declare name "chorus -- stereo chorus effect"; declare author "Albert Graef"; declare version "1.0"; import("stdfaust.lib"); level = hslider("level", 0.5, 0, 1, 0.01) : si.smooth(0.993); freq = hslider("freq", 3, 0, 10, 0.01) : si.smooth(...
https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/LV2/faust/chorus.dsp
faust
Stereo chorus. declare name "chorus -- stereo chorus effect";
declare name "Chorus"; declare category "Modulation"; declare author "Albert Graef"; declare version "1.0"; import("stdfaust.lib"); level = hslider("level", 0.5, 0, 1, 0.01) : si.smooth(0.993); freq = hslider("freq", 3, 0, 10, 0.01) : si.smooth(0.993); dtime = hslider("de.delay", 0.02, 0, 0.2, 0.01) : si.smooth(0.9...
587c1851ac723bd3bf77ea57fdf4a779d9b20f935fe77dab4bac897d65f33143
ntonnaett/guitarix
chorus.dsp
declare name "Chorus"; declare category "Modulation"; /* Stereo chorus. */ // declare name "chorus -- stereo chorus effect"; declare author "Albert Graef"; declare version "1.0"; import("music.lib"); level = hslider("level", 0.5, 0, 1, 0.01); freq = hslider("freq", 3, 0, 10, 0.01); dtime = hslider("delay", 0.02, 0,...
https://raw.githubusercontent.com/ntonnaett/guitarix/e5ce36c3a693eeada3cb70425ec09f8d6f91e78c/trunk/src/LV2/faust/chorus.dsp
faust
Stereo chorus. declare name "chorus -- stereo chorus effect";
declare name "Chorus"; declare category "Modulation"; declare author "Albert Graef"; declare version "1.0"; import("music.lib"); level = hslider("level", 0.5, 0, 1, 0.01); freq = hslider("freq", 3, 0, 10, 0.01); dtime = hslider("delay", 0.02, 0, 0.2, 0.01); depth = hslider("depth", 0.02, 0, 1, 0.01); tblosc(n,f,fr...
90d0f1536e99ef931e17fd6888f16810819631a2a490395896517156f2d65e39
guysherman/Faust
osc2.dsp
declare name "osc"; declare version "1.0"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2006"; //----------------------------------------------- // Sinusoidal Oscillator //----------------------------------------------- import("music.lib"); smooth(c) = *(1-c) : +~*(c); vol ...
https://raw.githubusercontent.com/guysherman/Faust/4cac36e7fc493158e92946b3a840c4f611ac2844/tools/faust2pd/examples/faust/osc2.dsp
faust
----------------------------------------------- Sinusoidal Oscillator -----------------------------------------------
declare name "osc"; declare version "1.0"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2006"; import("music.lib"); smooth(c) = *(1-c) : +~*(c); vol = hslider("volume (db)", 0, -96, 0, 0.1) : db2linear : smooth(0.999) ; freq = hslider("freq", 1000, 0, 24000, 0.1); proces...
9c800abefa380e0b6eea556de2d4ab0051e23ec93709fdad2ccd5becce1f4766
guysherman/Faust
select2.dsp
declare name "select2"; declare version "0.1"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2009"; //----------------------------------------------- // Two noises compared //----------------------------------------------- RANDMAX = 2147483647; random1 = ffunction(int random (), <...
https://raw.githubusercontent.com/guysherman/Faust/4cac36e7fc493158e92946b3a840c4f611ac2844/tests/mathdoc/select2.dsp
faust
----------------------------------------------- Two noises compared -----------------------------------------------
declare name "select2"; declare version "0.1"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2009"; RANDMAX = 2147483647; random1 = ffunction(int random (), <stdlib.h>, ""); noise1 = (random1 << 1) * (1.0/RANDMAX); random2 = (*(1103515245)+12345) ~ _ ; noise2 = random2 * (1.0/RAN...
4125a62f85ea92dc3b455ca0bc54eb896210fcab162fac91154058dd42915098
brummer10/guitarix
ruin.dsp
// generated automatically // DO NOT MODIFY! declare id "ruin"; declare name "Ruiner"; declare category "Fuzz"; declare shortname "Ruiner"; declare description "Devi Ever Dark Boost"; declare drywetbox "true"; declare samplerate "96000"; import("stdfaust.lib"); import("trany.lib"); ruinerp1 = pre : fi.iir((b0/a0,b1/a...
https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/plugins/ruin.dsp
faust
generated automatically DO NOT MODIFY! clip(x) = ((exp(x*4)-exp(-x*4*1.2))/(exp(x*4)+exp(-x*4)))/4; tclip = tranystageb(TB_SVEL34_68k,86.0,2700.0,25.922163) : tranystageb(TB_SVEL34_68k,86.0,2700.0,25.922163) ;
declare id "ruin"; declare name "Ruiner"; declare category "Fuzz"; declare shortname "Ruiner"; declare description "Devi Ever Dark Boost"; declare drywetbox "true"; declare samplerate "96000"; import("stdfaust.lib"); import("trany.lib"); ruinerp1 = pre : fi.iir((b0/a0,b1/a0,b2/a0),(a1/a0,a2/a0)) with { LogPot(a, ...
6b5a499e7d6f1a901187575d4dcef293be7405f3826e65e3e41d77b066c9be1f
steveb/gula-plugins
fades.dsp
declare name "The Fades"; declare author "Gula Plugins"; declare copyright "Steve Baker (2020)"; declare license "GPLv3"; declare description "An LV2 plugin which crossfades up to 4 inputs to one output"; import("gula.lib"); si = library("signals.lib"); raw_split = hslider("fade [name: Fade Proportion]", 1.0, 1.0, 4....
https://raw.githubusercontent.com/steveb/gula-plugins/6f19a85143af95d0d617197494418a3330f5579d/src/fades.dsp
faust
declare name "The Fades"; declare author "Gula Plugins"; declare copyright "Steve Baker (2020)"; declare license "GPLv3"; declare description "An LV2 plugin which crossfades up to 4 inputs to one output"; import("gula.lib"); si = library("signals.lib"); raw_split = hslider("fade [name: Fade Proportion]", 1.0, 1.0, 4....
cad5a39eb00b61f15e874a1b331265b1e1a25ea983c5fed76199a9beeae30915
steveb/gula-plugins
splits.dsp
declare name "The Splits"; declare author "Gula Plugins"; declare copyright "Steve Baker (2020)"; declare license "GPLv3"; declare description "An LV2 plugin which sends a controllable proportion of the input to each output"; import("gula.lib"); si = library("signals.lib"); raw_split = hslider("split [name: Split Pro...
https://raw.githubusercontent.com/steveb/gula-plugins/6f19a85143af95d0d617197494418a3330f5579d/src/splits.dsp
faust
declare name "The Splits"; declare author "Gula Plugins"; declare copyright "Steve Baker (2020)"; declare license "GPLv3"; declare description "An LV2 plugin which sends a controllable proportion of the input to each output"; import("gula.lib"); si = library("signals.lib"); raw_split = hslider("split [name: Split Pro...
e5a8acd7dfab0761fb53355fc1f52c3183f9e7428d4f705ad7c4b57c1a9d8b9b
brummer10/guitarix
chorus_mono.dsp
declare name "Chorus Mono"; declare category "Modulation"; declare author "Albert Graef"; declare version "1.0"; import("stdfaust.lib"); level = hslider("level", 0.5, 0, 1, 0.01); freq = hslider("freq", 2, 0, 10, 0.01); dtime = 0.02 ;//hslider("de.delay", 0.02, 0, 0.2, 0.01); depth = 0.02 ;//hslider("depth", 0.02, ...
https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/LV2/faust/chorus_mono.dsp
faust
hslider("de.delay", 0.02, 0, 0.2, 0.01); hslider("depth", 0.02, 0, 1, 0.01);
declare name "Chorus Mono"; declare category "Modulation"; declare author "Albert Graef"; declare version "1.0"; import("stdfaust.lib"); level = hslider("level", 0.5, 0, 1, 0.01); freq = hslider("freq", 2, 0, 10, 0.01); wet = vslider("wet_dry[name:wet/dry][tooltip:percentage of processed signal in output signal]", ...
58132cc61da8b3193ed5855e02fc0b1ef9022c2814e9455d5ea43af053617523
guysherman/Faust
osci.dsp
declare name "osci"; declare version "1.0"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2006"; //----------------------------------------------- // Sinusoidal Oscillator // (with linear interpolation) //----------------------------------------------- import("music.lib"); smo...
https://raw.githubusercontent.com/guysherman/Faust/4cac36e7fc493158e92946b3a840c4f611ac2844/tools/faust2pd/examples/faust/osci.dsp
faust
----------------------------------------------- Sinusoidal Oscillator (with linear interpolation) -----------------------------------------------
declare name "osci"; declare version "1.0"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2006"; import("music.lib"); smooth(c) = *(1-c) : +~*(c); vol = hslider("volume (db)", 0, -96, 0, 0.1) : db2linear : smooth(0.999) ; freq = hslider("freq", 1000, 0, 24000, 0.1); proce...
dc15ebe48cadd0787ccd0c05c82c64d36efb9eb6366d2cbdb742a6d463798777
guysherman/Faust
osc.dsp
declare name "osc"; declare version "1.0"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2009"; //----------------------------------------------- // Sinusoidal Oscillator //----------------------------------------------- import("music.lib"); smooth(c) = *(1-c) : +~*(c); vol ...
https://raw.githubusercontent.com/guysherman/Faust/4cac36e7fc493158e92946b3a840c4f611ac2844/examples/osc.dsp
faust
----------------------------------------------- Sinusoidal Oscillator -----------------------------------------------
declare name "osc"; declare version "1.0"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2009"; import("music.lib"); smooth(c) = *(1-c) : +~*(c); vol = hslider("volume [unit:dB]", 0, -96, 0, 0.1) : db2linear : smooth(0.999) ; freq = hslider("freq [unit:Hz]", 1000, 20, 24000...
958f724701b7058edb17d3bc46b6b91b8706eea4c02f45c632858e73bff7e40f
guysherman/Faust
select3.dsp
declare name "select3"; declare version "0.1"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2009"; //----------------------------------------------- // Three noises compared //----------------------------------------------- RANDMAX = 2147483647; random1 = ffunction(int random (),...
https://raw.githubusercontent.com/guysherman/Faust/4cac36e7fc493158e92946b3a840c4f611ac2844/tests/mathdoc/select3.dsp
faust
----------------------------------------------- Three noises compared -----------------------------------------------
declare name "select3"; declare version "0.1"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2009"; RANDMAX = 2147483647; random1 = ffunction(int random (), <stdlib.h>, ""); noise1 = (random1 << 1) * (1.0/RANDMAX); random2 = (*(1103515245)+12345) ~ _ ; noise2 = random2 * (1.0/RAN...
bce22dbcbe05d1e575b78ac6f52a0813521ecb8648e31aa5380f8a229049398a
guysherman/Faust
vumeter.dsp
declare name "vumeter"; declare version "1.0"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2006"; //------------------------------------------------- // Simple vumeter //------------------------------------------------- import("math.lib"); import("music.lib"); vmeter(x) = atta...
https://raw.githubusercontent.com/guysherman/Faust/4cac36e7fc493158e92946b3a840c4f611ac2844/examples/vumeter.dsp
faust
------------------------------------------------- Simple vumeter -------------------------------------------------
declare name "vumeter"; declare version "1.0"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2006"; import("math.lib"); import("music.lib"); vmeter(x) = attach(x, envelop(x) : vbargraph("[2][unit:dB]", -70, +5)); hmeter(x) = attach(x, envelop(x) : hbargraph("[2][unit:dB]", -70,...
187bfdc8ee16f8d5993f7adb919dd03474dc1c82a4c3ef435f99493874eb2b3a
s-e-a-m/faust-libraries
miditester.dsp
declare name "MICHAEL GERZON LCR PANNING"; declare version "001"; declare author "Giuseppe Silvi"; declare license "GNU-GPL-v3"; declare copyright "(c)SEAM 2019"; declare description "MICHAEL GERZON LCR PANNING"; declare options "[midi:on]"; import("stdfaust.lib"); import("../../seam.lib"); process = miditester;
https://raw.githubusercontent.com/s-e-a-m/faust-libraries/9120cccb9335f42407062eb4bf149188d8018b07/examples/app/miditester.dsp
faust
declare name "MICHAEL GERZON LCR PANNING"; declare version "001"; declare author "Giuseppe Silvi"; declare license "GNU-GPL-v3"; declare copyright "(c)SEAM 2019"; declare description "MICHAEL GERZON LCR PANNING"; declare options "[midi:on]"; import("stdfaust.lib"); import("../../seam.lib"); process = miditester;
0744857f344c8be4c05f07f9ea5e120a6befa63cc3c5c55bffae79c276fd10d5
ntonnaett/guitarix
gain.dsp
declare id "gain"; declare name "Volume"; declare category "Tone Control"; declare description "simple volume control"; import("music.lib"); import("guitarix.lib"); gain = vslider("gain[name:Gain][tooltip:gain (dB)]", 0, -40, 40, 0.1) : db2linear : smoothi(0.999); process = *(gain);
https://raw.githubusercontent.com/ntonnaett/guitarix/e5ce36c3a693eeada3cb70425ec09f8d6f91e78c/trunk/src/faust/gain.dsp
faust
declare id "gain"; declare name "Volume"; declare category "Tone Control"; declare description "simple volume control"; import("music.lib"); import("guitarix.lib"); gain = vslider("gain[name:Gain][tooltip:gain (dB)]", 0, -40, 40, 0.1) : db2linear : smoothi(0.999); process = *(gain);
89d66c50db0cce2726f612a067afc0a82653729f378abd8e10f9f02ca41130e2
guysherman/Faust
osci.dsp
declare name "osci"; declare version "1.0"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2009"; //----------------------------------------------- // Sinusoidal Oscillator // (with linear interpolation) //----------------------------------------------- import("music.lib"); smo...
https://raw.githubusercontent.com/guysherman/Faust/4cac36e7fc493158e92946b3a840c4f611ac2844/examples/osci.dsp
faust
----------------------------------------------- Sinusoidal Oscillator (with linear interpolation) -----------------------------------------------
declare name "osci"; declare version "1.0"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2009"; import("music.lib"); smooth(c) = *(1-c) : +~*(c); vol = hslider("volume [unit:dB]", 0, -96, 0, 0.1) : db2linear : smooth(0.999) ; freq = hslider("freq [uni...
b738965546d8f3173e5c7f6832d4bbfc72da42c057e26dbfbf0f74c2a6cb72d9
brummer10/guitarix
echo.dsp
declare name "Echo"; declare category "Echo / Delay"; declare version "0.01"; declare author "brummer"; declare license "BSD"; declare copyright "(c)brummer 2008"; import("stdfaust.lib"); t = vslider("time", 1, 1, 2000, 1); release = vslider("percent", 0, 0, 100, 0.1); echo1 = +~(de.delay(131072, int(t*ba....
https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/LV2/faust/echo.dsp
faust
declare name "Echo"; declare category "Echo / Delay"; declare version "0.01"; declare author "brummer"; declare license "BSD"; declare copyright "(c)brummer 2008"; import("stdfaust.lib"); t = vslider("time", 1, 1, 2000, 1); release = vslider("percent", 0, 0, 100, 0.1); echo1 = +~(de.delay(131072, int(t*ba....
85920c5d9e7c4430cf3ea4f1d43e32bc7fa236feceee28bdfc4b7e739bf27eea
ntonnaett/guitarix
lpbboost.dsp
// generated automatically // DO NOT MODIFY! declare id "lpbboost"; declare name "LPB-1 Booster"; declare category "Tone Control"; declare shortname "LPB-1 Boost"; declare description "LPB-1 Linear Power Booster "; import("filter.lib"); process = pre : iir((b0/a0,b1/a0,b2/a0),(a1/a0,a2/a0)) with { LogPot(a, x) = ...
https://raw.githubusercontent.com/ntonnaett/guitarix/e5ce36c3a693eeada3cb70425ec09f8d6f91e78c/trunk/src/plugins/lpbboost.dsp
faust
generated automatically DO NOT MODIFY!
declare id "lpbboost"; declare name "LPB-1 Booster"; declare category "Tone Control"; declare shortname "LPB-1 Boost"; declare description "LPB-1 Linear Power Booster "; import("filter.lib"); process = pre : iir((b0/a0,b1/a0,b2/a0),(a1/a0,a2/a0)) with { LogPot(a, x) = if(a, (exp(a * x) - 1) / (exp(a) - 1), x); ...
66fbe62ccd0e2413c0a066d00d89b17af0f35588c663fd5cdf59beda892675d6
ntonnaett/guitarix
scream.dsp
// generated automatically // DO NOT MODIFY! declare id "scream"; declare name "Screaming Bird"; declare category "Distortion"; declare shortname "Scream Bird"; declare description "Screaming Bird"; import("filter.lib"); process = pre : iir((b0/a0,b1/a0,b2/a0),(a1/a0,a2/a0)) : clip with { LogPot(a, x) = if(a, (e...
https://raw.githubusercontent.com/ntonnaett/guitarix/e5ce36c3a693eeada3cb70425ec09f8d6f91e78c/trunk/src/LV2/faust/scream.dsp
faust
generated automatically DO NOT MODIFY!
declare id "scream"; declare name "Screaming Bird"; declare category "Distortion"; declare shortname "Scream Bird"; declare description "Screaming Bird"; import("filter.lib"); process = pre : iir((b0/a0,b1/a0,b2/a0),(a1/a0,a2/a0)) : clip with { LogPot(a, x) = if(a, (exp(a * x) - 1) / (exp(a) - 1), x); Invert...
624969546004acfd3606e45d87917e21af6e9497cbabf94ae894cb9bb9b65e3e
ntonnaett/guitarix
ruin.dsp
// generated automatically // DO NOT MODIFY! declare id "ruin"; declare name "Ruiner"; declare category "Fuzz"; declare shortname "Ruiner"; declare description "Devi Ever Dark Boost"; declare drywetbox "true"; declare samplerate "96000"; import("filter.lib"); import("trany.lib"); ruinerp1 = pre : iir((b0/a0,b1/a0,b2...
https://raw.githubusercontent.com/ntonnaett/guitarix/e5ce36c3a693eeada3cb70425ec09f8d6f91e78c/trunk/src/plugins/ruin.dsp
faust
generated automatically DO NOT MODIFY! clip(x) = ((exp(x*4)-exp(-x*4*1.2))/(exp(x*4)+exp(-x*4)))/4;
declare id "ruin"; declare name "Ruiner"; declare category "Fuzz"; declare shortname "Ruiner"; declare description "Devi Ever Dark Boost"; declare drywetbox "true"; declare samplerate "96000"; import("filter.lib"); import("trany.lib"); ruinerp1 = pre : iir((b0/a0,b1/a0,b2/a0),(a1/a0,a2/a0)) with { LogPot(a, x) =...
d2baabb6c16623e44a2180b1850d3fcdf32a1856e75902452073f67b002766cd
guysherman/Faust
dbmeter.dsp
declare name "dbmeter"; declare version "1.0"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2006"; //------------------------------------------------- // A dB Vumeter //------------------------------------------------- import("math.lib"); import("music.lib"); vmeter(x) = attach...
https://raw.githubusercontent.com/guysherman/Faust/4cac36e7fc493158e92946b3a840c4f611ac2844/tools/faust2pd/examples/faust/dbmeter.dsp
faust
------------------------------------------------- A dB Vumeter -------------------------------------------------
declare name "dbmeter"; declare version "1.0"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2006"; import("math.lib"); import("music.lib"); vmeter(x) = attach(x, envelop(x) : vbargraph("dB", -96, 10)); hmeter(x) = attach(x, envelop(x) : hbargraph("dB", -96, 10)); envelop = ...
3caf988c5b653c6d3e7add1e8d03973d62b5c276f567f0ade20962ccd6dd5d14
guysherman/Faust
matrix.dsp
declare name "matrix"; declare version "1.0"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2006"; //----------------------------------------------- // Audio Matrix : N inputs x M outputs //----------------------------------------------- import("music.lib"); Fader(in) = db2linear...
https://raw.githubusercontent.com/guysherman/Faust/4cac36e7fc493158e92946b3a840c4f611ac2844/tools/faust2pd/examples/faust/matrix.dsp
faust
----------------------------------------------- Audio Matrix : N inputs x M outputs -----------------------------------------------
declare name "matrix"; declare version "1.0"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2006"; import("music.lib"); Fader(in) = db2linear(vslider("Input %in", -10, -96, 4, 0.1)); Mixer(N,out) = hgroup("Output %out", par(in, N, *(Fader(in)) ) :> _ ); Matrix(N,M) = tgroup ("M...
03b6c68021bba8424e30e3b04039381f8f0189bc08dd622af6e4784fb9e4c9c6
guysherman/Faust
switcher.dsp
declare name "switch"; declare version "1.0"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2007"; //----------------------------------------------- // Switch between two stereo sources. // Useful to compare these two sources // The parameter c\in{0,1} indicates the // channels to...
https://raw.githubusercontent.com/guysherman/Faust/4cac36e7fc493158e92946b3a840c4f611ac2844/examples/switcher.dsp
faust
----------------------------------------------- Switch between two stereo sources. Useful to compare these two sources The parameter c\in{0,1} indicates the channels to select -----------------------------------------------
declare name "switch"; declare version "1.0"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2007"; switch(c,x0,x1,y0,y1) = sel(c,x0,y0), sel(c,x1,y1) with { sel(c,x,y) = (1-c)*x + c*y; }; process = switch(hslider("source 0 <-> source 1",0,0,1,1));
7330a4b389c4d44fb7f2811947954d2f2aec4aa3b0a1fb4ea9b5603852f59b88
DerouineauNicolas/Guitarix
distortion2.dsp
declare name "WaveSharper"; declare category "Distortion"; declare id "distortion2"; declare description "A simple Wavesharper distortion"; import("math.lib"); import("music.lib"); import("effect.lib"); import("filter.lib"); import("guitarix.lib"); //----------distortion--------- bread = highp...
https://raw.githubusercontent.com/DerouineauNicolas/Guitarix/59ae60efd2118b0c86ac985f3d655ed2620510c6/trunk/src/faust/distortion2.dsp
faust
----------distortion---------
declare name "WaveSharper"; declare category "Distortion"; declare id "distortion2"; declare description "A simple Wavesharper distortion"; import("math.lib"); import("music.lib"); import("effect.lib"); import("filter.lib"); import("guitarix.lib"); bread = highpass(2,f) : lowpass(1,6532) with ...
4607d591bc99f03a8396766b09b1481bf700dababfd9c02b781e6a678da64b43
guysherman/Faust
mixer.dsp
declare name "mixer"; declare version "1.0"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2006"; //------------------------------------------------- // Simple 8x2 mixer //------------------------------------------------- vol = component("volume.dsp"); pan = component("panpot.d...
https://raw.githubusercontent.com/guysherman/Faust/4cac36e7fc493158e92946b3a840c4f611ac2844/tools/faust2pd/examples/faust/mixer.dsp
faust
------------------------------------------------- Simple 8x2 mixer -------------------------------------------------
declare name "mixer"; declare version "1.0"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2006"; vol = component("volume.dsp"); pan = component("panpot.dsp"); vumeter = component("vumeter.dsp").vmeter; mute = *(1 - checkbox("mute")); voice(v) = vgroup("voice %v", m...
dc3481b819045541e1c544b5ad9187b7c7bd4f80457cd2fa261fc52259888661
guysherman/Faust
OneSourceToStereo.dsp
declare name "OneSourceToStereo"; declare version "1.0"; declare author "CICM"; declare license "BSD"; declare copyright "(c)CICM 2013"; import("hoa.lib") ; import("filter.lib") ; import("oscillator.lib"); r1 = hslider("Radius", 1.0, 0, 5, 0.001) : smooth(tau2pole(0.02)); a1 = hslider("Angle", 62831, -6.283185...
https://raw.githubusercontent.com/guysherman/Faust/4cac36e7fc493158e92946b3a840c4f611ac2844/examples/OneSourceToStereo.dsp
faust
declare name "OneSourceToStereo"; declare version "1.0"; declare author "CICM"; declare license "BSD"; declare copyright "(c)CICM 2013"; import("hoa.lib") ; import("filter.lib") ; import("oscillator.lib"); r1 = hslider("Radius", 1.0, 0, 5, 0.001) : smooth(tau2pole(0.02)); a1 = hslider("Angle", 62831, -6.283185...
72d159f380130dc84302920c739830a126119e00067264c94215a0ab09bd3602
unclechu/guitarix
gx_distortion.dsp
declare name "Multi Band Distortion"; declare shortname "Distortion"; declare category "Distortion"; declare groups "resonator[Distortion resonator]"; declare gladefile "gx_distortion_ui.glade"; declare version "0.01"; declare author "brummer"; declare license "BSD"; declare copyright "(c)brum...
https://raw.githubusercontent.com/unclechu/guitarix/630e762d480264619919b8b9c69d64f5b6f83da3/trunk/src/faust/gx_distortion.dsp
faust
********************************************************************* *** this part is included here for backward compatibility from 0.9.27 to *** 0.9.24 ********************************************************************** ------------------------------ count and take -------------------------------------- ---------...
declare name "Multi Band Distortion"; declare shortname "Distortion"; declare category "Distortion"; declare groups "resonator[Distortion resonator]"; declare gladefile "gx_distortion_ui.glade"; declare version "0.01"; declare author "brummer"; declare license "BSD"; declare copyright "(c)brum...
13334be768a67802ad344e73d594e2accd437273b8d22a4d10a3b2e6e6db58ea
maximalexanian/guitarix-vst
digital_delay.dsp
declare id "dide"; declare name "Digital Delay"; declare shortname "Digi Delay"; declare category "Echo / Delay"; declare description "Digital Delay"; import("stdfaust.lib"); import("guitarix.lib"); guitarboost = fi.highpass(3,80) : fi.peak_eq(-3,200,50): fi.peak_eq(1.5,375,125) : fi.peak_eq(3,2000,500) : fi.peak_eq...
https://raw.githubusercontent.com/maximalexanian/guitarix-vst/83fd0cbec9588fb2ef47d80f7c6cb0775bfb9f89/guitarix/src/faust/digital_delay.dsp
faust
declare id "dide"; declare name "Digital Delay"; declare shortname "Digi Delay"; declare category "Echo / Delay"; declare description "Digital Delay"; import("stdfaust.lib"); import("guitarix.lib"); guitarboost = fi.highpass(3,80) : fi.peak_eq(-3,200,50): fi.peak_eq(1.5,375,125) : fi.peak_eq(3,2000,500) : fi.peak_eq...
d3095d395e4068bc953f0aa10cb7906a8176dbe7457455d8d8ed8d103b70f1be
ntonnaett/guitarix
mxrdist.dsp
declare id "mxrdis"; declare name "MXR Distortion Plus"; declare shortname "MXR+"; declare category "Distortion"; declare samplerate "96000"; SR = component("math.lib").SR; s = 0.993; fs = float(SR); drive = 0.75 + hslider("drive[name:Drive]", 0.5, 0, 1, 0.01) * 0.25 : component("filter.lib").smooth(...
https://raw.githubusercontent.com/ntonnaett/guitarix/e5ce36c3a693eeada3cb70425ec09f8d6f91e78c/trunk/src/plugins/mxrdist.dsp
faust
declare id "mxrdis"; declare name "MXR Distortion Plus"; declare shortname "MXR+"; declare category "Distortion"; declare samplerate "96000"; SR = component("math.lib").SR; s = 0.993; fs = float(SR); drive = 0.75 + hslider("drive[name:Drive]", 0.5, 0, 1, 0.01) * 0.25 : component("filter.lib").smooth(...
23d37e5fab44e5614e72553a4aa4cac946cea6336ae3adf44902740b8fb35db2
guysherman/Faust
pitch_shifter.dsp
declare name "pitch-shifter"; declare version "1.0"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2006"; //---------------------------- // very simple real time pitch shifter //---------------------------- import("music.lib"); transpose (w, x, s, sig) = fdelay1s(d,sig)*fmin(...
https://raw.githubusercontent.com/guysherman/Faust/4cac36e7fc493158e92946b3a840c4f611ac2844/examples/pitch_shifter.dsp
faust
---------------------------- very simple real time pitch shifter ----------------------------
declare name "pitch-shifter"; declare version "1.0"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2006"; import("music.lib"); transpose (w, x, s, sig) = fdelay1s(d,sig)*fmin(d/x,1) + fdelay1s(d+w,sig)*(1-fmin(d/x,1)) with { i = 1 - pow(2, s/12); d = i : (+ : +(w) : f...
22876a496a81e58c7fb15866a5c90cdf3d65d005a1f1daa42a62fd0850975ac4
guysherman/Faust
mixer.dsp
declare name "mixer"; declare version "1.0"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2006"; //------------------------------------------------- // Simple 8x2 mixer //------------------------------------------------- vol = component("volume.dsp"); pan = component("panpot.d...
https://raw.githubusercontent.com/guysherman/Faust/4cac36e7fc493158e92946b3a840c4f611ac2844/examples/mixer.dsp
faust
------------------------------------------------- Simple 8x2 mixer -------------------------------------------------
declare name "mixer"; declare version "1.0"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2006"; vol = component("volume.dsp"); pan = component("panpot.dsp"); vumeter = component("vumeter.dsp").vmeter; mute = *(1 - checkbox("mute")); voice(v) = vgroup("Ch %v", mute...
abc3ea7ecf7ec8460bdfd494c3e206fd297e8c3266c0ef7fc0c9cd99e76457b6
EnvelopSound/EnvelopForLive
bformat2ambix3.dsp
//declare name "ADT_Adapter_Matrix"; // done below declare version "1.0"; declare author "AmbisonicDecoderToolkit"; declare license "BSD 3-Clause License"; declare copyright "(c) Aaron J. Heller 2014"; /* Copyright (c) 2014, Aaron J. Heller All rights reserved. Redistribution and use in source and binary forms, ...
https://raw.githubusercontent.com/EnvelopSound/EnvelopForLive/c52831a8835b55105f52783fa371ab27a0fe4b4e/patchers/remote/bformat2ambix3%7E.mxo/bformat2ambix3.dsp
faust
declare name "ADT_Adapter_Matrix"; // done below Copyright (c) 2014, Aaron J. Heller All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright n...
declare version "1.0"; declare author "AmbisonicDecoderToolkit"; declare license "BSD 3-Clause License"; declare copyright "(c) Aaron J. Heller 2014"; gain(c) = R(c) with { R((c,cl)) = R(c),R(cl); R(1) = _; R(float(0)) = R(0); R(float(1)) = R(1); R(c) = *(c); }; matrix(n,m) = par(i,n,_) <: p...
d0ece81f539f786d599104fc63fa46c7caad5ac288ecf19ea404ed770525c50f
EnvelopSound/EnvelopForLive
fuma2ambix3.dsp
//declare name "ADT_Adapter_Matrix"; // done below declare version "1.0"; declare author "AmbisonicDecoderToolkit"; declare license "BSD 3-Clause License"; declare copyright "(c) Aaron J. Heller 2014"; /* Copyright (c) 2014, Aaron J. Heller All rights reserved. Redistribution and use in source and binary forms, ...
https://raw.githubusercontent.com/EnvelopSound/EnvelopForLive/c52831a8835b55105f52783fa371ab27a0fe4b4e/patchers/remote/fuma2ambix3%7E.mxo/fuma2ambix3.dsp
faust
declare name "ADT_Adapter_Matrix"; // done below Copyright (c) 2014, Aaron J. Heller All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright n...
declare version "1.0"; declare author "AmbisonicDecoderToolkit"; declare license "BSD 3-Clause License"; declare copyright "(c) Aaron J. Heller 2014"; gain(c) = R(c) with { R((c,cl)) = R(c),R(cl); R(1) = _; R(0) = !; R(float(0)) = R(0); R(float(1)) = R(1); R(c) = *(c); }; matrix(n,m) ...
7c5780caeb55e75b6197b4b04dabff31fd69eb693e8e80dd4ebbd793c7651bcc
smoge/gxplugins
echo.dsp
//declare name "emptty"; declare version "0.01"; declare author "brummer"; declare license "BSD"; declare copyright "(c)brummer 2008"; import("math.lib"); import("music.lib"); import("effect.lib"); import("filter.lib"); t = vslider("time", 1, 1, 2000, 1); release = vslider("percent", 0, 0, 100, 0.1); echo1 ...
https://raw.githubusercontent.com/smoge/gxplugins/30a5160ff626975aa521a316cd33f973e3bc5d0c/echo.dsp
faust
declare name "emptty";
declare version "0.01"; declare author "brummer"; declare license "BSD"; declare copyright "(c)brummer 2008"; import("math.lib"); import("music.lib"); import("effect.lib"); import("filter.lib"); t = vslider("time", 1, 1, 2000, 1); release = vslider("percent", 0, 0, 100, 0.1); echo1 = +~(delay(131072, int(t...
18f2db9857b5ccdc7da9a0cf3ff497bdd7dd8e849e36cb1db41e40cffd440e11
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"); 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/mbdel.dsp
faust
: 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"); import("reducemaps.lib"); hifr1 =hslider("crossover_b1_b2 [log][name:Crossover B1-B2 (hz)][tooltip: Crossover fi.bandpass frequency]" ...
991378a2914bde27d591971ef82621a304d97b3ce50eb8599dddf59f5bd25b08
brummer10/guitarix
mbe.dsp
declare id "mbe"; declare name "MultiBand Echo"; declare shortname "MB Echo"; declare category "Echo / Delay"; declare description "Multi Band Echo"; import("stdfaust.lib"); import("reducemaps.lib"); hifr1 =hslider("crossover_b1_b2 [log][name:Crossover B1-B2 (hz)][tooltip: Crossover fi.bandpass frequency]" ,80 ,...
https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/plugins/mbe.dsp
faust
: max(ba.db2linear(-70)) : ba.linear2db;
declare id "mbe"; declare name "MultiBand Echo"; declare shortname "MB Echo"; declare category "Echo / Delay"; declare description "Multi Band Echo"; import("stdfaust.lib"); import("reducemaps.lib"); hifr1 =hslider("crossover_b1_b2 [log][name:Crossover B1-B2 (hz)][tooltip: Crossover fi.bandpass frequency]" ,80 ,...
4df5f38af2bc9f669ab0917b7dd531b783f732ee458f9b1b147bde1d529ccfd8
brummer10/guitarix
mbe.dsp
declare id "mbe"; declare name "MultiBand Echo"; declare shortname "MB Echo"; declare category "Echo / Delay"; declare description "Multi Band Echo"; import("stdfaust.lib"); rd = library("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/LV2/faust/mbe.dsp
faust
envelop = abs : max ~ (1.0/ma.SR) : mean(4096) ; // : max(ba.db2linear(-70)) : ba.linear2db;
declare id "mbe"; declare name "MultiBand Echo"; declare shortname "MB Echo"; declare category "Echo / Delay"; declare description "Multi Band Echo"; import("stdfaust.lib"); rd = library("reducemaps.lib"); hifr1 =hslider("crossover_b1_b2 [log][name:Crossover B1-B2 (hz)][tooltip: Crossover fi.bandpass frequency]"...