_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
5a78fa94189b37392308c9a3e3f0b2b71acea47d1ef74a2a8934e862fea8a9b5
rmichon/cph-fall22
logic.dsp
import("stdfaust.lib"); import("static.dsp"); /** * Cochlear implant simulation setup */ // setup of noise-band processor noise(N) = _,no.noise <: s :> fi.lowpass6e(5000) with { n(f,bw) = noiseband(f,bw), bandpass(f,bw) : *; s = run_par(n,N); }; // setup of sinewave processor sine(N) = _ <: s :> _ with { ...
https://raw.githubusercontent.com/rmichon/cph-fall22/b60a72e34af35709c92dfd3bb559d9b1c1a546d4/final-projects/ch_steinhauer/logic.dsp
faust
* * Cochlear implant simulation setup setup of noise-band processor setup of sinewave processor modulate envelope of signal with noise modulate envelope of signal with sinewave * * Helper functions and algorithms lowpass filter bandpass filter Envelope extraction * * General util functions run stuff in paral...
import("stdfaust.lib"); import("static.dsp"); noise(N) = _,no.noise <: s :> fi.lowpass6e(5000) with { n(f,bw) = noiseband(f,bw), bandpass(f,bw) : *; s = run_par(n,N); }; sine(N) = _ <: s :> _ with { s = run_par(sinewave,N); }; noiseband(f,bw) = lowpass(6,1200) : bandpass(f,bw) : envelope : lowpass(2,16...
4aff6a104bdae7cddfdfbb7ce4bc28d56765cdb54bda1e145670551edcbc188a
JoeWrightMusic/QuickNDirtyFaustSynths
Descending-Swoosh-Flutter.dsp
import("stdfaust.lib"); //____________________________________________________________________________________SubtractiveSwoosh/Perc darkness = hslider("darkness", 1500, 100, 15000, 1); trig = button("trig"); freqDelta = hslider("freqDeltaMult",-1400,-14000,14000,1); att = hslider("att", 0.01, 0, 15, 0.01); rel = hsl...
https://raw.githubusercontent.com/JoeWrightMusic/QuickNDirtyFaustSynths/995047809aaaa0083340cdbcb727ceae0fc01a88/Basic/Descending-Swoosh-Flutter.dsp
faust
____________________________________________________________________________________SubtractiveSwoosh/Perc
import("stdfaust.lib"); darkness = hslider("darkness", 1500, 100, 15000, 1); trig = button("trig"); freqDelta = hslider("freqDeltaMult",-1400,-14000,14000,1); att = hslider("att", 0.01, 0, 15, 0.01); rel = hslider("rel", 0.01, 0, 15, 0.01); rampT = att+rel; switchRampT = rampT*trig; line = darkness+(freqDelta*trig)...
7303d20f469d63249474cc5696fce5493522428158e29129b5c13b6640d38d44
JDCAudio/Stray_virtual-synth
inprog.dsp
import("stdfaust.lib"); dirac = 1-1'; //@ is a delay, delaying by the sample rate makes the click happen //at one second after opening program process = dirac, ma.SR : @;
https://raw.githubusercontent.com/JDCAudio/Stray_virtual-synth/05d2947279ac4b170d71f6604c9dd9ca6d6bfc15/FaustTests/FaustFamiliarization/inprog.dsp
faust
@ is a delay, delaying by the sample rate makes the click happen at one second after opening program
import("stdfaust.lib"); dirac = 1-1'; process = dirac, ma.SR : @;
a87c3cf0f535c7c47daa7c2fbe34a767bc9c0d4461221ee10d9b71a9066281c7
JDCAudio/Stray_virtual-synth
meter.dsp
import("stdfaust.lib"); meter = _ <: _, display : attach with { envelope = abs: min(1.00) : max ~ -(1.0/ma.SR); display = envelope : hbargraph("meter", 0, 1); }; process = os.osc(440) : _ * hslider("level",0,0,1,0.001) : meter;
https://raw.githubusercontent.com/JDCAudio/Stray_virtual-synth/05d2947279ac4b170d71f6604c9dd9ca6d6bfc15/FaustTests/FaustFamiliarization/meter.dsp
faust
import("stdfaust.lib"); meter = _ <: _, display : attach with { envelope = abs: min(1.00) : max ~ -(1.0/ma.SR); display = envelope : hbargraph("meter", 0, 1); }; process = os.osc(440) : _ * hslider("level",0,0,1,0.001) : meter;
6e5004019380803ca57c7283b810af8a2506edabbe00a41dad8a746f81763bdb
DISTRHO/Fadeli
delayEcho-tapiir.dsp
declare name "tapiir"; declare version "1.0"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2006"; //====================================================== // // TAPIIR // (from Maarten de Boer's Tapiir) // //=======================================...
https://raw.githubusercontent.com/DISTRHO/Fadeli/055c3ce39d95046fafa492a50b9e9a6ca597d7a4/dsp/delayEcho-tapiir.dsp
faust
====================================================== TAPIIR (from Maarten de Boer's Tapiir) ====================================================== user interface --------------- mixer and matrix ----------------------------------------------------------- tapiir --------
declare name "tapiir"; declare version "1.0"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2006"; import("stdfaust.lib"); dsize = 524288; tap(n) = vslider("tap %n", 0,0,1,0.1); in(n) = vslider("input %n", 1,0,1,0.1); gain = vslider("gain", 1,0,1,0.1); del = vslide...
67f5abf96b1dd765430662fa980c4ad72d05d71414431aa31e8085190d26214d
madskjeldgaard/komet
hhylde.dsp
// High shelf filter import("stdfaust.lib"); import("filters.lib"); high_freq = vslider("freq",8000,10,20000,0.01); high_level = vslider("level",0,-96,96,0.01); process = high_shelf(high_level, high_freq);
https://raw.githubusercontent.com/madskjeldgaard/komet/defd9b0b2f4055dcb12b75565631a30152fa779c/faust/hhylde.dsp
faust
High shelf filter
import("stdfaust.lib"); import("filters.lib"); high_freq = vslider("freq",8000,10,20000,0.01); high_level = vslider("level",0,-96,96,0.01); process = high_shelf(high_level, high_freq);
581aca50c9153dd3f3255c4261e4ecc2ca56b16e4d368a691fd946d4b8e620fb
madskjeldgaard/komet
lhylde.dsp
// Low shelf filter import("stdfaust.lib"); import("filters.lib"); low_freq = vslider("freq",8000,10,20000,0.01); low_level = vslider("level",0,-96,96,0.01); process = low_shelf(low_level, low_freq);
https://raw.githubusercontent.com/madskjeldgaard/komet/defd9b0b2f4055dcb12b75565631a30152fa779c/faust/lhylde.dsp
faust
Low shelf filter
import("stdfaust.lib"); import("filters.lib"); low_freq = vslider("freq",8000,10,20000,0.01); low_level = vslider("level",0,-96,96,0.01); process = low_shelf(low_level, low_freq);
181d701a9eedd428dfed46a3a27eb368a6145c1520e9b51111c273ee05e80b8f
JDCAudio/Stray_virtual-synth
organ.dsp
import("stdfaust.lib"); freq = hslider("freq",440,50,1000,0.01); gain = hslider("gain",0.5,0,1,0.01); timbre(f) = os.osc(f)*0.5 + os.osc(f*2)*0.25 + os.osc(f*3)*0.125; process = gain*timbre(freq);
https://raw.githubusercontent.com/JDCAudio/Stray_virtual-synth/05d2947279ac4b170d71f6604c9dd9ca6d6bfc15/FaustTests/FaustFamiliarization/organ.dsp
faust
import("stdfaust.lib"); freq = hslider("freq",440,50,1000,0.01); gain = hslider("gain",0.5,0,1,0.01); timbre(f) = os.osc(f)*0.5 + os.osc(f*2)*0.25 + os.osc(f*3)*0.125; process = gain*timbre(freq);
c9c246e05a390d36cbb06b1dc0e24d6b46a6ad85a17bfac79849b0ea90a927c5
ChekPuk/chekpuk_pedals
truescreamer.dsp
import("stdfaust.lib"); declare name "TrueScreamer"; declare version "0.1"; declare author "ChekPuk"; declare description "Tebubescreamerish pedal, closest to my dreams of right pedal"; declare license "GPL 3.0+"; bias = hslider("t:[2]/v:advanced/[0]Bias voltage",0,-4.5,4.5,0.001); boost = hslider("t:[2]/v:advanced/[1...
https://raw.githubusercontent.com/ChekPuk/chekpuk_pedals/0bacb082952e0c8ab3d15e57b97a6fced8b20f77/truescreamer.dsp
faust
import("stdfaust.lib"); declare name "TrueScreamer"; declare version "0.1"; declare author "ChekPuk"; declare description "Tebubescreamerish pedal, closest to my dreams of right pedal"; declare license "GPL 3.0+"; bias = hslider("t:[2]/v:advanced/[0]Bias voltage",0,-4.5,4.5,0.001); boost = hslider("t:[2]/v:advanced/[1...
c789f5beb4c136a1afc81f63d24a963e1c81a98010ebe4862b8c59e238b6c8b5
Sylcantor/wam-web-components
DualPitchShifter.dsp
declare name "Dual Pitch Shifter"; declare description "Dual Channel pitch shifter, based on Faust pitch_shifter.dsp by Grame"; declare author "Oli Larkin (contact@olilarkin.co.uk)"; declare copyright "Oliver Larkin"; declare version "0.1"; declare licence "GPL"; import("stdfaust.lib"); msec = ma.SR/1000.0; shiftl = ...
https://raw.githubusercontent.com/Sylcantor/wam-web-components/c54352dae5b80bcf6d8d4c306ea22e2c91a12b08/plugins/DualPitchShifter/DualPitchShifter.dsp
faust
declare name "Dual Pitch Shifter"; declare description "Dual Channel pitch shifter, based on Faust pitch_shifter.dsp by Grame"; declare author "Oli Larkin (contact@olilarkin.co.uk)"; declare copyright "Oliver Larkin"; declare version "0.1"; declare licence "GPL"; import("stdfaust.lib"); msec = ma.SR/1000.0; shiftl = ...
d06104dec41500364c23e3d7ebc01ce2591578a1ac3606287cc4358ba30123fb
Sylcantor/wam-web-components
blipper.dsp
declare name "Blipper"; declare description "Envelope Follower controlling pitch of a triangle oscillator, good with percussive input"; declare author "Oli Larkin (contact@olilarkin.co.uk)"; declare copyright "Oliver Larkin"; declare version "0.2"; declare licence "GPL"; import("stdfaust.lib"); basepitch = hslider("B...
https://raw.githubusercontent.com/Sylcantor/wam-web-components/c54352dae5b80bcf6d8d4c306ea22e2c91a12b08/plugins/blipper/blipper.dsp
faust
attack = hslider("Attack [unit:ms] [OWL:PARAMETER_C]", 2, 2, 1000, 1) : *(0.001) : max(1.0/float(ma.SR));
declare name "Blipper"; declare description "Envelope Follower controlling pitch of a triangle oscillator, good with percussive input"; declare author "Oli Larkin (contact@olilarkin.co.uk)"; declare copyright "Oliver Larkin"; declare version "0.2"; declare licence "GPL"; import("stdfaust.lib"); basepitch = hslider("B...
2d3656114807e4fa5ff252f65e9e5bf3453e4ccc28fbb785a1eb06497cf25929
JaoRamos/Faust
jaoAmp.dsp
declare name "Simulador de Amp Jao medio bit"; declare version "0.1"; declare author "Jao Corporation"; declare description "Simulador de Amp Jao medio bit"; import("stdfaust.lib"); gain = hslider("Gain", 40, 1, 200, 0.1); prefiltro = hslider("Pasaaltos pre", 1400, 20, 1500, 10); agudos = hslider("Parlante (pasabajo...
https://raw.githubusercontent.com/JaoRamos/Faust/eb06f70ff4cf2765c23b12d0d6ce5f93b4ee468c/sueltos/jaoAmp.dsp
faust
declare name "Simulador de Amp Jao medio bit"; declare version "0.1"; declare author "Jao Corporation"; declare description "Simulador de Amp Jao medio bit"; import("stdfaust.lib"); gain = hslider("Gain", 40, 1, 200, 0.1); prefiltro = hslider("Pasaaltos pre", 1400, 20, 1500, 10); agudos = hslider("Parlante (pasabajo...
475c7431c8fe2b87db0b71cb8cfba81b1df75bbc046a8510e7bacc514d7bee43
JuanSaudio/Blog
SNRTest.dsp
import("stdfaust.lib"); rmsEst = _ <: * : si.smooth(ba.tau2pole(1)) : sqrt : ba.linear2db; oscRmsMeter = _ <: attach(_, vbargraph("Osc RMS[unit:dB]", -30, 6)); noiseRmsMeter = _ <: attach(_, vbargraph("Noise RMS[unit:dB]", -30, 6)); snrMeter = _ <: attach(_, vbargraph("SNR", -40, 40)); oscGain = vslider("[1]Gain",...
https://raw.githubusercontent.com/JuanSaudio/Blog/c447373273a251fc66985781e30245401dfcfa37/SNR/SNRTest.dsp
faust
import("stdfaust.lib"); rmsEst = _ <: * : si.smooth(ba.tau2pole(1)) : sqrt : ba.linear2db; oscRmsMeter = _ <: attach(_, vbargraph("Osc RMS[unit:dB]", -30, 6)); noiseRmsMeter = _ <: attach(_, vbargraph("Noise RMS[unit:dB]", -30, 6)); snrMeter = _ <: attach(_, vbargraph("SNR", -40, 40)); oscGain = vslider("[1]Gain",...
e2964611f58c4ba7f794b351aa29ccea019e3d876ab7d9915d90bed73a518325
JoeWrightMusic/QuickNDirtyFaustSynths
Kick-or-Drone.dsp
import("stdfaust.lib"); //____________________________________________________________________________________KICK / DRONE-GLISS trig = button("trig"); rampT = hslider("rampT", 0.1, 0, 20, 0.01); freq = hslider("freq", 370, 10, 600, 1); freqDelta = hslider("freqDelta", -300, -1000,1000,1); att = hslider("att", 0.01, 0...
https://raw.githubusercontent.com/JoeWrightMusic/QuickNDirtyFaustSynths/91c683e6af748334f66403775d7bce617c15f11f/Basic/Kick-or-Drone.dsp
faust
____________________________________________________________________________________KICK / DRONE-GLISS
import("stdfaust.lib"); trig = button("trig"); rampT = hslider("rampT", 0.1, 0, 20, 0.01); freq = hslider("freq", 370, 10, 600, 1); freqDelta = hslider("freqDelta", -300, -1000,1000,1); att = hslider("att", 0.01, 0, 15, 0.01); rel = hslider("rel", 0.01, 0, 15, 0.01); switchRampT = rampT*trig; line = freq+(freqDelta*t...
8a196017e12654711be3ac19bb17bf8164d259d98b58aaab3939f3482b848dd5
inria-emeraude/syfala
flanger.dsp
import("stdfaust.lib"); process = dm.flanger_demo;
https://raw.githubusercontent.com/inria-emeraude/syfala/95ed6765d73520362f6a1ad35e4a3b2a5e16fbc9/examples/flanger.dsp
faust
import("stdfaust.lib"); process = dm.flanger_demo;
7da5376f9f0d4213b15e5a30a5070142e9853fa7d8e9b73df6c63d61c17f6ec9
tomara-x/magi
nested-pars.dsp
import("stdfaust.lib"); //perfuma my darling! clkmult(f,l) = par(i,N,ba.take(i+1,l)*f) : par(i,N,ba.beat) with { N = ba.count(l); }; // process = clkmult(137, (0.001,1,2,4)); //one-line witch list = par(j,4,par(i,4, (0,1,i+j,3))); // (0,1,0,3,0,1,1,3,0,1,2,3,0,1,3,3, // 0,1,1,3,0,1,2,3,0,1,3,3,0,1,4,3, // 0,1,...
https://raw.githubusercontent.com/tomara-x/magi/bcf22a4ef23899cd8ce3bf5e08e374994907f81a/practice/nested-pars.dsp
faust
perfuma my darling! process = clkmult(137, (0.001,1,2,4)); one-line witch (0,1,0,3,0,1,1,3,0,1,2,3,0,1,3,3, 0,1,1,3,0,1,2,3,0,1,3,3,0,1,4,3, 0,1,2,3,0,1,3,3,0,1,4,3,0,1,5,3, 0,1,3,3,0,1,4,3,0,1,5,3,0,1,6,3) nah, bad idea process = trace(trig, (0,3,1,3,4,4,(4,4,5),5));
import("stdfaust.lib"); clkmult(f,l) = par(i,N,ba.take(i+1,l)*f) : par(i,N,ba.beat) with { N = ba.count(l); }; list = par(j,4,par(i,4, (0,1,i+j,3))); process = list :> _; trig = ba.beat(137); trace(t,l) = ba.if(c==1,n,trace(t,n)) with { i = ba.counter(t); n = l : ba.selectn(ba.count(l),i); c = ba.co...
60ba9b739847a214d5860ce88e25a616e49ab31589a433315a40e02c4c88d634
inria-emeraude/syfala
fir.dsp
import("stdfaust.lib"); N=100; process = fi.fir(par(i,N,i/N)) ;
https://raw.githubusercontent.com/inria-emeraude/syfala/95ed6765d73520362f6a1ad35e4a3b2a5e16fbc9/examples/fir.dsp
faust
import("stdfaust.lib"); N=100; process = fi.fir(par(i,N,i/N)) ;
64a6395c4acedcbe0b0d8ba8151d57389ad8c09f2d36560d1ca8e5d433865199
inria-emeraude/syfala
firN.dsp
import("stdfaust.lib"); N = 350; process = fi.fir(par(i,N,i/N));
https://raw.githubusercontent.com/inria-emeraude/syfala/95ed6765d73520362f6a1ad35e4a3b2a5e16fbc9/tools/multiN/dsp/firN.dsp
faust
import("stdfaust.lib"); N = 350; process = fi.fir(par(i,N,i/N));
af8efbcde198ce57d09a7a299ef4f9b93dd592a13e20eeafc410a4808320e154
chevremaudite/zosimos
filterUI.dsp
//-----------------FILTER----------------// //Multimode resonant filter, available for all 8 voices //--------------PARAMETERS: // 1 - Filter Type : Type of filter (LP, HP, BP ,???) // 2 - Cutoff : Filter cutoff // 3 - Resonance : Filter resonance // 4 - Mix : Filter mix import("stdfaust.lib"); import("filter.lib"...
https://raw.githubusercontent.com/chevremaudite/zosimos/0da322fb7df2f7a86f568cdc3dfe416a69be8b5b/SOFTWARE/FAUST/ui/filterUI.dsp
faust
-----------------FILTER----------------// Multimode resonant filter, available for all 8 voices --------------PARAMETERS: 1 - Filter Type : Type of filter (LP, HP, BP ,???) 2 - Cutoff : Filter cutoff 3 - Resonance : Filter resonance 4 - Mix : Filter mix
import("stdfaust.lib"); import("filter.lib"); process = filter(type, cutoff, res, mix) with{ type = hslider("[0]Filter Type[style:menu{'LP':0;'HP':1;'BP':2}]", 0, 0,2,1); cutoff = exp(vslider("[1]Cutoff[style:knob]", log(10000),log(1),log((48000/2)-2000),0.01):si.smoo); res = vslider("[2]Resonance[style:knob]",...
9171684359706b352e6094fd3ff4e2c94297303eb76d37346f0cc1eb746cf1f2
inria-emeraude/syfala
phasor.dsp
import("stdfaust.lib"); counter = +(0.01) ~ _; process = fmod(counter, 1) * 0.125 <: _,_;
https://raw.githubusercontent.com/inria-emeraude/syfala/95ed6765d73520362f6a1ad35e4a3b2a5e16fbc9/examples/phasor.dsp
faust
import("stdfaust.lib"); counter = +(0.01) ~ _; process = fmod(counter, 1) * 0.125 <: _,_;
3dae30d7c7f74ee77065db8d62e57f1f0c6795c8fc8067249327bd088848ea69
johannphilippe/grame_cnsmd_2023
ixa.dsp
import("stdfaust.lib"); round(sig) = floor(sig), ceil(sig) : select2( (sig -floor(sig)) > 0.5 ); wavefolder(sig) = 4 * (abs(0.25 * sig + 0.25 - round(0.25 * sig + 0.25))-0.25); pulse(x, t) = 0, 1 :select2( t >= (x*0.5) & t < x ); weird_wave(t) = (2 * pulse(0.5, t) - 1)*sin( 2*ma.PI * fmod(t, 0.5)) ...
https://raw.githubusercontent.com/johannphilippe/grame_cnsmd_2023/cf7a34a36c456eef87963c584384296c8c441a27/ixa/ixa.dsp
faust
import("stdfaust.lib"); round(sig) = floor(sig), ceil(sig) : select2( (sig -floor(sig)) > 0.5 ); wavefolder(sig) = 4 * (abs(0.25 * sig + 0.25 - round(0.25 * sig + 0.25))-0.25); pulse(x, t) = 0, 1 :select2( t >= (x*0.5) & t < x ); weird_wave(t) = (2 * pulse(0.5, t) - 1)*sin( 2*ma.PI * fmod(t, 0.5)) ...
6e867513410507d363c8e1d13bf12199979f1f6c78a787d5a2a1a67e21c9257f
Trzyszcz/Langley
bassdrum.dsp
declare name "bassdrum"; declare nvoices "16"; import("stdfaust.lib"); freq = nentry("frequency", 40, 20, 20000, 0.001); gain = nentry("gain", 1, 0, 1, 0.001); gate = button("gate"); attack = nentry("attack", 0.001, 0, 2, 0.001); decay = nentry("decay", 0.1, 0.001, 3, 0.001); freq_decay = nentry("freq_decay", 0.1, 0...
https://raw.githubusercontent.com/Trzyszcz/Langley/45c7fc8876ac8396304192faed35b80326abe331/Instruments/BassDrum/bassdrum.dsp
faust
dry_sound = (gate : en.ar(attack, decay)) * gain * (no.noise : fi.resonlp(freq + (freq*freq_slide* (gate:en.ar(0, freq_decay)) ), 5, 1));
declare name "bassdrum"; declare nvoices "16"; import("stdfaust.lib"); freq = nentry("frequency", 40, 20, 20000, 0.001); gain = nentry("gain", 1, 0, 1, 0.001); gate = button("gate"); attack = nentry("attack", 0.001, 0, 2, 0.001); decay = nentry("decay", 0.1, 0.001, 3, 0.001); freq_decay = nentry("freq_decay", 0.1, 0...
9915ce2a253e86c0e6654371976cd9c848689c951e46e2bd7cb03ac34a2d5c2b
inria-emeraude/syfala
echoN.dsp
import ("stdfaust.lib"); N = 48; process = _ <: par(i, N, ef.echo(1, 0.06 + i/100, 0.90)) :> _,_;
https://raw.githubusercontent.com/inria-emeraude/syfala/95ed6765d73520362f6a1ad35e4a3b2a5e16fbc9/tools/multiN/dsp/echoN.dsp
faust
import ("stdfaust.lib"); N = 48; process = _ <: par(i, N, ef.echo(1, 0.06 + i/100, 0.90)) :> _,_;
cebc2abf092bfdba78e188729e87dd5318f7b2b725082b2f99636a6d44b7adcd
tomara-x/magi
take_one.dsp
//this is terrible, saved for logging purposes import("stdfaust.lib"); node(init,t,scale) = scale : ba.selectn(n,c%n) with{ c = init + ba.counter(t); n = ba.count(scale); }; trigseq(t,n) = t : ba.selectoutn(n,ba.counter(t)%n); T = ba.beat(137); //yeah, she's our witch C = ba.counter(T); N = 8; sequence(t) ...
https://raw.githubusercontent.com/tomara-x/magi/bcf22a4ef23899cd8ce3bf5e08e374994907f81a/practice/take_one.dsp
faust
this is terrible, saved for logging purposes yeah, she's our witch
import("stdfaust.lib"); node(init,t,scale) = scale : ba.selectn(n,c%n) with{ c = init + ba.counter(t); n = ba.count(scale); }; trigseq(t,n) = t : ba.selectoutn(n,ba.counter(t)%n); C = ba.counter(T); N = 8; sequence(t) = node(0,t,qu.lydian); process = trigseq(T,N) : par(i,N, i,_,qu.lydian : node) : ba.selec...
8e2981911cb8991618d4b1f7efa6abb50ab8cd81fd3dc79bf494d53ffd09ec18
Sylcantor/wam-web-components
OwlShimmer.dsp
declare name "Owlgazer Shimmer Reverb"; declare version "1.0.0"; declare author "Xavier Godart"; declare copyright "(c) Empirical Noises 2017"; import("stdfaust.lib"); owlgazer(mix,decay,hicut,pitchmix) = _,_ <: ( _,_ <: (si.bus(N*2) :> networkline)~(feedbackline) :> *(mix),*(mix...
https://raw.githubusercontent.com/Sylcantor/wam-web-components/c54352dae5b80bcf6d8d4c306ea22e2c91a12b08/plugins/OwlShimmer/OwlShimmer.dsp
faust
declare name "Owlgazer Shimmer Reverb"; declare version "1.0.0"; declare author "Xavier Godart"; declare copyright "(c) Empirical Noises 2017"; import("stdfaust.lib"); owlgazer(mix,decay,hicut,pitchmix) = _,_ <: ( _,_ <: (si.bus(N*2) :> networkline)~(feedbackline) :> *(mix),*(mix...
4ef5a590f6179c1032a021bc52599d2dced6acd4a029ec652c3cc23744312522
madskjeldgaard/komet
krossover4.dsp
// Linkwitz riley based band splitter import("stdfaust.lib"); process = fi.crossover4LR4(cf1, cf2, cf3) with{ cf1 = vslider("crossoverFreq1",1500,10,20000,0.001); cf2 = vslider("crossoverFreq2",2500,10,20000,0.001); cf3 = vslider("crossoverFreq3",5500,10,20000,0.001); };
https://raw.githubusercontent.com/madskjeldgaard/komet/defd9b0b2f4055dcb12b75565631a30152fa779c/faust/krossover4.dsp
faust
Linkwitz riley based band splitter
import("stdfaust.lib"); process = fi.crossover4LR4(cf1, cf2, cf3) with{ cf1 = vslider("crossoverFreq1",1500,10,20000,0.001); cf2 = vslider("crossoverFreq2",2500,10,20000,0.001); cf3 = vslider("crossoverFreq3",5500,10,20000,0.001); };
b2c1f3299f9346632399e9fb5f4faf86eb0bdedd89c2007a0242b6cd2f0f8b16
JDCAudio/Stray_virtual-synth
polyorgan.dsp
import("stdfaust.lib"); freq = hslider("freq",440,50,1000,0.01); gain = hslider("gain",0.5,0,1,0.01); gate = button("gate") : en.adsr(0.01,0.01,0.9,0.1); timbre(f) = os.osc(f)*0.5 + os.osc(f*2)*0.25 + os.osc(f*3)*0.125; process = gain*gate*timbre(freq)*0.5;
https://raw.githubusercontent.com/JDCAudio/Stray_virtual-synth/05d2947279ac4b170d71f6604c9dd9ca6d6bfc15/FaustTests/FaustFamiliarization/polyorgan.dsp
faust
import("stdfaust.lib"); freq = hslider("freq",440,50,1000,0.01); gain = hslider("gain",0.5,0,1,0.01); gate = button("gate") : en.adsr(0.01,0.01,0.9,0.1); timbre(f) = os.osc(f)*0.5 + os.osc(f*2)*0.25 + os.osc(f*3)*0.125; process = gain*gate*timbre(freq)*0.5;
499f27e87663d2d6ec6b517dadc77e09669e6585244d7a90315f8755c0f3bf1e
madskjeldgaard/mkfaustplugins
mkdelay.dsp
import("stdfaust.lib"); import("../../lib/mkfilters.dsp"); mkd = environment { // "Natural comb" - aka a comb filter with a onepole LPF in the feedback path comblpf(order, maxdelay, delay, fb, lpfcutoff) = (+ : de.fdelayltv(order, maxdelay, delay)) ~ (* (fb) : mkf.onepolelpf(lpfcutoff)); // X number ...
https://raw.githubusercontent.com/madskjeldgaard/mkfaustplugins/6b838d0b10832081b85a6cd921c564e89288b13e/lib/mkdelay.dsp
faust
"Natural comb" - aka a comb filter with a onepole LPF in the feedback path X number of parallel "natural combs". Multi channel out Same as above but with each comb panned in stereo
import("stdfaust.lib"); import("../../lib/mkfilters.dsp"); mkd = environment { comblpf(order, maxdelay, delay, fb, lpfcutoff) = (+ : de.fdelayltv(order, maxdelay, delay)) ~ (* (fb) : mkf.onepolelpf(lpfcutoff)); parallel_comb_lpf(numDelays, order, maxdelay, delay, delayOffset, fb, lpf) = par(delayNu...
35822c8a39d92386d302d30fea475f88b8f14ecfe0e6ffacb6d8534126d933bc
brummer10/ModularAmpToolKit.lv2
champ.dsp
// generated automatically // DO NOT MODIFY! declare id "camp"; declare name "Single ended 6V6GT"; declare shortname "Champ"; declare description "Single ended 6V6GT"; declare samplerate "96000"; import("stdfaust.lib"); p1 = pre : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0),(a1/a0,a2/a0,a3/a0)) : tweedchampclip with { LogPo...
https://raw.githubusercontent.com/brummer10/ModularAmpToolKit.lv2/6a27486df4392b32cdf2efb59fe9049f57c399f6/PowerAmps/dsp/champ.dsp
faust
generated automatically DO NOT MODIFY!
declare id "camp"; declare name "Single ended 6V6GT"; declare shortname "Champ"; declare description "Single ended 6V6GT"; declare samplerate "96000"; import("stdfaust.lib"); p1 = pre : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0),(a1/a0,a2/a0,a3/a0)) : tweedchampclip with { LogPot(a, x) = ba.if(a, (exp(a * x) - 1) / (exp(a)...
efce6ec936d0d6296e26edbdf13b72b116202697f1810d395e9fdd8249c09bb9
inria-emeraude/syfala
karplus_simple.dsp
import("stdfaust.lib"); // Karplus Strong (1/2) process = ba.pulse(20) : + ~ transformation <: _,_; transformation = @(5) : moyenne; moyenne(x) = (x+x')/2;
https://raw.githubusercontent.com/inria-emeraude/syfala/95ed6765d73520362f6a1ad35e4a3b2a5e16fbc9/examples/karplus_simple.dsp
faust
Karplus Strong (1/2)
import("stdfaust.lib"); process = ba.pulse(20) : + ~ transformation <: _,_; transformation = @(5) : moyenne; moyenne(x) = (x+x')/2;
3440f34d0ca3bae46a7bfdb9eca81462f35d48480106606d3ad0987fd83faeb6
JDCAudio/Stray_virtual-synth
drywet.dsp
import("stdfaust.lib"); //has a syntax code somewhere, but shows the idea of a dry wet controll echo(d,f) = + ~ (@(d)) : *(f)); drywet(fx) = _ <: _, fx : *(1-w) , *(w) :> _ with { w = vslider("dry-wet[style:knob]",0.5,0,1,0.01); }; process = button("play") : pm.djembe(60,0.3,0.4,1) : drywet(echo(44100/4,0.75)); ...
https://raw.githubusercontent.com/JDCAudio/Stray_virtual-synth/05d2947279ac4b170d71f6604c9dd9ca6d6bfc15/FaustTests/FaustFamiliarization/drywet.dsp
faust
has a syntax code somewhere, but shows the idea of a dry wet controll
import("stdfaust.lib"); echo(d,f) = + ~ (@(d)) : *(f)); drywet(fx) = _ <: _, fx : *(1-w) , *(w) :> _ with { w = vslider("dry-wet[style:knob]",0.5,0,1,0.01); }; process = button("play") : pm.djembe(60,0.3,0.4,1) : drywet(echo(44100/4,0.75));
e5d0b8a13be62b14c3268725f06e6bff76454fcc5956738769cc7490fde92139
inria-emeraude/syfala
through32.dsp
import("stdfaust.lib"); N = 32; sources = hgroup("main",par(i,N,*(hslider("[%i]gain%i[style:knob]",0.5,0,1,0.01)))); process = _,_ <: sources;
https://raw.githubusercontent.com/inria-emeraude/syfala/7bbb09ecb912c9a66bcb85ebe35590e2b46e51d5/examples/wfs/through32.dsp
faust
import("stdfaust.lib"); N = 32; sources = hgroup("main",par(i,N,*(hslider("[%i]gain%i[style:knob]",0.5,0,1,0.01)))); process = _,_ <: sources;
f7806eed42558e5ff7afe7d8a4578431c44d49b8f204e584988f2e814f34238f
antgrabowski/leap-viola
violinModel.dsp
import("stdfaust.lib"); // Violin model violinModel(stringLength,bowPressure,bowVelocity,bowPosition) = pm.endChain(modelChain) with{ stringTuning = 0.08; stringL = stringLength-stringTuning; modelChain = pm.chain( violinNuts : bowedString(stringL,bowPressure,bowVelocity,bowPosition) : ...
https://raw.githubusercontent.com/antgrabowski/leap-viola/afabf9d726ee57c0007fe9054c88d5a56f0c8157/violinModel.dsp
faust
Violin model Violin string upper portion of the string length lower portion of the string length String segment with interpolation Violin body Interface V = hslider("Velocity", 0.2, 0, 1, 0.01) : si.smoo; Res =500; process process = violinModel(L,P,bowingInput,Pos),violinModel(L*2/3,P,bowingInput,Pos):>_/2<...
import("stdfaust.lib"); violinModel(stringLength,bowPressure,bowVelocity,bowPosition) = pm.endChain(modelChain) with{ stringTuning = 0.08; stringL = stringLength-stringTuning; modelChain = pm.chain( violinNuts : bowedString(stringL,bowPressure,bowVelocity,bowPosition) : pm.violinBr...
80bf55410575365b0c335eba0b71687a0094e204e8fe531cefaeb9e8e4eda9f3
rottingsounds/bitDSP-faust
dsm2_svg.dsp
import("stdfaust.lib"); integrator = fi.pole(1); Q(x) = ba.if(x < 0, -1, 1); process(x) = ((x - _ : integrator) - _ * 2 : integrator : Q) ~ (_ <: _ , _);
https://raw.githubusercontent.com/rottingsounds/bitDSP-faust/c436ecad29c57d46d5e3e59110c25e71a3761fc5/test/dsm2_svg.dsp
faust
import("stdfaust.lib"); integrator = fi.pole(1); Q(x) = ba.if(x < 0, -1, 1); process(x) = ((x - _ : integrator) - _ * 2 : integrator : Q) ~ (_ <: _ , _);
af5e34e6f6949f97fda10aaae6720abcf6632e642a43b39ed6819b2c4491a336
inria-emeraude/syfala
dist.dsp
import("stdfaust.lib"); drive = hslider("drive",0,0,1,0.01); offset = hslider("offset",0,-1,1,0.01); process = ef.cubicnl(drive,offset) <: _,_;
https://raw.githubusercontent.com/inria-emeraude/syfala/95ed6765d73520362f6a1ad35e4a3b2a5e16fbc9/examples/dist.dsp
faust
import("stdfaust.lib"); drive = hslider("drive",0,0,1,0.01); offset = hslider("offset",0,-1,1,0.01); process = ef.cubicnl(drive,offset) <: _,_;
ada48665afdd5786a18e8263bab61838c2428739ffa0b615f878b2d92387e664
LucaSpanedda/Musical_Studies_of_Chaotic_Systems
1.04_Lorenz_Costrained.dsp
// import Standard Faust library // https://github.com/grame-cncm/faustlibraries/ import("stdfaust.lib"); // DC Blocker: zero value, pole value, input // The dcblocker is a small recursive filter specified by the difference equation // It is needed to remove the dc component of the signal. dcblocker(zero,pole,x) = x :...
https://raw.githubusercontent.com/LucaSpanedda/Musical_Studies_of_Chaotic_Systems/d8b78c011cc0b2b75f74643eba78306d6a3f92df/1.04_Lorenz_Costrained.dsp
faust
import Standard Faust library https://github.com/grame-cncm/faustlibraries/ DC Blocker: zero value, pole value, input The dcblocker is a small recursive filter specified by the difference equation It is needed to remove the dc component of the signal. ma.EPSILON is a constant number for avoid nan numbers ma.EPSI...
import("stdfaust.lib"); dcblocker(zero,pole,x) = x : dcblockerout with{ onezero = _ <: _,mem : _,*(zero) : -; onepole = + ~ *(pole); dcblockerout = _ : onezero : onepole; }; saturator(treshold,x) = treshold*ma.tanh(x/(max(treshold,ma.EPSILON))); lorenz(x0,y0,z0,sigma,rho,beta,dt,l) = loop ~ si.bus(3) : ...
6acc40956a433ab02a211672a732e287d4acb48863c9ca6c6b1f446f01ba953f
tomara-x/magi
seqdist.dsp
//trans rights import("stdfaust.lib"); trig2gate(t,time) = t : ba.peakholder(ba.sec2samp(time)); bpm = 86; htrig = ba.beat(bpm*3); hbeat = ba.cycle(12, htrig) : _,!,!,!,_,!,!,!,_,!,!,! :> _; hat = sy.hat(3100,18e3,0.0005,0,hbeat); ktrig = ba.beat(bpm*8); kbeat = ba.cycle(32, ktrig) : par(i,3,_,_,!,!,!,!,!,!),_,_,_...
https://raw.githubusercontent.com/tomara-x/magi/43f5af6acb97973b3b82004f433925851b44d7d0/practice/seqdist.dsp
faust
trans rights
import("stdfaust.lib"); trig2gate(t,time) = t : ba.peakholder(ba.sec2samp(time)); bpm = 86; htrig = ba.beat(bpm*3); hbeat = ba.cycle(12, htrig) : _,!,!,!,_,!,!,!,_,!,!,! :> _; hat = sy.hat(3100,18e3,0.0005,0,hbeat); ktrig = ba.beat(bpm*8); kbeat = ba.cycle(32, ktrig) : par(i,3,_,_,!,!,!,!,!,!),_,_,_,!,!,_,!,! :> _...
c4e3586e42060a9f830f693e916fda7a1fa32b64692fb4b886f6cc513caeddf2
publicsamples/Quetzalcoatl
Folder.dsp
import("stdfaust.lib"); import("basics.lib"); import("maths.lib"); fold = hslider("fold", 0, 0, 1, 0.001): si.smooth(0.999); offset = hslider("offset", 0, -1, 1, 0.001): si.smooth (0.999); LP = hslider("lowpass", 0, 0, 1, 0.001): lin2LogGain: si.smooth (0.999); scale(x,mn,mx,a,b) = a+(b-a)*(x-mn)/(mx-mn); R1 = (10., ...
https://raw.githubusercontent.com/publicsamples/Quetzalcoatl/e080b08abc36c7d9aeaa85ac66bea21904171d75/Quetzalcoatl/DspNetworks/CodeLibrary/faust/Folder.dsp
faust
fi.bandpass(1,20,16000); folderBranches(sig) = sig <: par(i, 5, invClip(sig,i));
import("stdfaust.lib"); import("basics.lib"); import("maths.lib"); fold = hslider("fold", 0, 0, 1, 0.001): si.smooth(0.999); offset = hslider("offset", 0, -1, 1, 0.001): si.smooth (0.999); LP = hslider("lowpass", 0, 0, 1, 0.001): lin2LogGain: si.smooth (0.999); scale(x,mn,mx,a,b) = a+(b-a)*(x-mn)/(mx-mn); R1 = (10., ...
cca83cea0ff1f968918bc3670bf8c7376aaac216b6fba8a7a707753e7dd5a4fc
inria-emeraude/syfala
bell.dsp
import("stdfaust.lib"); t60 = 30; excitation = button("gate [switch:5]") : ba.impulsify; process = excitation : pm.frenchBellModel(6,0,t60,1,2.5);
https://raw.githubusercontent.com/inria-emeraude/syfala/95ed6765d73520362f6a1ad35e4a3b2a5e16fbc9/examples/bell.dsp
faust
import("stdfaust.lib"); t60 = 30; excitation = button("gate [switch:5]") : ba.impulsify; process = excitation : pm.frenchBellModel(6,0,t60,1,2.5);
80cc60e63820313fa61ccc59808805281a272f1a118b32be38134d49a71d0d6e
droosenb/faust-wdf-library
chuaDiode.dsp
//Chua's diode circuit //original circuit featuring Chua's diode taken from Kurt Werner thesis //for reference, see Meerkotter and Scholz, "Digital Simulation of Nonlinear Circuits by Wave Digital Filter Principles" wdf = library("wdmodels.lib"); import("stdfaust.lib"); //create circuit components c1(i) = wdf.capaci...
https://raw.githubusercontent.com/droosenb/faust-wdf-library/e581eb15b7b06572add939c6aa99472cca04269b/examples/chua-diode/chuaDiode.dsp
faust
Chua's diode circuit original circuit featuring Chua's diode taken from Kurt Werner thesis for reference, see Meerkotter and Scholz, "Digital Simulation of Nonlinear Circuits by Wave Digital Filter Principles" create circuit components resistance must be slightly higher than original document, currently unsure why. I...
wdf = library("wdmodels.lib"); import("stdfaust.lib"); c1(i) = wdf.capacitor_output(i, 5.5*10^(-9)); l3(i) = wdf.inductor_output(i, 7.07*10^(-3)); c4(i) = wdf.capacitor_output(i, 49.5*10^(-9)); d1(i) = wdf.u_chua(i, -500*10^-6, -800*10^-6, 1); vInject(i) = wdf.series_voltage(i, button("impulse")*5 : ba.impulsify); t...
9619fabbfc1a556b7725160435e321943c5873cb485d8843c57d45f93311c654
Trzyszcz/Langley
gong.dsp
declare name "Gong"; declare nvoices "16"; import("stdfaust.lib"); freq = nentry("freq", 110, 20, 20000, 0.01); gain = nentry("gain", 0.3, 0, 10, 0.01) : si.smoo; gate = button("gate"); //gate = os.lf_imptrain(1) : en.ar(0.001, 0.15); initgain = nentry("initgain", 0.3, 0, 10, 0.01) : si.smoo; //RightHorizontal = hsl...
https://raw.githubusercontent.com/Trzyszcz/Langley/ceb05551af996ad90090e91669b1a1af491b3fe1/Instruments/Gong/gong.dsp
faust
gate = os.lf_imptrain(1) : en.ar(0.001, 0.15); RightHorizontal = hslider("righthorizontal", 0.5, 0, 1, 0.01); RightVertical = hslider("rightvertical", 0.5, 0, 1, 0.01); mod_ind = 2 * RightHorizontal;
declare name "Gong"; declare nvoices "16"; import("stdfaust.lib"); freq = nentry("freq", 110, 20, 20000, 0.01); gain = nentry("gain", 0.3, 0, 10, 0.01) : si.smoo; gate = button("gate"); initgain = nentry("initgain", 0.3, 0, 10, 0.01) : si.smoo; Envelope = en.ar(0.01, 2); mod_ind = hslider("mod_ind", 1.1, 0.5, 10, ...
31b952307733ae40dd9f853944c022dbc974af6b0a428ba583d0f768ee6f0aba
Trzyszcz/Langley
snare.dsp
declare name "snare"; declare nvoices "16"; import("stdfaust.lib"); freq = nentry("frequency", 220, 20, 20000, 0.001); gain = nentry("gain", 1, 0, 1, 0.001); gate = button("gate"); RightPush = button("RightPush"); //dry_sound = ( (os.lf_imptrain(1) : en.ar(0.001, 0.15)) * gain * no.noise ) : fi.resonhp(220, 6, 1) :...
https://raw.githubusercontent.com/Trzyszcz/Langley/e4f0c88d5b9de895f96509b72446a8760ca29c12/Instruments/Snare/snare.dsp
faust
dry_sound = ( (os.lf_imptrain(1) : en.ar(0.001, 0.15)) * gain * no.noise ) : fi.resonhp(220, 6, 1) : fi.lowpass(2, 2000);
declare name "snare"; declare nvoices "16"; import("stdfaust.lib"); freq = nentry("frequency", 220, 20, 20000, 0.001); gain = nentry("gain", 1, 0, 1, 0.001); gate = button("gate"); RightPush = button("RightPush"); dry_sound = ( (gate : en.ar(0.001, 0.15)) * gain * no.noise ) : fi.resonhp(freq, 6, 1) : fi.lowpass(2...
31451ea7cd1af556de15fb591b7b04538633b7d0ab13d48d183de8d57947be17
jrdooley/formuls
f_repeater.dsp
//----------------------------------------------------------------------------------------// //----------------------------------FORMULS_REPEATER--------------------------------------// //----------------------------------------------------------------------------------------// // compile with: faust2puredata -vec -lv ...
https://raw.githubusercontent.com/jrdooley/formuls/9e3264759a3685478d8f9fe5a99e63474afa80ad/src/faust/f_repeater.dsp
faust
----------------------------------------------------------------------------------------// ----------------------------------FORMULS_REPEATER--------------------------------------// ----------------------------------------------------------------------------------------// compile with: faust2puredata -vec -lv 0 -vs 4 ...
declare names "formuls"; declare author "James Dooley: info@formuls.co.uk"; declare copyright "James Dooley"; declare version "1.0"; declare license "MIT"; declare options "[osc:on]"; import("stdfaust.lib"); fx = library("ffx.lib"); process = fx.repeater;
2e13076a19df6545ee8e84916fa70c079e8e0280e405f14ba2076d5f3f81a90f
madskjeldgaard/komet
karplus_staerk.dsp
import("stdfaust.lib"); import("physmodels.lib"); ks_ui = gate : pm.impulseExcitation*gain : pm.ks( (freq : f2l), damping ) with{ f = hslider("freq",440,20,20000,0.01); gain = hslider("gain",0.8,0,1,0.01); s = hslider("sustain" ,0,0,1,1); damping = hslider("damping" ,0.01,0,1,0.01) : si.smoo; t = b...
https://raw.githubusercontent.com/madskjeldgaard/komet/defd9b0b2f4055dcb12b75565631a30152fa779c/faust/karplus_staerk.dsp
faust
import("stdfaust.lib"); import("physmodels.lib"); ks_ui = gate : pm.impulseExcitation*gain : pm.ks( (freq : f2l), damping ) with{ f = hslider("freq",440,20,20000,0.01); gain = hslider("gain",0.8,0,1,0.01); s = hslider("sustain" ,0,0,1,1); damping = hslider("damping" ,0.01,0,1,0.01) : si.smoo; t = b...
bcdeda66206020daed92f5509b5505284ee3ed8dbaaf8569d219f5e0b25399a0
inria-emeraude/syfala
bellN.dsp
import("stdfaust.lib"); t60 = 30; N = 24; excitation = button("gate [switch:5]") : ba.impulsify; process = excitation : pm.frenchBellModel(N,0,t60,1,2.5);
https://raw.githubusercontent.com/inria-emeraude/syfala/95ed6765d73520362f6a1ad35e4a3b2a5e16fbc9/tools/multiN/dsp/bellN.dsp
faust
import("stdfaust.lib"); t60 = 30; N = 24; excitation = button("gate [switch:5]") : ba.impulsify; process = excitation : pm.frenchBellModel(N,0,t60,1,2.5);
ad5987c35e98f06bcf2e00de02d5fb386c03f8e3662885eb3eb4c605cd67b13b
danidev/microcosmos
MicrocosmosDsp.dsp
import("stdfaust.lib"); // 1. a square wave oscillator /* osc = os.pulsetrain(440, 0.5); process = osc * 0.5 <: _,_; */ // 2. note to hz /* note = 64; pitch = ba.midikey2hz(note); osc = os.pulsetrain(pitch, 0.5); process = osc * 0.5 <: _,_; */ // 3. UI parameter /* note = hslider("note", 64, 0, 127, 1); pitch = ba....
https://raw.githubusercontent.com/danidev/microcosmos/dd71ba8fe4f545cf592418dfd77ac21bb2d94e29/dsp/adc21/dsp/MicrocosmosDsp.dsp
faust
1. a square wave oscillator osc = os.pulsetrain(440, 0.5); process = osc * 0.5 <: _,_; 2. note to hz note = 64; pitch = ba.midikey2hz(note); osc = os.pulsetrain(pitch, 0.5); process = osc * 0.5 <: _,_; 3. UI parameter note = hslider("note", 64, 0, 127, 1); pitch = ba.midikey2hz(note); osc = os.pulsetrain(pitch,...
import("stdfaust.lib"); gate = button("[0]gate"); note = hslider("[1]note", 64, 0, 127, 1); attack = hslider("[2]attack", 0.1, 0.01, 1, 0.1) : si.smoo; release = hslider("[3]release", 0.1, 0, 1, 0.1) : si.smoo; cutoff = hslider("[4]cutoff", 5000, 50, 10000, 1) : si.smoo; resonance = hslider("[5]resonance", 1, 1...
a8f9c0eee0a17d4834950806d7907aecfc7f34e06946a6f0ea264ababb969509
JDCAudio/Stray_virtual-synth
RandomLFO.dsp
import("stdfaust.lib"); N = 2; I = N + 1; xList = par(i,I,int(i)); f = hslider("Frequency", 5, 0, 20, 0.01); x = os.phasor(I, f); aList = par(i,I,(no.lfnoise(5) * 0.1)); interpResult = x, aList : it.lagrangeInterpolation(N, xList); clipResult = ba.if(interpResult>1.0, 1.0, (ba.if(interpResult<-1.0, -1.0, interpResul...
https://raw.githubusercontent.com/JDCAudio/Stray_virtual-synth/9571e2e12286c75ae495205546dfcfeb63449fe9/WaveGenerationTests/lfoAmplitudeControl/RandomLFO.dsp
faust
import("stdfaust.lib"); N = 2; I = N + 1; xList = par(i,I,int(i)); f = hslider("Frequency", 5, 0, 20, 0.01); x = os.phasor(I, f); aList = par(i,I,(no.lfnoise(5) * 0.1)); interpResult = x, aList : it.lagrangeInterpolation(N, xList); clipResult = ba.if(interpResult>1.0, 1.0, (ba.if(interpResult<-1.0, -1.0, interpResul...
70f30727ccb4fee55bcb6fd5f4175a1413f076b2e43c345c35d0537cb62e3b2b
johannphilippe/grame_cnsmd_2023
independant_voice_control.dsp
import("stdfaust.lib"); hold_smps(smps_dur, trig) = pulsation with { count = ba.countdown(smps_dur, trig); //count = -(1)~_, smps_dur : select2(trig); pulsation = 0, 1 : select2(count > 0); }; hold_dur(duration, trig) = hold_smps(ba.sec2samp(duration), trig); N_VOICES = 8; voice(n) = vgroup("voice_%n", o...
https://raw.githubusercontent.com/johannphilippe/grame_cnsmd_2023/ccfd6e9a5c1537097546520317c8c5beea06006f/voices/independant_voice_control.dsp
faust
count = -(1)~_, smps_dur : select2(trig); Each oscillator has a different controllable frequency Same for envelop speed (in Hz)
import("stdfaust.lib"); hold_smps(smps_dur, trig) = pulsation with { count = ba.countdown(smps_dur, trig); pulsation = 0, 1 : select2(count > 0); }; hold_dur(duration, trig) = hold_smps(ba.sec2samp(duration), trig); N_VOICES = 8; voice(n) = vgroup("voice_%n", os.osc(freq)*env) with { freq = hslider("freq_...
61c22f2082d3926b637c6393d9930b687811b0127c49a443f6fcacd11ee38f0d
tomara-x/magi
delay-trig-div.dsp
//trans rights import("stdfaust.lib"); //will get back to this trig2gate(t,time) = t : ba.peakholder(ba.sec2samp(time)); bpm = 60; trig = ba.beat(bpm); //trigger at beat beat = ba.tempo(bpm); // beat length in samples hbeat = trig <: _,_@(beat/3),_@(beat/6) :> _; hat = sy.hat(3100,18e3,0.0005,0,hbeat); kbeat = tr...
https://raw.githubusercontent.com/tomara-x/magi/7c24a576ce53357ca46f15bfb65c7e74c9651bf9/practice/delay-trig-div.dsp
faust
trans rights will get back to this trigger at beat beat length in samples
import("stdfaust.lib"); trig2gate(t,time) = t : ba.peakholder(ba.sec2samp(time)); bpm = 60; hbeat = trig <: _,_@(beat/3),_@(beat/6) :> _; hat = sy.hat(3100,18e3,0.0005,0,hbeat); kbeat = trig <: _,_@(beat*1),_@(beat*2),_@(beat*3),_@(beat*3.25) :> _; kick = sy.kick(44, 0.05, 0.005, .9, 1, trig2gate(kbeat,0.05)); p...
9d1255afa8d1084e6a2283c6117d17ccb09dff20f4754a5fe3ac7ffa16d07ff7
LSSN/2020-01-25-dsp-4a-annalaurasanna
verificaaaa.dsp
// Crea un file di faust in cui esponi, in forma di commento, i principi della sintesi sottrattiva. realizza un esemoio attraverso un filtraggio passa banda. // la sintesi sottrattiva è un modello di sintesi usata nella musica elettronica, dove una sorgente sonora viene filtrata sul piano 'spettrale', da essa si sottra...
https://raw.githubusercontent.com/LSSN/2020-01-25-dsp-4a-annalaurasanna/8bf73710c3ad0232fde9bb36460336894f1ca00b/verificaaaa.dsp
faust
Crea un file di faust in cui esponi, in forma di commento, i principi della sintesi sottrattiva. realizza un esemoio attraverso un filtraggio passa banda. la sintesi sottrattiva è un modello di sintesi usata nella musica elettronica, dove una sorgente sonora viene filtrata sul piano 'spettrale', da essa si sottraggon...
import("stdfaust.lib") ; gain= vslider("gain",0,0,1,0.1) ; process = no.noise : fi.lowpass(4,6000) : fi.highpass(4,6000);
f7b645cd0afa889f81b898a5fe208eb13d355dc9e16f07568771641e1e015da3
cchafe/wfs
dcblock.dsp
declare name "dcblock"; declare description "Simple call of the Karplus-Strong model for the Faust physical modeling library"; declare license "MIT"; declare copyright "(c)Romain Michon, CCRMA (Stanford University), GRAME"; import("stdfaust.lib"); process = fi.dcblocker;
https://raw.githubusercontent.com/cchafe/wfs/d5c8b3a502d8f6f83adb351905dc996563fd53cb/dsp/dcblock.dsp
faust
declare name "dcblock"; declare description "Simple call of the Karplus-Strong model for the Faust physical modeling library"; declare license "MIT"; declare copyright "(c)Romain Michon, CCRMA (Stanford University), GRAME"; import("stdfaust.lib"); process = fi.dcblocker;
b97fe7671c4a5cec08218cc41c32b5e79749438a68e21cdd31ef6616aa0719b5
ABCSchuetze/arduino-audio-tools
volume.dsp
declare compilation_options "-single -scal -inpl -fx -I /Users/pschatzmann/.FaustLive-CurrentSession-2.0/Libs -I /Users/pschatzmann/.FaustLive-CurrentSession-2.0/Examples"; declare library_path "volume"; declare library_path "/Users/pschatzmann/.FaustLive-CurrentSession-2.0/Libs/stdfaust.lib"; declare library_path "...
https://raw.githubusercontent.com/ABCSchuetze/arduino-audio-tools/b9058f168356f4bf356787ea125f88919abe6daa/examples/examples-faust/streams-generator-faust-i2s/volume.dsp
faust
declare compilation_options "-single -scal -inpl -fx -I /Users/pschatzmann/.FaustLive-CurrentSession-2.0/Libs -I /Users/pschatzmann/.FaustLive-CurrentSession-2.0/Examples"; declare library_path "volume"; declare library_path "/Users/pschatzmann/.FaustLive-CurrentSession-2.0/Libs/stdfaust.lib"; declare library_path "...
1adca52c709a877a967d2b4b060f42450e7e67477e4395d5ed962a8aed17e2f4
grame-cncm/faust
table.dsp
declare compilation_options "-single -scal -e table.dsp -o table.dsp"; declare library_path "/Documents/faust-github-faust2/tests/impulse-tests/dsp/table.dsp"; declare library_path "/usr/local/share/faust/stdfaust.lib"; declare library_path "/usr/local/share/faust/noises.lib"; declare library_path "/usr/local/share/...
https://raw.githubusercontent.com/grame-cncm/faust/412b060959590a367238c6914ae33de765dc45f7/tests/impulse-tests/dsp/table.dsp
faust
declare compilation_options "-single -scal -e table.dsp -o table.dsp"; declare library_path "/Documents/faust-github-faust2/tests/impulse-tests/dsp/table.dsp"; declare library_path "/usr/local/share/faust/stdfaust.lib"; declare library_path "/usr/local/share/faust/noises.lib"; declare library_path "/usr/local/share/...
d57b7fc7910351983cc80e585883c991f78f9b1ae470ae221222149284bf778c
sidechained/LEDgame
sine.dsp
declare filename "sine.dsp"; declare name "sine"; declare version "2.50.2"; declare compile_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/platform.lib"; declare filename "Faus...
https://raw.githubusercontent.com/sidechained/LEDgame/5b2350f7ff80a93657269ea5326c1dc3ee2cda6e/out/sine.dsp
faust
declare filename "sine.dsp"; declare name "sine"; declare version "2.50.2"; declare compile_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/platform.lib"; declare filename "Faus...
a4c0b5370506d3dda69aeb5c1973d91f78741665f9642b0f169a10cfded76d66
brummer10/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/brummer10/guitarix/31d1efe732631d81647aeb9e5ce64710f60ffc7b/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 fi.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...
217319561d51d76a65054b98b88d5d8ab8b80b48143c9098290af02e520aaa4e
Blumealc/43PR3
spanner3.dsp
declare filename "spanner3.dsp"; declare name "spanner3"; 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/spanner3%7E.mxo/spanner3.dsp
faust
declare filename "spanner3.dsp"; declare name "spanner3"; 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/...
9021390ac821740e1c141c0d05ba7c2155946d953442fdf6b7f9e257db7e1c95
Pro19/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("stdfaust.lib"); import("guitarix.lib"); g3 = hslider("peak[name:Peak][tooltip:peak gain]", 1...
https://raw.githubusercontent.com/Pro19/guitarix/b1c686212332d1ea40683262bf95ad2b486b2bb6/trunk/src/faust/impulseresponse.dsp
faust
fi.pole radius [0 required] fi.pole angle (radians fi.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("stdfaust.lib"); import("guitarix.lib"); g3 = hslider("peak[name:Peak][tooltip:peak gain]", 1...
418eb77af7969d1703113413bb97cc07f461e920c414195908ee593ae1f83828
Pro19/guitarix
low_high_pass.dsp
declare id "low_highpass"; declare name "Low/High Filter"; 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)br...
https://raw.githubusercontent.com/Pro19/guitarix/b1c686212332d1ea40683262bf95ad2b486b2bb6/trunk/src/faust/low_high_pass.dsp
faust
-speaker emulation ------------------------------ low/high-passfilters -------------------------------------- bilinear-transform scale-factor bilinear-transform scale-factor current section number -low and fi.highpass
declare id "low_highpass"; declare name "Low/High Filter"; 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)br...
2be22ce685144ed7dc92220e215f533e6f7754c2e4b2188682715c49fc89d0dc
sidechained/LEDgame
noise.dsp
declare filename "noise.dsp"; declare name "noise"; declare version "2.50.2"; declare compile_options "-single -scal -I libraries/ -I project/ -lang wasm"; declare library_path0 "/libraries/stdfaust.lib"; declare library_path1 "/libraries/noises.lib"; declare filename "FaustDSP"; declare name "FaustDSP"; declare noises...
https://raw.githubusercontent.com/sidechained/LEDgame/5b2350f7ff80a93657269ea5326c1dc3ee2cda6e/noise.dsp
faust
declare filename "noise.dsp"; declare name "noise"; declare version "2.50.2"; declare compile_options "-single -scal -I libraries/ -I project/ -lang wasm"; declare library_path0 "/libraries/stdfaust.lib"; declare library_path1 "/libraries/noises.lib"; declare filename "FaustDSP"; declare name "FaustDSP"; declare noises...
43d041ae74f70ed9c7087f0cdc7237e75368529b3911ce3f9c1989eb8ead9fc1
sidechained/LEDgame
noise.dsp
declare filename "noise.dsp"; declare name "noise"; declare version "2.44.5"; declare compile_options "-single -scal -I libraries/ -I project/ -lang wasm"; declare library_path0 "/libraries/stdfaust.lib"; declare library_path1 "/libraries/noises.lib"; declare filename "FaustDSP"; declare name "FaustDSP"; declare noises...
https://raw.githubusercontent.com/sidechained/LEDgame/6d81db45c88fad884a0e302e262723156d827f47/out/noise.dsp
faust
declare filename "noise.dsp"; declare name "noise"; declare version "2.44.5"; declare compile_options "-single -scal -I libraries/ -I project/ -lang wasm"; declare library_path0 "/libraries/stdfaust.lib"; declare library_path1 "/libraries/noises.lib"; declare filename "FaustDSP"; declare name "FaustDSP"; declare noises...
d1ffab3da6d965b5468e26287fbba507c62df9d78edf72ed7a917306b92823fd
Pro19/guitarix
gx_distortion.dsp
declare id "gx_distortion"; 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 ...
https://raw.githubusercontent.com/Pro19/guitarix/b1c686212332d1ea40683262bf95ad2b486b2bb6/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 id "gx_distortion"; 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 ...
f060bc87396d7ded249641e0466337aaf73cdf7b62cce58100299344e0e24d58
grame-cncm/faust
priority.dsp
/* import("stdfaust.lib"); process = (c : *(200) : os.osc) with { clk1 = ba.pulse(ma.SR * tempo / 1000); clk2 = ba.pulse(ma.SR * 2 * tempo / 1000); c1 = ba.counter(clk1) % 2; c2 = ba.counter(clk2) % 2; c = 1 + c1 + (2 * c2); tempo = 500; }; */ declare version "2....
https://raw.githubusercontent.com/grame-cncm/faust/79e0d0668575aa664d9aeb55c1df2231b3501002/tests/impulse-tests/dsp/priority.dsp
faust
import("stdfaust.lib"); process = (c : *(200) : os.osc) with { clk1 = ba.pulse(ma.SR * tempo / 1000); clk2 = ba.pulse(ma.SR * 2 * tempo / 1000); c1 = ba.counter(clk1) % 2; c2 = ba.counter(clk2) % 2; c = 1 + c1 + (2 * c2); tempo = 500; };
declare version "2.44.4"; declare compile_options "-single -scal -e dsp/priority.dsp -o priority_exp.dsp"; declare library_path0 "/usr/local/share/faust/stdfaust.lib"; declare library_path1 "/usr/local/share/faust/basics.lib"; declare library_path2 "/usr/local/share/faust/maths.lib"; declare library_path3 "/usr/local/...
0ec45d63e543a0ebf3479746413eb1f7da23bd8d6d88b73ab8c2db0abd8ae039
grame-cncm/faust
constant.dsp
// import("stdfaust.lib"); // process = ba.slidingMeanp(ma.SR, 4); declare compilation_options "-single -scal -e t1.dsp -o t1_exp.dsp"; declare library_path "/Users/letz/Developpements/faust/t1.dsp"; declare library_path "/usr/local/share/faust/stdfaust.lib"; declare library_path "/usr/local/share/faust/basics.lib"...
https://raw.githubusercontent.com/grame-cncm/faust/0a9cd51b24b79fcdc3b71fa482f4bebe96d012d4/tests/impulse-tests/dsp/constant.dsp
faust
import("stdfaust.lib"); process = ba.slidingMeanp(ma.SR, 4);
declare compilation_options "-single -scal -e t1.dsp -o t1_exp.dsp"; declare library_path "/Users/letz/Developpements/faust/t1.dsp"; declare library_path "/usr/local/share/faust/stdfaust.lib"; declare library_path "/usr/local/share/faust/basics.lib"; declare library_path "/usr/local/share/faust/maths.lib"; declare ...
b34efd88dc5cdd7a53caf781b0b074e7804489714997d548841beb7fa3be293f
Blumealc/43PR3
spanner_v.dsp
declare filename "spanner_v.dsp"; declare name "spanner_v"; 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 "/librarie...
https://raw.githubusercontent.com/Blumealc/43PR3/0bd1e28c690d43d2905a0a06e69a60e55b0b6116/spanner_v%7E.mxo/spanner_v.dsp
faust
declare filename "spanner_v.dsp"; declare name "spanner_v"; 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 "/librarie...
1fb07d9a6922a797264a4f5a96bc1751c252ed27c70cdabcb6bcb0bef14f092d
Pro19/guitarix
bitdowner.dsp
declare id "bitdowner"; declare name "BitDowner"; declare category "Distortion"; declare author "Viacheslav Lotsmanov (unclechu)"; declare license "BSD"; declare copyright "(c) Viacheslav Lotsmanov, 2015"; import("stdfaust.lib"); gain = vslider("input_gain[name:Input][tooltip:Gain (dB)]", 0, -40, ...
https://raw.githubusercontent.com/Pro19/guitarix/b1c686212332d1ea40683262bf95ad2b486b2bb6/trunk/src/faust/bitdowner.dsp
faust
from 0 till x (ba.if x is 5 then [0,1,2,3,4]) downsampling dry signal ba.if downsampling disabled bitdowning
declare id "bitdowner"; declare name "BitDowner"; declare category "Distortion"; declare author "Viacheslav Lotsmanov (unclechu)"; declare license "BSD"; declare copyright "(c) Viacheslav Lotsmanov, 2015"; import("stdfaust.lib"); gain = vslider("input_gain[name:Input][tooltip:Gain (dB)]", 0, -40, ...
866a1ccbdb9a83dba74b7ac10a427c1aa5fee16501c3c100010ad1fbb78f7ea5
Pro19/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); t = ba.tempo(hslider("bpm[name:BPM][tooltip:Echo in Beats per Minute]",120,24,36...
https://raw.githubusercontent.com/Pro19/guitarix/b1c686212332d1ea40683262bf95ad2b486b2bb6/trunk/src/faust/echo.dsp
faust
t = vslider("time", 1, 1, 2000, 1);
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 = ba.tempo(hslider("bpm[name:BPM][tooltip:Echo in Beats per Minute]",120,24,360,1)); release = vslider("percent[name...
8fc1ec885bd4967da1fb5255edc0c160e924ac07edffc72b3641212c9520d78e
steveb/gula-plugins
sweabed.dsp
declare name "Sweabed"; declare author "GULA"; declare copyright "Steve Baker (2020)"; declare version "1.0.0"; declare license "GPLv3"; declare description "Midrange parametic EQ with A and B settings which can be swept between with a single control"; import("gula.lib"); freq_a = hslider("[1]freq_a[name:Freq A][tool...
https://raw.githubusercontent.com/steveb/gula-plugins/65b328f6d025171149d485c8aed83eaa377db60e/src/sweabed.dsp
faust
declare name "Sweabed"; declare author "GULA"; declare copyright "Steve Baker (2020)"; declare version "1.0.0"; declare license "GPLv3"; declare description "Midrange parametic EQ with A and B settings which can be swept between with a single control"; import("gula.lib"); freq_a = hslider("[1]freq_a[name:Freq A][tool...
53d3cd485625b163d15f99e588813928b374e1b8810b4fa466edb1e7eccace26
smoge/gxplugins
distortion1.dsp
declare name "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 =...
https://raw.githubusercontent.com/smoge/gxplugins/30a5160ff626975aa521a316cd33f973e3bc5d0c/distortion1.dsp
faust
----------distortion--------- -speaker emulation -low and highpass -distortion -resonator
declare name "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 cu...
7822f604ebc9b53d55357fa205e26f4c8a5126a1c9239a1718edd5d671135f67
steveb/gula-plugins
lfo_cv.dsp
declare name "LFO CV"; declare author "Gula Plugins"; declare copyright "Steve Baker (2022)"; declare version "1.0.0"; declare license "GPLv3"; declare description "A CV output of an LFO with multiple shape modes and shapes"; import("gula.lib"); shape_mode = hslider("[01]shape_mode [name: Shape Mode][style:menu{'Rand...
https://raw.githubusercontent.com/steveb/gula-plugins/3cad8aa6fa7d3c7b03be48af88c645a50581786e/src/lfo_cv.dsp
faust
declare name "LFO CV"; declare author "Gula Plugins"; declare copyright "Steve Baker (2022)"; declare version "1.0.0"; declare license "GPLv3"; declare description "A CV output of an LFO with multiple shape modes and shapes"; import("gula.lib"); shape_mode = hslider("[01]shape_mode [name: Shape Mode][style:menu{'Rand...
116fd959133e7d0690faaa6490ab125d757e5c89263470c6ea2485718e9ae860
Pro19/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("stdfaust.lib"); import("guitarix.lib"); g3 = hslider("peak[tooltip:peak gain]", 1, 0, 10, 0...
https://raw.githubusercontent.com/Pro19/guitarix/b1c686212332d1ea40683262bf95ad2b486b2bb6/trunk/src/LV2/faust/impulseresponse.dsp
faust
fi.pole radius [0 required] fi.pole angle (radians fi.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("stdfaust.lib"); import("guitarix.lib"); g3 = hslider("peak[tooltip:peak gain]", 1, 0, 10, 0...
5be02e035135ec524fae572374135e6a5949472057b819e8a7defb619ad8077d
Pro19/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("stdfaust.lib"); import("guitar...
https://raw.githubusercontent.com/Pro19/guitarix/b1c686212332d1ea40683262bf95ad2b486b2bb6/trunk/src/LV2/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 version "0.01"; declare author "brummer"; declare license "BSD"; declare copyright "(c)brummer 2008"; import("stdfaust.lib"); import("guitar...
63171be895faebb6527a6d37fde1a734af1105fae64fc84ff53fd4cbfbbc5830
maximalexanian/guitarix-vst
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/maximalexanian/guitarix-vst/83fd0cbec9588fb2ef47d80f7c6cb0775bfb9f89/guitarix/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("stdfaust.lib"); import("guitarix.lib"); combtuningL1 = 1116; combtuningL2 = 1188; combtuningL3 = 1277; combtuningL4 = 1356; comb...
26113a38727f6990aaf21b0d6a84b2b7dc438fd9f0614b6761b459be8d7f03ea
Pro19/guitarix
distortion1.dsp
declare id "distortion1"; declare version "0.01"; declare author "brummer"; declare license "BSD"; declare copyright "(c)brummer 2008"; import("stdfaust.lib"); import("guitarix.lib"); //----------distortion--------- //-speaker emulation sbp1 = vslider("low_freq[name:low freq][tooltip:low-freq cutoff Hz]",1...
https://raw.githubusercontent.com/Pro19/guitarix/b1c686212332d1ea40683262bf95ad2b486b2bb6/trunk/src/faust/distortion1.dsp
faust
----------distortion--------- -speaker emulation -low and fi.highpass -distortion -resonator
declare id "distortion1"; declare version "0.01"; declare author "brummer"; declare license "BSD"; declare copyright "(c)brummer 2008"; import("stdfaust.lib"); import("guitarix.lib"); sbp1 = vslider("low_freq[name:low freq][tooltip:low-freq cutoff Hz]",130,20,1000,10); sbp2 = vslider("high_freq[name:hig...
6b9d3401694e3df509aff367dff53c11a0c50e4f8bbc94ab86dba56ccae107a0
maximalexanian/guitarix-vst
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("stdfaust.lib"); import("guitar...
https://raw.githubusercontent.com/maximalexanian/guitarix-vst/83fd0cbec9588fb2ef47d80f7c6cb0775bfb9f89/guitarix/src/LV2/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 version "0.01"; declare author "brummer"; declare license "BSD"; declare copyright "(c)brummer 2008"; import("stdfaust.lib"); import("guitar...
75227dd32721abc42ea831ca40e91f235fb018086ea452fc54817d94cb4c868d
Pro19/guitarix
thick_distortion.dsp
declare id "thick_distortion"; declare name "Thick Distortion"; declare category "Distortion"; declare author "Viacheslav Lotsmanov"; declare license "BSD"; declare copyright "(c) 2018 Viacheslav Lotsmanov"; /* This effect was written first in Haskell as standalone JACK application. Can be found h...
https://raw.githubusercontent.com/Pro19/guitarix/b1c686212332d1ea40683262bf95ad2b486b2bb6/trunk/src/faust/thick_distortion.dsp
faust
This effect was written first in Haskell as standalone JACK application. Can be found here: https://github.com/unclechu/haskell-audio-dsp There's simple idea behind this distortion effect. Main thing is that current sample depends on previous one, "Thickness" value is a coefficient of how much previous sample wi...
declare id "thick_distortion"; declare name "Thick Distortion"; declare category "Distortion"; declare author "Viacheslav Lotsmanov"; declare license "BSD"; declare copyright "(c) 2018 Viacheslav Lotsmanov"; import("stdfaust.lib"); gain = vslider("input_gain[name:Input][tooltip:Gain (dB)]", 0, 0,...
40dc222b953d6c820403ecf572a91845e59fdd4e4fdd6cd9dedb65cd049da98f
Pro19/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("stdfaust.lib"); process = pre : fi.iir((b0/a0,b1/a0),(a1/a0)) : clip with {...
https://raw.githubusercontent.com/Pro19/guitarix/b1c686212332d1ea40683262bf95ad2b486b2bb6/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("stdfaust.lib"); process = pre : fi.iir((b0/a0,b1/a0),(a1/a0)) : clip with { LogPot(a, x) = ba.if(a, (exp(a * x) - 1)...
f171ce50f94a13cc69c7ebd8c145bd3f61c0b4953c19ee0bc502f0aff4ff41f6
smoge/gxplugins
impulseresponse.dsp
declare name "IR"; 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"); g3 = hslider("peak[tooltip:peak gain]", 1, 0, 10, 0.2); fr = hslider("f...
https://raw.githubusercontent.com/smoge/gxplugins/30a5160ff626975aa521a316cd33f973e3bc5d0c/impulseresponse.dsp
faust
pole radius [0 required] pole angle (radians pole = 2) radius = 2 time-domain coefficients ASSUMING ONE PIPELINE DELAY:
declare name "IR"; 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"); g3 = hslider("peak[tooltip:peak gain]", 1, 0, 10, 0.2); fr = hslider("f...
3f97674bf56480dbf7de604bdccc78e8eacdb8b071f9bfde0e3c968f50c09e71
Pro19/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"; declare insert_p "tranyclipper"; import("stdfaust.lib"); import("trany.lib"); process = pre : _<:*(dry),(*(wet) : fi.iir((b0/a0,b1/a0,b2/a0,b3...
https://raw.githubusercontent.com/Pro19/guitarix/b1c686212332d1ea40683262bf95ad2b486b2bb6/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"; declare insert_p "tranyclipper"; import("stdfaust.lib"); import("trany.lib"); process = pre : _<:*(dry),(*(wet) : fi.iir((b0/a0,b1/a0,b2/a0,b3/a0),(a1/a0,a2/a0,a3/a0)) ):>_ with { Log...
841d72b51d28a7fb30590150109ca694450c45827cb42b0f288b510bb8848689
Pro19/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("stdfaust.lib"); import("guitarix.lib"); /*----------------------------------------------- freeverb by "Grame" --------------------------...
https://raw.githubusercontent.com/Pro19/guitarix/b1c686212332d1ea40683262bf95ad2b486b2bb6/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("stdfaust.lib"); import("guitarix.lib"); combtuningL1 = 1116; combtuningL2 = 1188; combtuningL3 = 1277; combtuningL4 = 1356; combtuningL5 = ...
dc413922d53b6684eb76872f1f4dcec9b1c41b0a5eea25d26a68ed00a24b0efd
HexHive/datAFLow
echo_bug.dsp
declare compilation_options "-single -scal -e echo_bug.dsp -o echo_bug.dsp"; declare library_path "/Documents/faust-github-faust2/tests/impulse-tests/dsp/echo_bug.dsp"; declare library_path "/usr/local/share/faust/sf.lib"; declare library_path "/usr/local/share/faust/all.lib"; declare library_path "/usr/local/share/...
https://raw.githubusercontent.com/HexHive/datAFLow/b9f3cbc42b1970f8655817c9fb67b1eaba3ae4c0/evaluation/ddfuzz/seeds/faust/echo_bug.dsp
faust
declare compilation_options "-single -scal -e echo_bug.dsp -o echo_bug.dsp"; declare library_path "/Documents/faust-github-faust2/tests/impulse-tests/dsp/echo_bug.dsp"; declare library_path "/usr/local/share/faust/sf.lib"; declare library_path "/usr/local/share/faust/all.lib"; declare library_path "/usr/local/share/...
e6cb52867a3376a6b9d2eb2333dd86d6be7edd09fe3fd6785cf63b3134be8526
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/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...
6e16bcc6ab83e446beea2ec1afffe1cd6ba242305e888262b9f542d038e99097
ntonnaett/guitarix
low_high_pass.dsp
declare id "low_highpass"; declare name "Low/High Filter"; 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)br...
https://raw.githubusercontent.com/ntonnaett/guitarix/e5ce36c3a693eeada3cb70425ec09f8d6f91e78c/trunk/src/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 Filter"; 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)br...
0f3b488c95b670514adac40d3144c8b40cfeaed055455393f06d08973616d88b
ntonnaett/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/ntonnaett/guitarix/e5ce36c3a693eeada3cb70425ec09f8d6f91e78c/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...
21933bd04cfefafc86db202564fd05647f6f5e95c005aa194a27f819addb530d
simonvanderveldt/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/simonvanderveldt/guitarix/51ba3d2bba6118a7fbf67a56c30e860faa155d5f/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 fi.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...
16ddb0c32b0142e9591788456e43fac208e8b5526c9b2a2dfb26cb5aba2d9e4b
ntonnaett/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/ntonnaett/guitarix/e5ce36c3a693eeada3cb70425ec09f8d6f91e78c/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...
e87bccbf081e971ba19be1f22a1defe0350a8901ac120f8aa6842d2d1c19e6b7
ntonnaett/guitarix
bitdowner.dsp
declare id "bitdowner"; declare name "BitDowner"; declare category "Distortion"; declare author "Viacheslav Lotsmanov (unclechu)"; declare license "BSD"; declare copyright "(c) Viacheslav Lotsmanov, 2015"; import("filter.lib"); // smooth import("music.lib"); // db2linear import("math.lib"); // if ...
https://raw.githubusercontent.com/ntonnaett/guitarix/e5ce36c3a693eeada3cb70425ec09f8d6f91e78c/trunk/src/faust/bitdowner.dsp
faust
smooth db2linear if from 0 till x (if x is 5 then [0,1,2,3,4]) downsampling dry signal if downsampling disabled bitdowning
declare id "bitdowner"; declare name "BitDowner"; declare category "Distortion"; declare author "Viacheslav Lotsmanov (unclechu)"; declare license "BSD"; declare copyright "(c) Viacheslav Lotsmanov, 2015"; gain = vslider("input_gain[name:Input][tooltip:Gain (dB)]", 0, -40, 40, 0.1) : db2linear : ...
be6f8b0981db4cfc297e6b4e1eb43a307ad0979962577cf4ddeb20d1eada5c5d
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[name:Level]", 0.5, 0, 1, 0.01); freq = hslider("freq[name:Freq]", 3, 0, 10, 0.01); dtime =...
https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/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[name:Level]", 0.5, 0, 1, 0.01); freq = hslider("freq[name:Freq]", 3, 0, 10, 0.01); dtime = hslider("delay[name:Delay]", 0.02, 0, 0.2, 0.01): si.smooth(0.999); de...
efc02d77b5926ed9c23faced55fc0b378925d92ea3b93e286b3fe10bdec2ea3e
brummer10/guitarix
gx_ampmodul.dsp
declare id "ampmodul"; declare name "Postamp"; declare category "Distortion"; declare groups "amp2.stage1[Postamp Tube1], amp2.stage2[Postamp Tube2]"; declare samplerate "96000"; import("stdfaust.lib"); import("guitarix.lib"); feedback = hslider("feedback[name:Wet/FB]", 0, -1, 1, 0.01); fbackw = (- : ma.neg ) ...
https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/faust/gx_ampmodul.dsp
faust
declare id "ampmodul"; declare name "Postamp"; declare category "Distortion"; declare groups "amp2.stage1[Postamp Tube1], amp2.stage2[Postamp Tube2]"; declare samplerate "96000"; import("stdfaust.lib"); import("guitarix.lib"); feedback = hslider("feedback[name:Wet/FB]", 0, -1, 1, 0.01); fbackw = (- : ma.neg ) ...
1edd6606ad2639d1ebd44f327d6f114c64cf32d8b621539bb26ef7ea2d1938b7
ntonnaett/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("math.lib"); import("music.lib"); import("effect.lib"); import("filter.lib"); //t = vslider("time", 1, 1, 2000, 1); t = tempo(hslider(...
https://raw.githubusercontent.com/ntonnaett/guitarix/e5ce36c3a693eeada3cb70425ec09f8d6f91e78c/trunk/src/faust/echo.dsp
faust
t = vslider("time", 1, 1, 2000, 1);
declare name "Echo"; declare category "Echo / Delay"; 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 = tempo(hslider("bpm[name:BPM][tooltip:Echo in Beats p...
16be8ff2e3f7350a2046de4a6a32f04d3bd9ea0a0599acb94f461530c68a786e
brummer10/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/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/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...
319f2e7393d5228a76db344191b308fa05be2d903e1beb287eb3752e2fcb1848
brummer10/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("stdfaust.lib"); import("guitarix.lib"); /*----------------------------------------------- freeverb by "Grame" --------------------------...
https://raw.githubusercontent.com/brummer10/guitarix/5672b8cb8f1c324ea28b1fddc7e1b39f79aabbc6/trunk/src/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("stdfaust.lib"); import("guitarix.lib"); combtuningL1 = 1116; combtuningL2 = 1188; combtuningL3 = 1277; combtuningL4 = 1356; combtuningL5 = ...
afb2430505f5b0afbf9f6ece7c9a2dfc8a2d56d921b00e012209fee10f709b6d
HexHive/datAFLow
grain3.dsp
declare compilation_options "-single -scal -e grain3.dsp -o grain3.dsp"; declare library_path "/Documents/faust-github-faust2/tests/impulse-tests/dsp/grain3.dsp"; declare library_path "/usr/local/share/faust/stdfaust.lib"; declare library_path "/usr/local/share/faust/delays.lib"; declare library_path "/usr/local/sha...
https://raw.githubusercontent.com/HexHive/datAFLow/b9f3cbc42b1970f8655817c9fb67b1eaba3ae4c0/evaluation/ddfuzz/seeds/faust/grain3.dsp
faust
declare compilation_options "-single -scal -e grain3.dsp -o grain3.dsp"; declare library_path "/Documents/faust-github-faust2/tests/impulse-tests/dsp/grain3.dsp"; declare library_path "/usr/local/share/faust/stdfaust.lib"; declare library_path "/usr/local/share/faust/delays.lib"; declare library_path "/usr/local/sha...
e945450491889bc87abdc3ef4fbafc35294a9e0744b276bf0d326d44e04f9788
maximalexanian/guitarix-vst
gx_distortion.dsp
declare id "gx_distortion"; 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 ...
https://raw.githubusercontent.com/maximalexanian/guitarix-vst/83fd0cbec9588fb2ef47d80f7c6cb0775bfb9f89/guitarix/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 id "gx_distortion"; 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 ...
c2dd97ec23192dd03b934e9d2a02629fa9ca57bf3b52e7fd302a6af73d4d9c1e
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"); import("filter.lib"); level = hslider("level[name:Level]", 0.5, 0, 1, 0.01); freq = hslider("freq[name:Freq]", 3, 0,...
https://raw.githubusercontent.com/ntonnaett/guitarix/e5ce36c3a693eeada3cb70425ec09f8d6f91e78c/trunk/src/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"); import("filter.lib"); level = hslider("level[name:Level]", 0.5, 0, 1, 0.01); freq = hslider("freq[name:Freq]", 3, 0, 10, 0.01); dtime = hslider("delay[name:Delay]", 0.02, 0, 0.2, 0.01): s...
b13a8e4ea45d42aaaff9a33314a5ea4bd6b50d7bd294afa55960ebe37590926c
ntonnaett/guitarix
gx_ampmodul.dsp
declare id "ampmodul"; declare name "Postamp"; declare category "Distortion"; declare groups "amp2.stage1[Postamp Tube1], amp2.stage2[Postamp Tube2]"; declare samplerate "96000"; import("guitarix.lib"); feedback = hslider("feedback[name:Wet/FB]", 0, -1, 1, 0.01); fbackw = (- : neg ) ~ (feedback * _''''); feedb...
https://raw.githubusercontent.com/ntonnaett/guitarix/e5ce36c3a693eeada3cb70425ec09f8d6f91e78c/trunk/src/faust/gx_ampmodul.dsp
faust
declare id "ampmodul"; declare name "Postamp"; declare category "Distortion"; declare groups "amp2.stage1[Postamp Tube1], amp2.stage2[Postamp Tube2]"; declare samplerate "96000"; import("guitarix.lib"); feedback = hslider("feedback[name:Wet/FB]", 0, -1, 1, 0.01); fbackw = (- : neg ) ~ (feedback * _''''); feedb...
0926ee6efbc3fc0077edd08fe6b3d8f7d2e5593aaefff8c3981c787c3eaf6e19
guysherman/Faust
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/guysherman/Faust/4cac36e7fc493158e92946b3a840c4f611ac2844/examples/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...
fb607308d6fb6527a1f191cc5e93f5c763bc2f5635196e8e647df4bbb68381fd
SMERM/BN-Tedesco
pitchtracker.dsp
declare filename "pitchtracker.dsp"; declare name "pitchtracker"; declare compilation_options "-single -scal -I libraries/ -I project/ -lang wasm"; declare library_path "FaustDSP"; declare library_path "/libraries/stdfaust.lib"; declare library_path "/libraries/filters.lib"; declare library_path "/libraries/maths.li...
https://raw.githubusercontent.com/SMERM/BN-Tedesco/2a77e1707f7e64c512dd40d58d29c0db8092463d/COME-01/20200610/biquad_oscillante/pitchtracker.dsp
faust
declare filename "pitchtracker.dsp"; declare name "pitchtracker"; declare compilation_options "-single -scal -I libraries/ -I project/ -lang wasm"; declare library_path "FaustDSP"; declare library_path "/libraries/stdfaust.lib"; declare library_path "/libraries/filters.lib"; declare library_path "/libraries/maths.li...
792801f18e2c702f99a6efd36f612791a28dda885b5269bd3b7066adaf45b84d
ntonnaett/guitarix
peak_eq.dsp
declare id "eq"; declare name "Peak EQ"; declare category "Tone Control"; declare license "BSD"; declare copyright "(c)GRAME 2006"; import("math.lib"); import("music.lib"); import("guitarix.lib"); //------------------------- Process -------------------------------- // USAGE: _ : peak_eq(Lfx,fx,B...
https://raw.githubusercontent.com/ntonnaett/guitarix/e5ce36c3a693eeada3cb70425ec09f8d6f91e78c/trunk/src/faust/peak_eq.dsp
faust
------------------------- Process -------------------------------- USAGE: _ : 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("math.lib"); import("music.lib"); import("guitarix.lib"); process = peak_eq(vslider("level1 [name:Sub][tooltip:gain (dB)]", 0, -50, 50, 0.1),vslider("peak...
c09d2b2f35e58dfe7be3bdfd1d6d174d716f4218053492c701a7806721b5f312
SMERM/BN-Tedesco
biquad_new.dsp
declare filename "biquad_new.dsp"; declare name "biquad_new"; declare compilation_options "-single -scal -I libraries/ -I project/ -lang wasm"; declare library_path "FaustDSP"; declare library_path "/libraries/stdfaust.lib"; declare library_path "/libraries/maths.lib"; declare filename "FaustDSP"; declare maths_lib_...
https://raw.githubusercontent.com/SMERM/BN-Tedesco/2a77e1707f7e64c512dd40d58d29c0db8092463d/COME-01/20200624/biquad/biquad_new%7E.mxo/biquad_new.dsp
faust
declare filename "biquad_new.dsp"; declare name "biquad_new"; declare compilation_options "-single -scal -I libraries/ -I project/ -lang wasm"; declare library_path "FaustDSP"; declare library_path "/libraries/stdfaust.lib"; declare library_path "/libraries/maths.lib"; declare filename "FaustDSP"; declare maths_lib_...
e7bf964fca904983a068443cb5d745911b27ddc7ee96acfb43f69b1ddccb0b65
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/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...