_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
320cb62f8ba7aa1b2ab2aff236e7cee80088c6a82e0bba3a07cfa0a9ecf2dcd2
maximalexanian/guitarix-vst
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/maximalexanian/guitarix-vst/83fd0cbec9588fb2ef47d80f7c6cb0775bfb9f89/guitarix/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)...
b59d79e8877894271740cfbeabfbc44542a3c51603bff35cb5522e1eb186f7de
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/examples/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("[unit:dB]", -70, 10)); hmeter(x) = attach(x, envelop(x) : hbargraph("[unit:dB]", -70, 10));...
28f236b3c39fdadfaf4ea183ab0c6968b20cd6e38bed12dedbf32ae13ce1f71c
maximalexanian/guitarix-vst
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); freq = hslider("freq", 3, 0, 10, 0.01); dtime = hslider("de.delay", 0....
https://raw.githubusercontent.com/maximalexanian/guitarix-vst/83fd0cbec9588fb2ef47d80f7c6cb0775bfb9f89/guitarix/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); freq = hslider("freq", 3, 0, 10, 0.01); dtime = hslider("de.delay", 0.02, 0, 0.2, 0.01); depth = hslider("depth", 0.02, 0, 1, 0.01); tblosc(...
bd7b1225d5bfb5d5ce5a3fb28e0e1602b70122c1d3e8f03d4cfabc22b1395250
olilarkin/OL-OWLPatches
ThruZeroFlanger.dsp
declare name "Thru Zero Flanger"; declare description "Stereo Thru Zero Flanger - warning can ZERO the sound!"; declare author "Oli Larkin (contact@olilarkin.co.uk)"; declare copyright "Oliver Larkin"; declare version "0.1"; declare licence "GPL"; import("stdfaust.lib"); lutsize = 1 << 9; maxdtms = 20; smooth_time = ...
https://raw.githubusercontent.com/olilarkin/OL-OWLPatches/2dad8107814082c9de8ef1d117950fe3f49633b6/ThruZeroFlanger.dsp
faust
inverted
declare name "Thru Zero Flanger"; declare description "Stereo Thru Zero Flanger - warning can ZERO the sound!"; declare author "Oli Larkin (contact@olilarkin.co.uk)"; declare copyright "Oliver Larkin"; declare version "0.1"; declare licence "GPL"; import("stdfaust.lib"); lutsize = 1 << 9; maxdtms = 20; smooth_time = ...
922218be086f637243143832e3b38f6637322d84e255bac3079d699e660bc0ca
friskgit/snares
o_impulse.dsp
// -*- compile-command: "cd .. && make jack src=o_impulse.dsp && cd -"; -*-&& cd -"; -*- declare version " 0.1 "; declare author " Henrik Frisk " ; declare author " henrikfr "; declare license " BSD "; declare copyright "(c) dinergy 2018 "; import("stdfaust.lib"); import("math.lib") ; // for PI definition import("mus...
https://raw.githubusercontent.com/friskgit/snares/bb43ea5e706a0ead6d65dd176a5c492b2f5d8f74/faust/snare/src/o_impulse.dsp
faust
-*- compile-command: "cd .. && make jack src=o_impulse.dsp && cd -"; -*-&& cd -"; -*- for PI definition for osci definition ---------------`General impulse` -------------------------- Generating a single impulse to be fed into the likes of 'snare.dsp'. Use this in order to have a trigger programmatically availabl...
declare version " 0.1 "; declare author " Henrik Frisk " ; declare author " henrikfr "; declare license " BSD "; declare copyright "(c) dinergy 2018 "; import("stdfaust.lib"); impgrp(x) = vgroup("impulse", x); imp = impgrp(button("play")) : ba.impulsify; process = imp;
0f47c4bd0da0036ef87252a7b52e30322780a5e3b8b2a54cd77a3dada34e5282
friskgit/snares
i_impulse.dsp
// -*- compile-command: "cd .. && make jack src=i_impulse.dsp && cd -"; -*-&& cd -"; -*- declare version " 0.1 "; declare author " Henrik Frisk " ; declare author " henrikfr "; declare license " BSD "; declare copyright "(c) dinergy 2018 "; import("stdfaust.lib"); import("math.lib") ; // for PI definition import("mus...
https://raw.githubusercontent.com/friskgit/snares/bb43ea5e706a0ead6d65dd176a5c492b2f5d8f74/faust/snare/src/i_impulse.dsp
faust
-*- compile-command: "cd .. && make jack src=i_impulse.dsp && cd -"; -*-&& cd -"; -*- for PI definition for osci definition ---------------`General impulse` -------------------------- Generating a stream of impulses at frequency 'tempo' to be fed into the likes of 'snare.dsp' 18 Juli 2019 Henrik Frisk mail@henr...
declare version " 0.1 "; declare author " Henrik Frisk " ; declare author " henrikfr "; declare license " BSD "; declare copyright "(c) dinergy 2018 "; import("stdfaust.lib"); impgrp(x) = vgroup("impulse", x); imp = ba.pulse(impgrp(hslider("tempo", 5000, 500, 10000, 1))); process = imp;
7c1b4c1ed15fbda82b8655ace53c1adbaed5b0f8fba5c6b62a4b9adcda6a9209
jrdooley/formuls
f_limiter.dsp
//----------------------------------------------------------------------------------------// //----------------------------------FORMULS_MASTER_BUS_FX---------------------------------// //----------------------------------------------------------------------------------------// // compile with: faust2puredata -vec -lv ...
https://raw.githubusercontent.com/jrdooley/formuls/9e3264759a3685478d8f9fe5a99e63474afa80ad/src/faust/f_limiter.dsp
faust
----------------------------------------------------------------------------------------// ----------------------------------FORMULS_MASTER_BUS_FX---------------------------------// ----------------------------------------------------------------------------------------// 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.limiter,fx.limiter;
e6e3bf4061ec3cc764bd3344d134a09f4f598097df48d9799ab58f69c80a2e01
jrdooley/formuls
f_digitaliser.dsp
//----------------------------------------------------------------------------------------// //----------------------------------FORMULS_MASTER_BUS_FX---------------------------------// //----------------------------------------------------------------------------------------// // compile with: faust2puredata -vec -lv ...
https://raw.githubusercontent.com/jrdooley/formuls/9e3264759a3685478d8f9fe5a99e63474afa80ad/src/faust/f_digitaliser.dsp
faust
----------------------------------------------------------------------------------------// ----------------------------------FORMULS_MASTER_BUS_FX---------------------------------// ----------------------------------------------------------------------------------------// 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.digitaliser,fx.digitaliser;
a9dfd856f7d4a9de5b1cf89683c398afefbe6872accaf908b9563cbf2675d76b
friskgit/snares
i_generic_snarefs.dsp
// -*- compile-command: "cd .. && make jack src=i_generic_snarefs.dsp && cd -"; -*-&& cd -"; -*- declare version " 0.1 "; declare author " Henrik Frisk " ; declare author " henrikfr "; declare license " BSD "; declare copyright "(c) dinergy 2018 "; import("stdfaust.lib"); import("math.lib") ; // for PI definition imp...
https://raw.githubusercontent.com/friskgit/snares/bb43ea5e706a0ead6d65dd176a5c492b2f5d8f74/faust/snare/src/i_generic_snarefs.dsp
faust
-*- compile-command: "cd .. && make jack src=i_generic_snarefs.dsp && cd -"; -*-&& cd -"; -*- for PI definition for osci definition ---------------`Single snare drum` -------------------------- Generating an impulse and feeding it to a generic_snarefs. Paramters - tempo: tempo of impulse - see inherited parame...
declare version " 0.1 "; declare author " Henrik Frisk " ; declare author " henrikfr "; declare license " BSD "; declare copyright "(c) dinergy 2018 "; import("stdfaust.lib"); impgrp(x) = vgroup("impulse", x); imp = ba.pulse(impgrp(hslider("tempo", 5000, 5, 10000, 1))); process = imp : component("generic_snarefs.d...
08c5fcf88bc48c06abb59a0102948dd4d2d3ac98219cb3ee9a078bfd6f949cee
friskgit/snares
i_filtered_snare_8.dsp
// -*- compile-command: "cd .. && make sc src=i_filtered_snare_8.dsp && cd -"; -*-&& cd -"; -*- declare version " 0.1 "; declare author " Henrik Frisk " ; declare author " henrikfr "; declare license " BSD "; declare copyright "(c) dinergy 2018 "; import("stdfaust.lib"); import("math.lib") ; // for PI definition impo...
https://raw.githubusercontent.com/friskgit/snares/bb43ea5e706a0ead6d65dd176a5c492b2f5d8f74/faust/snare/src/i_filtered_snare_8.dsp
faust
-*- compile-command: "cd .. && make sc src=i_filtered_snare_8.dsp && cd -"; -*-&& cd -"; -*- for PI definition for osci definition ---------------`Snare drum split up in X channels` -------------------------- Generating an impulse and feeding it to a generic_snarefs and on to a disperser. disperse.dsp doe not pas...
declare version " 0.1 "; declare author " Henrik Frisk " ; declare author " henrikfr "; declare license " BSD "; declare copyright "(c) dinergy 2018 "; import("stdfaust.lib"); impgrp(x) = vgroup("impulse", x); imp = ba.pulse(impgrp(hslider("tempo", 5000, 500, 10000, 1))); process = component("generic_snarefs.dsp")...
82abfce0d2fc4abbbfeb8b31b09584bebe924c8b1d19bdac40cddb196fc141ca
friskgit/snares
i_dispersed_snare.dsp
// -*- compile-command: "cd .. && make jack src=i_dispersed_snare.dsp && cd -"; -*-&& cd -"; -*- declare version " 0.1 "; declare author " Henrik Frisk " ; declare author " henrikfr "; declare license " BSD "; declare copyright "(c) dinergy 2018 "; import("stdfaust.lib"); import("math.lib") ; // for PI definition imp...
https://raw.githubusercontent.com/friskgit/snares/bb43ea5e706a0ead6d65dd176a5c492b2f5d8f74/faust/snare/src/i_dispersed_snare.dsp
faust
-*- compile-command: "cd .. && make jack src=i_dispersed_snare.dsp && cd -"; -*-&& cd -"; -*- for PI definition for osci definition ---------------`Snare drum dispersing over X channels` -------------------------- Generating an impulse and feeding it to a generic_snarefs and on to a disperser. disperse.dsp doe no...
declare version " 0.1 "; declare author " Henrik Frisk " ; declare author " henrikfr "; declare license " BSD "; declare copyright "(c) dinergy 2018 "; import("stdfaust.lib"); impgrp(x) = vgroup("impulse", x); imp = ba.pulse(impgrp(hslider("pulse", 5000, 500, 10000, 1))); process = imp : component("generic_snarefs...
2d3aeb3ce09684d737654b36d912a540e01b704bf0a1006ed33da34a53047ac5
friskgit/snares
o_generic_snarefs.dsp
// -*- compile-command: "cd .. && make jack src=o_generic_snarefs.dsp && cd -"; -*-&& cd -"; -*- declare version " 0.1 "; declare author " Henrik Frisk " ; declare author " henrikfr "; declare license " BSD "; declare copyright "(c) dinergy 2018 "; import("stdfaust.lib"); import("math.lib") ; // for PI definition imp...
https://raw.githubusercontent.com/friskgit/snares/bb43ea5e706a0ead6d65dd176a5c492b2f5d8f74/faust/snare/src/o_generic_snarefs.dsp
faust
-*- compile-command: "cd .. && make jack src=o_generic_snarefs.dsp && cd -"; -*-&& cd -"; -*- for PI definition for osci definition ---------------`Single snare drum` -------------------------- Taking an impulse as input and feeding it to a generic_snarefs. Paramters - tempo: tempo of impulse - see inherited p...
declare version " 0.1 "; declare author " Henrik Frisk " ; declare author " henrikfr "; declare license " BSD "; declare copyright "(c) dinergy 2018 "; import("stdfaust.lib"); impgrp(x) = vgroup("impulse", x); imp = ba.pulse(impgrp(hslider("tempo", 5000, 5, 10000, 1))); process = component("generic_snarefs.dsp") :...
9423f180a1c87bc352b0396a1d579e8717e78ed046c5177e1ecf114e3431e0ea
madskjeldgaard/komet
KometDelay.dsp
declare name "KometDelay"; declare author "Yann Orlarey"; declare author "Mads Kjeldgaard"; declare copyright "Grame"; declare version "1.0"; declare license "STK-4.3"; //--------------------------process---------------------------- // // A stereo smooth delay with a feedback control // // This example shows how t...
https://raw.githubusercontent.com/madskjeldgaard/komet/b7123007d7af668181d4741f6c9746b37fca8729/faust/KometDelay.dsp
faust
--------------------------process---------------------------- A stereo smooth delay with a feedback control This example shows how to use sdelay, a delay that doesn't click and doesn't transpose when the delay time is changed -------------------------------------------------------------
declare name "KometDelay"; declare author "Yann Orlarey"; declare author "Mads Kjeldgaard"; declare copyright "Grame"; declare version "1.0"; declare license "STK-4.3"; import("stdfaust.lib"); process = par(i, 1, voice) with { voice = (+ : de.sdelay(N, interp, dtime)) ~ *(fback); N = int(2^19); interp ...
17d5792a53d090183b97e90ea38da2d78af0a1a392305392b3b48a83b8d5ee78
sekisushai/ambitools
soundcheck.dsp
declare name "Soundcheck"; declare version "1.0"; declare author "Pierre Lecomte"; declare license "BSD"; declare copyright "(c) GRAME 2006"; // Description: Multichannel audio tester. The test signal are among: sinus tone, white noise, pink noise, audio input. // Input: 1 // Outputs: N import(...
https://raw.githubusercontent.com/sekisushai/ambitools/2d21b7cc7cfe9bc35d91d51ec05bf9250372f0ce/Faust/src/soundcheck.dsp
faust
Description: Multichannel audio tester. The test signal are among: sinus tone, white noise, pink noise, audio input. Input: 1 Outputs: N User interface ----------------
declare name "Soundcheck"; declare version "1.0"; declare author "Pierre Lecomte"; declare license "BSD"; declare copyright "(c) GRAME 2006"; import("stdfaust.lib"); N=50; pink = f : (+ ~ g) with { f(x) = 0.04957526213389*x - 0.06305581334498*x' + 0.01483220320740*x''; ...
b831c35d53c6c7b33149e543b91c1a41cf53b4c6e5bb57eb1e246138a68d0906
micbuffa/WebAudioPlugins
StereoFreqShifter.dsp
declare name "Stereo Frequency Shifter"; declare description "Stereo Frequency Shifting"; declare author "Oli Larkin (contact@olilarkin.co.uk)"; declare copyright "Oliver Larkin"; declare version "0.1"; declare licence "GPL"; import("stdfaust.lib"); import("FrequencyShifter.lib"); // Generic bypass mecanism bypass = ...
https://raw.githubusercontent.com/micbuffa/WebAudioPlugins/2fab2ee55d131aa5de753dc2dd3b3723fbd5b274/examples/plugins/Faust/Oliver-Larkin/StereoFrequencyShifter/Original%20Faust%20Code/StereoFreqShifter.dsp
faust
Generic bypass mecanism
declare name "Stereo Frequency Shifter"; declare description "Stereo Frequency Shifting"; declare author "Oli Larkin (contact@olilarkin.co.uk)"; declare copyright "Oliver Larkin"; declare version "0.1"; declare licence "GPL"; import("stdfaust.lib"); import("FrequencyShifter.lib"); bypass = checkbox("bypass"); block_...
b1de2f8bff28c454857aaee0d3698995417989cbf6059579c5ba299afd78d9f1
tomara-x/magi
dandeliongirl.dsp
//trans rights declare name "dandeliongirl"; declare author "amy universe"; declare version "0.05"; declare license "WTFPL"; import("stdfaust.lib"); pcharm = _ <: (*(wet) <: (sum(i,N,_ : ef.transpose(w*((i+1)*sw+(1-sw)),x,s*i))/N)), *(1-wet) :> _ with { N = 16; w = ba.sec2samp(vslider("[0]window length (s) ...
https://raw.githubusercontent.com/tomara-x/magi/d741d3f9d3503bfdaa2a873ce84a641ed329c13c/effect/dandeliongirl.dsp
faust
trans rights
declare name "dandeliongirl"; declare author "amy universe"; declare version "0.05"; declare license "WTFPL"; import("stdfaust.lib"); pcharm = _ <: (*(wet) <: (sum(i,N,_ : ef.transpose(w*((i+1)*sw+(1-sw)),x,s*i))/N)), *(1-wet) :> _ with { N = 16; w = ba.sec2samp(vslider("[0]window length (s) [style:knob]",0...
9b8de21eaee5dd3a9680fce41543f8863280e7101728a74552e1f7dffab3b2d0
jameslnrd/mi_introduction_workshop_2020
paramOsc.dsp
declare name "Param Oscillator"; declare author "James Leonard"; declare date "April 2020"; /* ========= DESCRITPION ============= A basic oscillator with labelled stiffness and damping parameters - inputs: force impulse - outputs: oscillator' position. - controls: none. */ import("stdfaust.lib");...
https://raw.githubusercontent.com/jameslnrd/mi_introduction_workshop_2020/2f487dbc5b8e7cd83cbd962254e737bdb82948f6/01_ParamControl/paramOsc.dsp
faust
========= DESCRITPION ============= A basic oscillator with labelled stiffness and damping parameters - inputs: force impulse - outputs: oscillator' position. - controls: none. routed positions outputs routed forces pass-through ========= MIMS SCRIPT USED FOR MODEL GENERATION ============= # M...
declare name "Param Oscillator"; declare author "James Leonard"; declare date "April 2020"; import("stdfaust.lib"); import("mi.lib"); in1 = button("Frc Input 1"): ba.impulsify* 0.25; OutGain = 1; K = 0.1; Z = 0.0003; model = ( mi.oscil(1., K, Z, 0, 0., 0.), par(i, nbFrcIn,_): RoutingMassToLink , par(i,...
4cdb017374a3629f89aae04473b705b3c982fd143073b00bd05bf5296e7cbd81
bluenote10/RustFaustExperiments
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("stdfaust.lib"); Fader(in) = ba.db2l...
https://raw.githubusercontent.com/bluenote10/RustFaustExperiments/23dab88f47cff4f3ad9efe0119b2d32ed1b5559b/Benchmarks/dsp/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("stdfaust.lib"); Fader(in) = ba.db2linear(vslider("Input %in", -10, -96, 4, 0.1)); Mixer(N,out) = hgroup("Output %out", par(in, N, *(Fader(in)) ) :> _ ); Matrix(N,M) = tgroup ...
4b7ef515eb8104f6f2f285bade0696a86f34c4e0b684af6fded73477d651e660
friskgit/snares
i_filtered_snare.dsp
// -*- compile-command: "cd .. && make jack src=i_filtered_snare.dsp && cd -"; -*-&& cd -"; -*- declare version " 0.1 "; declare author " Henrik Frisk " ; declare author " henrikfr "; declare license " BSD "; declare copyright "(c) dinergy 2018 "; import("stdfaust.lib"); import("math.lib") ; // for PI definition impo...
https://raw.githubusercontent.com/friskgit/snares/bb43ea5e706a0ead6d65dd176a5c492b2f5d8f74/faust/snare/src/i_filtered_snare.dsp
faust
-*- compile-command: "cd .. && make jack src=i_filtered_snare.dsp && cd -"; -*-&& cd -"; -*- for PI definition for osci definition ---------------`Snare drum split up in X channels` -------------------------- Taking an impulse as input and feeding it to a generic_snarefs and on to a disperser. disperse.dsp does n...
declare version " 0.1 "; declare author " Henrik Frisk " ; declare author " henrikfr "; declare license " BSD "; declare copyright "(c) dinergy 2018 "; import("stdfaust.lib"); impgrp(x) = vgroup("impulse", x); imp = ba.pulse(impgrp(hslider("tempo", 5000, 20, 10000, 2))) : si.smooth(0.999); process = imp : componen...
bbc3e3205eccd0894ace9c7b05a6fecdba565f5b55b9de8fc59d169e86651f88
magnetophon/DigiDrie
korg35lpf_approx.dsp
declare korg35LPF author "Eric Tarr"; declare korg35LPF license "MIT-style STK-4.3 license"; import("stdfaust.lib"); korg35LPF(freq,Q) = _ <: (s1,s2,s3,y) : !,!,!,_ letrec{ 's1 = _-s1:_*(alpha*2):_+s1; 's2 = _-s1:_*alpha:_+s1:_+(s3*B3):_+(s2*B2):_*alpha0:_-s3:_*alpha:_+s3:_*K:_-s2:_*(alpha*2):_+s2; 's3 = _-s1:_...
https://raw.githubusercontent.com/magnetophon/DigiDrie/a9f79d502e1f8d522e5f47e0c460ae99e80f9441/faust/benchmark/korg35lfp/korg35lpf_approx.dsp
faust
Only valid in [0, 0.498). 0.5 is nyquist frequency. freq = 2*(10^(3*normFreq+1));
declare korg35LPF author "Eric Tarr"; declare korg35LPF license "MIT-style STK-4.3 license"; import("stdfaust.lib"); korg35LPF(freq,Q) = _ <: (s1,s2,s3,y) : !,!,!,_ letrec{ 's1 = _-s1:_*(alpha*2):_+s1; 's2 = _-s1:_*alpha:_+s1:_+(s3*B3):_+(s2*B2):_*alpha0:_-s3:_*alpha:_+s3:_*K:_-s2:_*(alpha*2):_+s2; 's3 = _-s1:_...
3a6c9317977991a0e164c5e584327e3f5bdcda4712956fee226588ba282294bb
goofy2k/ESP32_faust2api
spat.dsp
declare name "spat"; declare version "1.0"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2006"; //========================================================== // // GMEM SPAT // implementation of L. Pottier Spatializer // //===================================================...
https://raw.githubusercontent.com/goofy2k/ESP32_faust2api/1e12506b66da095296a1f11dd1dbea4ed6bc35b0/sound_engines/faust2api/all_engines/spat.dsp
faust
========================================================== GMEM SPAT implementation of L. Pottier Spatializer ========================================================== ------------------------------------------------------ EXEMPLE : une entree mono spatialisee sur 8 sorties ------------------------------...
declare name "spat"; declare version "1.0"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2006"; import("stdfaust.lib"); angle = hslider("angle", 0.0, 0, 1, 0.01); distance = hslider("distance", 0.5, 0, 1, 0.01); process = vgroup("Spatializer 1x8", sp.spat(8, angle, di...
f602d665556f23f691fa665dc8a3a57df58d3f1d389a634b9280336bd70b5599
tomara-x/magi
overpassgirl.dsp
//trans rights declare name "overpassgirl"; declare author "amy universe"; declare version "0.00"; declare license "WTFPL"; import("stdfaust.lib"); op(amp,frq,fb) = (_+_ : *(ma.PI) : os.oscp(frq)*amp) ~ *(fb); dc = vslider("dc [style:knob]", 1,0,5000,0.1); mod = 0 : seq(i,4,op(a(i),f(i),fb(i))) : *(vslider("mod gai...
https://raw.githubusercontent.com/tomara-x/magi/2678f456f4b7e266d6e7043cbd09c2600eee6672/effect/overpassgirl.dsp
faust
trans rights
declare name "overpassgirl"; declare author "amy universe"; declare version "0.00"; declare license "WTFPL"; import("stdfaust.lib"); op(amp,frq,fb) = (_+_ : *(ma.PI) : os.oscp(frq)*amp) ~ *(fb); dc = vslider("dc [style:knob]", 1,0,5000,0.1); mod = 0 : seq(i,4,op(a(i),f(i),fb(i))) : *(vslider("mod gain [style:knob]"...
72fd8d16838082d26ef800b96f21b610515fddf6873985c807463ef7d2340bae
tomara-x/magi
rubberbandgirl.dsp
//trans rights declare name "rubberbandgirl"; declare author "amy universe"; declare version "0.01"; declare license "WTFPL"; import("stdfaust.lib"); N = 8; bands = par(i,N,fi.svf.bp(f(i),q(i))) with { f(x) = vslider("h:bands/v:%x/[1]f [style:knob]",x*2500+1,1,2e4,1); q(x) = vslider("h:bands/v:%x/[0]q [styl...
https://raw.githubusercontent.com/tomara-x/magi/37de1a09577b8bc58e566f396fac38f2408a597e/effect/rubberbandgirl.dsp
faust
trans rights split the gates?
declare name "rubberbandgirl"; declare author "amy universe"; declare version "0.01"; declare license "WTFPL"; import("stdfaust.lib"); N = 8; bands = par(i,N,fi.svf.bp(f(i),q(i))) with { f(x) = vslider("h:bands/v:%x/[1]f [style:knob]",x*2500+1,1,2e4,1); q(x) = vslider("h:bands/v:%x/[0]q [style:knob]",1,0.1,...
4e22dcb659cca9dcff1bd1cd3817edccf5fb3a5664bdda004b6a89487e622848
magnetophon/DigiDrie
oberheim_approx.dsp
declare oberheim author "Eric Tarr"; declare oberheim license "MIT-style STK-4.3 license"; import("stdfaust.lib"); oberheimF(freq,Q) = _<:(s1,s2,ybsf,ybpf,yhpf,ylpf) : !,!,_,_,_,_ letrec{ 's1 = _-s2:_-(s1*FBs1):_*alpha0:_*g<:_,(_+s1:ef.cubicnl(0.0,0)):>_; 's2 = _-s2:_-(s1*FBs1):_*alpha0:_*g:_+s1:ef.cubicnl(0.0,0)...
https://raw.githubusercontent.com/magnetophon/DigiDrie/a9f79d502e1f8d522e5f47e0c460ae99e80f9441/faust/benchmark/oberheim/oberheim_approx.dsp
faust
Compute the BSF, BPF, HPF, LPF outputs Only valid in [0, 0.498). 0.5 is nyquist frequency.
declare oberheim author "Eric Tarr"; declare oberheim license "MIT-style STK-4.3 license"; import("stdfaust.lib"); oberheimF(freq,Q) = _<:(s1,s2,ybsf,ybpf,yhpf,ylpf) : !,!,_,_,_,_ letrec{ 's1 = _-s2:_-(s1*FBs1):_*alpha0:_*g<:_,(_+s1:ef.cubicnl(0.0,0)):>_; 's2 = _-s2:_-(s1*FBs1):_*alpha0:_*g:_+s1:ef.cubicnl(0.0,0)...
9bf25563ea613de6718824699478e6b9ada9f7a01705a7550934f8148ae607e1
grame-cncm/smartfaust
sfTrashComb.dsp
declare name "sfTrashComb"; declare version "1.4"; declare author "Christophe Lebreton"; declare license "BSD & STK-4.3"; declare copyright "SmartFaust - GRAME(c)2013-2018"; import("stdfaust.lib"); //-------------------- MAIN ------------------------------- // fb_fcomb from Julius Smith filter lib and ...
https://raw.githubusercontent.com/grame-cncm/smartfaust/0a9c93ea7eda9899e1401402901848f221366c99/src/sfTrashComb/sfTrashComb.dsp
faust
-------------------- MAIN ------------------------------- fb_fcomb from Julius Smith filter lib and adapted by Christophe Lebreton to SmartFaust project https://ccrma.stanford.edu/~jos/pasp/Feedback_Comb_Filters.html 2 exposant 16 soit 65536 samples 1<<16 [accx:1 0 2300 0] [accz:-1 0 0.5 0] [accy:1 0 50 0]
declare name "sfTrashComb"; declare version "1.4"; declare author "Christophe Lebreton"; declare license "BSD & STK-4.3"; declare copyright "SmartFaust - GRAME(c)2013-2018"; import("stdfaust.lib"); process = fi.fb_fcomb(maxdel,del,b0,aN):*(volume):*(out) with { del = freq * ma.SR:si.smooth(0.99)...
77c1c05c479f57a0f46b3a4074c16023c8ca38ee7cd24e0c5e495f4e4b8827cd
grame-cncm/smartfaust
sfSiren.dsp
declare name "sfSiren"; declare version "0.3"; declare author "Christophe Lebreton"; declare license "BSD"; declare copyright "SmartFaust - GRAME(c)2013-2018"; import("stdfaust.lib"); //-------------------- MAIN ------------------------------- process = FM_synth:*(out):max(-0.99):min(0.99) with { ou...
https://raw.githubusercontent.com/grame-cncm/smartfaust/0a9c93ea7eda9899e1401402901848f221366c99/src/sfSiren/sfSiren.dsp
faust
-------------------- MAIN ------------------------------- -------------------- PARAMETERS ------------------------------- to be compatible with android smartphone order of filter simple FM synthesis /////////////////////////////////
declare name "sfSiren"; declare version "0.3"; declare author "Christophe Lebreton"; declare license "BSD"; declare copyright "SmartFaust - GRAME(c)2013-2018"; import("stdfaust.lib"); process = FM_synth:*(out):max(-0.99):min(0.99) with { out = checkbox ("v:sfSiren/ON/OFF"):si.smooth(0.998); }; lo...
7f74e5e3b5c57420b5061984b5f0ebeb968a3a6a37c98b5ec55c238b153bedbe
jameslnrd/mi_introduction_workshop_2020
pluckedOsc.dsp
declare name "Plucked Oscillator"; declare author "James Leonard"; declare date "April 2020"; /* ========= DESCRITPION ============= Plucking a simple oscillator - inputs: position control of the "plucking" mass - outputs: oscillator position. - controls: none. */ import("stdfaust.lib"); in1 = hs...
https://raw.githubusercontent.com/jameslnrd/mi_introduction_workshop_2020/2f487dbc5b8e7cd83cbd962254e737bdb82948f6/05_PluckedOscillator/pluckedOsc.dsp
faust
========= DESCRITPION ============= Plucking a simple oscillator - inputs: position control of the "plucking" mass - outputs: oscillator position. - controls: none. routed positions outputs routed forces pass-through ========= MIMS SCRIPT USED FOR MODEL GENERATION ============= # MIMS script f...
declare name "Plucked Oscillator"; declare author "James Leonard"; declare date "April 2020"; import("stdfaust.lib"); in1 = hslider("Pluck Position", 0, -1, 1, 0.001):si.smoo; OutGain = 8; model = ( mi.oscil(1., 0.1, 0.0003, 0, 0., 0.), mi.posInput(1.): RoutingMassToLink : mi.nlPluck(0.5, 0.1, 0.001, 0....
62ecd11d3d6780919d944fe8c699e470abb25335ab5d2f581cd992d00d4bfae4
dariosanfilippo/modified_lorenz
modified_lorenz.dsp
// ============================================================================= // Modified Lorenz complex generator (A) // ============================================================================= // // Complex sound generator based on modified Lorenz equations. // The model is structurally-stable through...
https://raw.githubusercontent.com/dariosanfilippo/modified_lorenz/7f0b628ed4b8e4047a3709a01d26ac3e2512b721/modified_lorenz.dsp
faust
============================================================================= Modified Lorenz complex generator (A) ============================================================================= Complex sound generator based on modified Lorenz equations. The model is structurally-stable through hyperbolic ...
import("stdfaust.lib"); declare name "Modified Lorenz complex generator"; declare author "Dario Sanfilippo"; declare copyright "Copyright (C) 2021 Dario Sanfilippo <sanfilippo.dario@gmail.com>"; declare version "1.1"; declare license "GPL v3.0 license"; lorenz(l, s, r, b, dt, x_0, y_0, z_0) = x_level(out * (x /...
5c6b9b7c58551d0a3eb77f7e692d7be4c542f637dd45e6a514a4dca9e4d6862f
goofy2k/ESP32_faust2api
oneSourceToStereo.dsp
declare name "oneSourceToStereo"; declare version "1.0"; declare author "CICM"; declare license "BSD"; declare copyright "(c)CICM 2013"; import("stdfaust.lib"); r1 = hslider("Radius", 1.0, 0, 5, 0.001) : si.smooth(ba.tau2pole(0.02)); a1 = hslider("Angle", 0, ma.PI*(-2), ma.PI*2, 0.001) : si.smooth(ba.tau2pole(0.02));...
https://raw.githubusercontent.com/goofy2k/ESP32_faust2api/1e12506b66da095296a1f11dd1dbea4ed6bc35b0/sound_engines/faust2api/all_engines/oneSourceToStereo.dsp
faust
declare name "oneSourceToStereo"; declare version "1.0"; declare author "CICM"; declare license "BSD"; declare copyright "(c)CICM 2013"; import("stdfaust.lib"); r1 = hslider("Radius", 1.0, 0, 5, 0.001) : si.smooth(ba.tau2pole(0.02)); a1 = hslider("Angle", 0, ma.PI*(-2), ma.PI*2, 0.001) : si.smooth(ba.tau2pole(0.02));...
954e59b98ceba9774fd2b0e1ebfffc88ca0e09fe7575872075666688b6da537c
tomara-x/magi
nailgirl.dsp
//trans rights declare name "nailgirl"; declare author "amy universe"; declare version "1.01"; declare license "WTFPL"; import("stdfaust.lib"); dist = _ <: (*(wet) : seq(i,3,*(g(i)) : f(s(i))) *gf), *(1-wet) :> _ with { f(x) = _ <: aa.acosh2,aa.arccos2,aa.arcsin2,aa.arctan2,aa.asinh2, aa.clip(-1,...
https://raw.githubusercontent.com/tomara-x/magi/9416e40d491ddded160941410df80856d88dd34a/effect/nailgirl.dsp
faust
trans rights
declare name "nailgirl"; declare author "amy universe"; declare version "1.01"; declare license "WTFPL"; import("stdfaust.lib"); dist = _ <: (*(wet) : seq(i,3,*(g(i)) : f(s(i))) *gf), *(1-wet) :> _ with { f(x) = _ <: aa.acosh2,aa.arccos2,aa.arcsin2,aa.arctan2,aa.asinh2, aa.clip(-1,1),aa.cosine2,a...
c72c63bdd88ca2cd992dc4a0732920f3c9f00660f4e10e36b6dbf687589c5032
s-e-a-m/faust-libraries
vcs3osc1.dsp
declare name "EMS VCS3 OSCILLATOR 1"; declare version "001"; declare author "Giuseppe Silvi"; declare license "GNU-GPL-v3"; declare copyright "(c)SEAM 2019"; declare description "EMS VCS3 OSCILLATOR 1"; import("stdfaust.lib"); import("../seam.lib"); process = vcs3osc1;
https://raw.githubusercontent.com/s-e-a-m/faust-libraries/9120cccb9335f42407062eb4bf149188d8018b07/block-diagrams/vcs3osc1.dsp
faust
declare name "EMS VCS3 OSCILLATOR 1"; declare version "001"; declare author "Giuseppe Silvi"; declare license "GNU-GPL-v3"; declare copyright "(c)SEAM 2019"; declare description "EMS VCS3 OSCILLATOR 1"; import("stdfaust.lib"); import("../seam.lib"); process = vcs3osc1;
ca7c0e438187d12641855a02e5e02c744c486633252a2fb96760cf942e40a414
s-e-a-m/faust-libraries
lrpanq.dsp
declare name "LR QUADRATIC PANNER"; declare version "001"; declare author "Giuseppe Silvi"; declare license "GNU-GPL-v3"; declare copyright "(c)SEAM 2019"; declare description "LR QUADRATIC PANNER"; import("stdfaust.lib"); import("../../seam.lib"); process = _,p : lrpanq;
https://raw.githubusercontent.com/s-e-a-m/faust-libraries/9120cccb9335f42407062eb4bf149188d8018b07/examples/app/lrpanq.dsp
faust
declare name "LR QUADRATIC PANNER"; declare version "001"; declare author "Giuseppe Silvi"; declare license "GNU-GPL-v3"; declare copyright "(c)SEAM 2019"; declare description "LR QUADRATIC PANNER"; import("stdfaust.lib"); import("../../seam.lib"); process = _,p : lrpanq;
9cdf21b3b3b54cfbfdefcdea6469df490e16d8dd86fd2d8715a1e5b2fa1d296d
s-e-a-m/faust-libraries
charlieverb.dsp
declare name "EMS VCS3 OSCILLATOR 1"; declare version "001"; declare author "Giuseppe Silvi"; declare license "GNU-GPL-v3"; declare copyright "(c)SEAM 2019"; declare description "EMS VCS3 OSCILLATOR 1"; import("stdfaust.lib"); import("../seam.lib"); process = charlieverb;
https://raw.githubusercontent.com/s-e-a-m/faust-libraries/9120cccb9335f42407062eb4bf149188d8018b07/block-diagrams/charlieverb.dsp
faust
declare name "EMS VCS3 OSCILLATOR 1"; declare version "001"; declare author "Giuseppe Silvi"; declare license "GNU-GPL-v3"; declare copyright "(c)SEAM 2019"; declare description "EMS VCS3 OSCILLATOR 1"; import("stdfaust.lib"); import("../seam.lib"); process = charlieverb;
c774898ab4196f0ddb5796cca837cc750f10627d824aecb710b6ae0cbc27e173
s-e-a-m/faust-libraries
sdmx.dsp
declare name "SUM AND DIFFERENCE MATRIX"; declare version "001"; declare author "Giuseppe Silvi"; declare license "GNU-GPL-v3"; declare copyright "(c)SEAM 2019"; declare description "SUM AND DIFFERENCE MATRIX"; import("stdfaust.lib"); import("../seam.lib"); process = sdmx;
https://raw.githubusercontent.com/s-e-a-m/faust-libraries/9120cccb9335f42407062eb4bf149188d8018b07/block-diagrams/sdmx.dsp
faust
declare name "SUM AND DIFFERENCE MATRIX"; declare version "001"; declare author "Giuseppe Silvi"; declare license "GNU-GPL-v3"; declare copyright "(c)SEAM 2019"; declare description "SUM AND DIFFERENCE MATRIX"; import("stdfaust.lib"); import("../seam.lib"); process = sdmx;
8b5b15f00123c4ba60f8a78848f1e28ff97df7ef08eae67fc1300acb8c3ed018
Sylcantor/wam-web-components
OwlDirty.dsp
declare name "Owlgazer Dirty Reverb"; declare version "1.0.0"; declare author "Xavier Godart"; declare copyright "(c) Empirical Noises 2017"; import("stdfaust.lib"); owlgazer(mix,decay,hicut,gain) = _,_ <: ( _,_ <: (si.bus(N*2) :> networkline)~(feedbackline) :> distorsion,distors...
https://raw.githubusercontent.com/Sylcantor/wam-web-components/c54352dae5b80bcf6d8d4c306ea22e2c91a12b08/plugins/OwlDirty/OwlDirty.dsp
faust
declare name "Owlgazer Dirty Reverb"; declare version "1.0.0"; declare author "Xavier Godart"; declare copyright "(c) Empirical Noises 2017"; import("stdfaust.lib"); owlgazer(mix,decay,hicut,gain) = _,_ <: ( _,_ <: (si.bus(N*2) :> networkline)~(feedbackline) :> distorsion,distors...
799726189e832488925cd5d0a92d66d82237c1706b2fc07387f0558513161413
s-e-a-m/faust-libraries
crap.dsp
declare name "CURTIS ROADS ALLPASS FILTER"; declare version "001"; declare author "Giuseppe Silvi"; declare license "GNU-GPL-v3"; declare copyright "(c)SEAM 2020"; declare description "CURTIS ROADS ALLPASS FILTER"; import("stdfaust.lib"); import("../../../seam.lib"); process = lsweep : cmtap(512,0.9);
https://raw.githubusercontent.com/s-e-a-m/faust-libraries/9120cccb9335f42407062eb4bf149188d8018b07/plots/dsp/allpass/crap.dsp
faust
declare name "CURTIS ROADS ALLPASS FILTER"; declare version "001"; declare author "Giuseppe Silvi"; declare license "GNU-GPL-v3"; declare copyright "(c)SEAM 2020"; declare description "CURTIS ROADS ALLPASS FILTER"; import("stdfaust.lib"); import("../../../seam.lib"); process = lsweep : cmtap(512,0.9);
32c1c090f1be322d0b3d096734fdbaba6f197abc7b9df90c0b43853ab21bb688
s-e-a-m/faust-libraries
midside.dsp
declare name "MID SIDE STEREO PAIR MODEL"; declare version "001"; declare author "Giuseppe Silvi"; declare license "GNU-GPL-v3"; declare copyright "(c)SEAM 2019"; declare description "MID SIDE STEREO PAIR MODEL"; import("stdfaust.lib"); import("../seam.lib"); process = midside;
https://raw.githubusercontent.com/s-e-a-m/faust-libraries/9120cccb9335f42407062eb4bf149188d8018b07/block-diagrams/midside.dsp
faust
declare name "MID SIDE STEREO PAIR MODEL"; declare version "001"; declare author "Giuseppe Silvi"; declare license "GNU-GPL-v3"; declare copyright "(c)SEAM 2019"; declare description "MID SIDE STEREO PAIR MODEL"; import("stdfaust.lib"); import("../seam.lib"); process = midside;
f782d6fae8a2e653f6d0f29e26b834e53569a8c010f0101b13bfeaadca8f8ab6
s-e-a-m/faust-libraries
crcpan.dsp
declare name "CURTIS ROADS CONSTANT POWER PANNING"; declare version "001"; declare author "Giuseppe Silvi"; declare license "GNU-GPL-v3"; declare copyright "(c)SEAM 2020"; declare description "CURTIS ROADS CONSTANT POWER PANNING"; import("stdfaust.lib"); import("../seam.lib"); process = crcppan;
https://raw.githubusercontent.com/s-e-a-m/faust-libraries/9120cccb9335f42407062eb4bf149188d8018b07/block-diagrams/crcpan.dsp
faust
declare name "CURTIS ROADS CONSTANT POWER PANNING"; declare version "001"; declare author "Giuseppe Silvi"; declare license "GNU-GPL-v3"; declare copyright "(c)SEAM 2020"; declare description "CURTIS ROADS CONSTANT POWER PANNING"; import("stdfaust.lib"); import("../seam.lib"); process = crcppan;
3d8b3f9a5442b9c681dfe9b839513b80724dffc4a0ec6aedd0ebb9917ae9c670
Sylcantor/wam-web-components
ThruZeroFlanger.dsp
declare name "Thru Zero Flanger"; declare description "Stereo Thru Zero Flanger - warning can ZERO the sound!"; declare author "Oli Larkin (contact@olilarkin.co.uk)"; declare copyright "Oliver Larkin"; declare version "0.1"; declare licence "GPL"; import("stdfaust.lib"); lutsize = 1 << 9; maxdtms = 20; smooth_time = ...
https://raw.githubusercontent.com/Sylcantor/wam-web-components/c54352dae5b80bcf6d8d4c306ea22e2c91a12b08/plugins/ThruZeroFlanger/ThruZeroFlanger.dsp
faust
inverted
declare name "Thru Zero Flanger"; declare description "Stereo Thru Zero Flanger - warning can ZERO the sound!"; declare author "Oli Larkin (contact@olilarkin.co.uk)"; declare copyright "Oliver Larkin"; declare version "0.1"; declare licence "GPL"; import("stdfaust.lib"); lutsize = 1 << 9; maxdtms = 20; smooth_time = ...
0b740f06d620d058e066ec30c55833038d22da576fd3fb8d388273d4d9da8133
johannphilippe/paw2022
polyphonic_detection.dsp
declare name "polyphonic_detection"; declare version "1.0"; declare author "Johann Philippe"; declare license "MIT"; declare copyright "(c) Johann Philippe 2022"; import("stdfaust.lib"); /* poly_detector : A polyphonic pitch detector based on parallel bandpass filters Inp...
https://raw.githubusercontent.com/johannphilippe/paw2022/d9b921a44e72bab11e457a13a1b43a4eabca53df/examples/polyphonic_detection.dsp
faust
poly_detector : A polyphonic pitch detector based on parallel bandpass filters Input Arguments : * thresh : threshold detection - when the RMS level of a band crosses the threshold, it will output the RMS of the band, else 0 * rms_avg : RMS average (duration in seconds) * sig : input signal Output :...
declare name "polyphonic_detection"; declare version "1.0"; declare author "Johann Philippe"; declare license "MIT"; declare copyright "(c) Johann Philippe 2022"; import("stdfaust.lib"); N_FILTER = 4; N_BANDS = 105; poly_detector(thresh, rms_avg, sig) = par(n, N_BANDS, cha...
89b57e6e1f8aa21ad88105071d63b64a9bf5b8da1147d0faee1b0e41f2867e70
s-e-a-m/faust-libraries
gnap.dsp
declare name "GIORGIO NOTTOLI ALLPASS FILTER DESIGN"; declare version "001"; declare author "Giuseppe Silvi"; declare license "GNU-GPL-v3"; declare copyright "(c)SEAM 2020"; declare description "GIORGIO NOTTOLI ALLPASS FILTER DESIGN"; import("stdfaust.lib"); import("../../../seam.lib"); process = lsweep : gnalp(512,0...
https://raw.githubusercontent.com/s-e-a-m/faust-libraries/9120cccb9335f42407062eb4bf149188d8018b07/plots/dsp/allpass/gnap.dsp
faust
declare name "GIORGIO NOTTOLI ALLPASS FILTER DESIGN"; declare version "001"; declare author "Giuseppe Silvi"; declare license "GNU-GPL-v3"; declare copyright "(c)SEAM 2020"; declare description "GIORGIO NOTTOLI ALLPASS FILTER DESIGN"; import("stdfaust.lib"); import("../../../seam.lib"); process = lsweep : gnalp(512,0...
931ce9e68cae39e87dc5d70eec9692e9c22eaeb90b22c63266ef853e3844f399
s-e-a-m/faust-libraries
jsap.dsp
declare name "STD FAUST ALLPASS"; declare version "001"; declare author "Giuseppe Silvi"; declare license "GNU-GPL-v3"; declare copyright "(c)SEAM 2020"; declare description "STD FAUST ALLPASS"; import("stdfaust.lib"); import("../../../seam.lib"); process = lsweep : fi.allpass_comb((ma.SR/2),512,0.9);
https://raw.githubusercontent.com/s-e-a-m/faust-libraries/9120cccb9335f42407062eb4bf149188d8018b07/plots/dsp/allpass/jsap.dsp
faust
declare name "STD FAUST ALLPASS"; declare version "001"; declare author "Giuseppe Silvi"; declare license "GNU-GPL-v3"; declare copyright "(c)SEAM 2020"; declare description "STD FAUST ALLPASS"; import("stdfaust.lib"); import("../../../seam.lib"); process = lsweep : fi.allpass_comb((ma.SR/2),512,0.9);
13ea63b5df92bbd2458e5cd2eec9456d040bf12fc1f37509ad2c19084a81e63b
s-e-a-m/faust-libraries
mspanlr.dsp
declare name "MID SIDE PANNER - LEFT RIGHT LOUDSPEAKER"; declare version "001"; declare author "Giuseppe Silvi"; declare license "GNU-GPL-v3"; declare copyright "(c)SEAM 2019"; declare description "MID SIDE PANNER - LEFT RIGHT LOUDSPEAKER"; import("stdfaust.lib"); import("../seam.lib"); process = mspan_lr;
https://raw.githubusercontent.com/s-e-a-m/faust-libraries/9120cccb9335f42407062eb4bf149188d8018b07/block-diagrams/mspanlr.dsp
faust
declare name "MID SIDE PANNER - LEFT RIGHT LOUDSPEAKER"; declare version "001"; declare author "Giuseppe Silvi"; declare license "GNU-GPL-v3"; declare copyright "(c)SEAM 2019"; declare description "MID SIDE PANNER - LEFT RIGHT LOUDSPEAKER"; import("stdfaust.lib"); import("../seam.lib"); process = mspan_lr;
642d5daa2f76ba332f25551d77165066af5c6c684f2aa1dff7ede87c7703a178
goofy2k/ESP32_faust2api
moogHalfLadder.dsp
declare name "moogHalfLadder"; declare description "Demonstration of moogHalfLadder"; declare author "Eric Tarr"; import("stdfaust.lib"); Q = hslider("Q",1,0.7072,25,0.01); normFreq = hslider("freq",0.1,0,1,0.001):si.smoo; switch = checkbox("Saw/Noise"); inputSignal = (no.noise *switch) , (os.sawtooth(100)*(1-switch)...
https://raw.githubusercontent.com/goofy2k/ESP32_faust2api/1e12506b66da095296a1f11dd1dbea4ed6bc35b0/sound_engines/faust2api/all_engines/moogHalfLadder.dsp
faust
declare name "moogHalfLadder"; declare description "Demonstration of moogHalfLadder"; declare author "Eric Tarr"; import("stdfaust.lib"); Q = hslider("Q",1,0.7072,25,0.01); normFreq = hslider("freq",0.1,0,1,0.001):si.smoo; switch = checkbox("Saw/Noise"); inputSignal = (no.noise *switch) , (os.sawtooth(100)*(1-switch)...
129746a0ed554f1f56bf8163456e564130dd67ad78df74e0193f49fa228606c3
jameslnrd/mi_introduction_workshop_2020
bouncingOsc.dsp
declare name "Boucing On an Oscillator"; declare author "James Leonard"; declare date "April 2020"; /* ========= DESCRITPION ============= A dropped mass falling onto an oscillator (due to gravity) - inputs: none, just gravity doing its thing. - outputs: oscillator position. - controls: none. Note...
https://raw.githubusercontent.com/jameslnrd/mi_introduction_workshop_2020/2f487dbc5b8e7cd83cbd962254e737bdb82948f6/04_Gravity/bouncingOsc.dsp
faust
========= DESCRITPION ============= A dropped mass falling onto an oscillator (due to gravity) - inputs: none, just gravity doing its thing. - outputs: oscillator position. - controls: none. Note: Beware, if using 32 bit precision gravity forces can become so small they are truncated in calculations ! ...
declare name "Boucing On an Oscillator"; declare author "James Leonard"; declare date "April 2020"; import("stdfaust.lib"); OutGain = 700; grav = 0.002; K = 0.04; model = ( mi.oscil(1., K, 0.0003, 0, 0., 0.), mi.mass(1, grav/ ma.SR, 0.5, 0.5): RoutingMassToLink : mi.collision(0.1, 0.02, 0, 0., 0.5), p...
29b41c97a929ade93fe792c807f9bf851f465efccdafaa0ef946535621f53a1b
jameslnrd/mi_introduction_workshop_2020
harmonicOscillator.dsp
declare name "Harmonic Oscillator"; declare author "James Leonard"; declare date "April 2020"; /* ========= DESCRITPION ============= The simplest mass-interaction construct: a harmonic oscillator, containing only one physical element (mi.osc). - inputs: force impulse - outputs: oscillator' position. ...
https://raw.githubusercontent.com/jameslnrd/mi_introduction_workshop_2020/2f487dbc5b8e7cd83cbd962254e737bdb82948f6/00_BasicOscillator/harmonicOscillator.dsp
faust
========= DESCRITPION ============= The simplest mass-interaction construct: a harmonic oscillator, containing only one physical element (mi.osc). - inputs: force impulse - outputs: oscillator' position. - controls: none. Note: The routing pattern could be simplified here (cf.diagram), as the model conta...
declare name "Harmonic Oscillator"; declare author "James Leonard"; declare date "April 2020"; import("stdfaust.lib"); OutGain = 1; model = ( mi.oscil(1., 0.1, 0.0003, 0, 0., 0.), par(i, nbFrcIn,_): RoutingMassToLink , par(i, nbFrcIn,_): par(i, nbOut+nbFrcIn, _): RoutingLinkToMass )~par(i, nbMass, _)...
2152b321a30648fc6a41933f114db2f1997acb42d591ccb4922d84c7c572e863
jameslnrd/mi_introduction_workshop_2020
audioParamOsc.dsp
declare name "Audio Param Oscillator"; declare author "James Leonard"; declare date "April 2020"; /* ========= DESCRITPION ============= A basic oscillator with labelled stiffness and damping parameters, controlled by sliders - inputs: force impulse - outputs: oscillator' position. - controls: stif...
https://raw.githubusercontent.com/jameslnrd/mi_introduction_workshop_2020/2f487dbc5b8e7cd83cbd962254e737bdb82948f6/02_AudioParamControl/audioParamOsc.dsp
faust
========= DESCRITPION ============= A basic oscillator with labelled stiffness and damping parameters, controlled by sliders - inputs: force impulse - outputs: oscillator' position. - controls: stiffness and damping. routed positions outputs routed forces pass-through ========= MIMS SCRIPT USED...
declare name "Audio Param Oscillator"; declare author "James Leonard"; declare date "April 2020"; import("stdfaust.lib"); in1 = button("Force Impulse"): ba.impulsify; in2 = hslider("Stiffness", 0.01, 0, 0.1, 0.0001):si.smoo; in3 = hslider("Damping", 0.0001, 0, 0.005, 0.000001):si.smoo; OutGain = 0.05; K = ...
3394e51ab1122a9fa96fd21ba1b071c8a8528e8f4b2c305b1dfa2b4c3aec5ee0
grame-cncm/smartfaust
sampler_pitch_shifter2_v0.1.dsp
declare name "sfPitchShifter"; declare version "1.1"; declare author "Christophe Lebreton"; declare license "BSD"; declare copyright "SmartFaust - GRAME(c)2013-2018"; import("stdfaust.lib"); //-------------------- MAIN ------------------------------- process = pitchshifter_drywet; // from FAUST example ...
https://raw.githubusercontent.com/grame-cncm/smartfaust/0a9c93ea7eda9899e1401402901848f221366c99/src/sfPlayer/sampler_pitch_shifter2_v0.1.dsp
faust
-------------------- MAIN ------------------------------- from FAUST example and adapted by Christophe Lebreton ---------------------------- very simple real time pitch shifter ---------------------------- fc= hslider("h:motion filter/high_cut [hidden:1]",10,0.01,10,0.01); order of filter faire une version en rempl...
declare name "sfPitchShifter"; declare version "1.1"; declare author "Christophe Lebreton"; declare license "BSD"; declare copyright "SmartFaust - GRAME(c)2013-2018"; import("stdfaust.lib"); process = pitchshifter_drywet; lowpassmotion = fi.lowpass(N,fc) with { fc=10; }; transpose (w, x, s, ...
44f64af3b540cfa5e7d427d6c83f011d4b41674fa06adc3d6c94a63a6241327b
s-e-a-m/faust-libraries
sdmx.dsp
declare name "SUM AND DIFFERENCE MATRIX"; declare version "001"; declare author "Giuseppe Silvi"; declare license "GNU-GPL-v3"; declare copyright "(c)SEAM 2019"; declare description "SUM AND DIFFERENCE MATRIX"; import("stdfaust.lib"); //import("../../seam.lib"); nsum = 0.707*(_+_); ndif = 0.707*(_-_); sdmx = _,_ <: n...
https://raw.githubusercontent.com/s-e-a-m/faust-libraries/9120cccb9335f42407062eb4bf149188d8018b07/examples/vst/sdmx.dsp
faust
import("../../seam.lib");
declare name "SUM AND DIFFERENCE MATRIX"; declare version "001"; declare author "Giuseppe Silvi"; declare license "GNU-GPL-v3"; declare copyright "(c)SEAM 2019"; declare description "SUM AND DIFFERENCE MATRIX"; import("stdfaust.lib"); nsum = 0.707*(_+_); ndif = 0.707*(_-_); sdmx = _,_ <: nsum, ndif; process = sdmx;
6fac24fbf917d3c43317ac5f181a05bf28fe14fb958605a22e956a3d346d978d
afalaize/faust
virtualAnalog.dsp
declare name "VirtualAnalog"; declare version "0.0"; declare author "JOS, revised by RM"; declare description "Virtual analog oscillator demo application."; import("stdfaust.lib"); process = dm.virtual_analog_oscillator_demo;
https://raw.githubusercontent.com/afalaize/faust/8f9f5fe3aa167eaeecc15a99d4da984ac2797be3/examples/generator/virtualAnalog.dsp
faust
declare name "VirtualAnalog"; declare version "0.0"; declare author "JOS, revised by RM"; declare description "Virtual analog oscillator demo application."; import("stdfaust.lib"); process = dm.virtual_analog_oscillator_demo;
6a534ed7be4208ca321835bff4094bed852ee559c2c264951ef25cbd9b896dab
darkoverlordofdata/amp-sim-faust
chorus.dsp
declare name "amp-sim"; declare version "0.1"; declare author "darkoverlordofdata"; declare description "Amplifier demo application."; declare license "MIT"; declare copyright "(c)DarkOverlordOfData 2021"; import("stdfaust.lib"); import("../layout2.dsp"); voices = 8; // MUST BE EVEN process = ba.bypass1to2(cbp,cho...
https://raw.githubusercontent.com/darkoverlordofdata/amp-sim-faust/df478c01ed3763795c11779faa47a4b9d0f6de37/src/guitar/chorus.dsp
faust
MUST BE EVEN Hz use when depth=1 means "multivibrato" effect (no original => all are modulated)
declare name "amp-sim"; declare version "0.1"; declare author "darkoverlordofdata"; declare description "Amplifier demo application."; declare license "MIT"; declare copyright "(c)DarkOverlordOfData 2021"; import("stdfaust.lib"); import("../layout2.dsp"); process = ba.bypass1to2(cbp,chorus_mono(dmax,curdel,rate,si...
54cab038a1617ff3b4f19d116db5e01c735199c5d21fcf63506137e5ba0a7e16
afalaize/faust
sawtoothLab.dsp
declare name "sawtoothLab"; declare version "0.0"; declare author "JOS, revised by RM"; declare description "An application demonstrating the different sawtooth oscillators of Faust."; import("stdfaust.lib"); process = dm.sawtooth_demo;
https://raw.githubusercontent.com/afalaize/faust/8f9f5fe3aa167eaeecc15a99d4da984ac2797be3/examples/generator/sawtoothLab.dsp
faust
declare name "sawtoothLab"; declare version "0.0"; declare author "JOS, revised by RM"; declare description "An application demonstrating the different sawtooth oscillators of Faust."; import("stdfaust.lib"); process = dm.sawtooth_demo;
115bc5fcea770e4e4d1e62e0b974b48150c7fa389d8cb86bdbde87355bcb960e
s-e-a-m/faust-libraries
mspanlr.dsp
declare name "MID SIDE PANNER - LEFT RIGHT LOUDSPEAKER"; declare version "001"; declare author "Giuseppe Silvi"; declare license "GNU-GPL-v3"; declare copyright "(c)SEAM 2019"; declare description "MID SIDE PANNER - LEFT RIGHT LOUDSPEAKER"; import("stdfaust.lib"); import("../../seam.lib"); main(x) = hgroup("Mid-Side ...
https://raw.githubusercontent.com/s-e-a-m/faust-libraries/9120cccb9335f42407062eb4bf149188d8018b07/examples/app/mspanlr.dsp
faust
declare name "MID SIDE PANNER - LEFT RIGHT LOUDSPEAKER"; declare version "001"; declare author "Giuseppe Silvi"; declare license "GNU-GPL-v3"; declare copyright "(c)SEAM 2019"; declare description "MID SIDE PANNER - LEFT RIGHT LOUDSPEAKER"; import("stdfaust.lib"); import("../../seam.lib"); main(x) = hgroup("Mid-Side ...
68b36b4d37ab96a7e793498c434f62e0a904cdbfa38897195c1d72be23c88a60
afalaize/faust
vocoder.dsp
declare name "Vocoder"; declare version "0.0"; declare author "RM"; declare description "Use example of the vocoder function where an impulse train is used as excitation."; import("stdfaust.lib"); process = dm.vocoder_demo;
https://raw.githubusercontent.com/afalaize/faust/8f9f5fe3aa167eaeecc15a99d4da984ac2797be3/examples/filtering/vocoder.dsp
faust
declare name "Vocoder"; declare version "0.0"; declare author "RM"; declare description "Use example of the vocoder function where an impulse train is used as excitation."; import("stdfaust.lib"); process = dm.vocoder_demo;
400924f11d1b1a1312f1d79335f304c37412c376e48bcc0c633426a42e366418
magnetophon/VoiceOfFaust
jcmlb.dsp
declare name "jcmlb"; declare version "1.0"; declare author "cc"; declare license "BSD"; declare copyright "stk"; import("stdfaust.lib"); //form(f0,a,b,c) = (even) : *(a) // jc form(f0,a,b,c,w) = (even + odd) : *(a) // mlb with { f1cr = ba.if((c<f0),1.0,(c/f0)); f1ci = ba.if((w==0),float(int(f1cr)),floor(f...
https://raw.githubusercontent.com/magnetophon/VoiceOfFaust/82c20ed40fb5f184a236a7c765eab5acfc3bb5f5/lib/cruft/jcmlb.dsp
faust
form(f0,a,b,c) = (even) : *(a) // jc mlb f1ci = float(int( f1cr )); // jc f1ci = floor( f1cr ); // mlb isEven = 1; // jc isEven = ba.if ((f1cm < 1.0),1,0); // mlb evenamp = 1; // jc evenamp = ba.if (isEven, (1.0 - ampfrac), ampfrac ); // mlb jc mlb odd = oddamp : *(os.osc((f0 * oddfreq) + mod)); proc...
declare name "jcmlb"; declare version "1.0"; declare author "cc"; declare license "BSD"; declare copyright "stk"; import("stdfaust.lib"); with { f1cr = ba.if((c<f0),1.0,(c/f0)); f1ci = ba.if((w==0),float(int(f1cr)),floor(f1cr)); f1cm = fmod(f1ci, 2); isEven = ba.if((w==0), 1, ba.if ((f1cm < 1.0),1,0) )...
9952680528b0cd960137c43d80647341d899c969bc3c851ec1e020ce85c4ae4b
agraef/pd-remote
phasemod.dsp
declare name "phasemod"; declare description "phase modulation synth"; declare author "Albert Graef"; declare version "2.0"; import("stdfaust.lib"); // master volume and pan vol = hslider("/v:[1]/vol [midi:ctrl 2]", 0.3, 0, 1, 0.01); pan = hslider("/v:[1]/pan [midi:ctrl 10]", 0.5, 0, 1, 0.01); // ADSR envelop attac...
https://raw.githubusercontent.com/agraef/pd-remote/4fede0b70ac5f9544a783dd45ddcf4643a29bc63/examples/dsp/phasemod.dsp
faust
master volume and pan ADSR envelop modulation index pitch bend (2 semitones up and down, in cent increments) voice parameters generic table-driven oscillator with phase modulation n = the size of the table, must be a power of 2 f = the wave function, must be defined on the range [0,2*PI] freq = the desired fre...
declare name "phasemod"; declare description "phase modulation synth"; declare author "Albert Graef"; declare version "2.0"; import("stdfaust.lib"); vol = hslider("/v:[1]/vol [midi:ctrl 2]", 0.3, 0, 1, 0.01); pan = hslider("/v:[1]/pan [midi:ctrl 10]", 0.5, 0, 1, 0.01); attack = hslider("/v:[2]/[1] attack", 0.01, 0,...
b978c19b04bf462e04f86530c9cf3b771c52798b31b24b40dfab5250f8ee9b09
s-e-a-m/faust-libraries
mspan_plot.dsp
declare name "MID SIDE PANNER - LEFT RIGHT LOUDSPEAKER"; declare version "001"; declare author "Giuseppe Silvi"; declare license "GNU-GPL-v3"; declare copyright "(c)SEAM 2019"; declare description "MID SIDE PANNER - LEFT RIGHT LOUDSPEAKER"; import("stdfaust.lib"); import("../../seam.lib"); pisweep = (os.lf_trianglepo...
https://raw.githubusercontent.com/s-e-a-m/faust-libraries/9120cccb9335f42407062eb4bf149188d8018b07/plots/dsp/mspan_plot.dsp
faust
declare name "MID SIDE PANNER - LEFT RIGHT LOUDSPEAKER"; declare version "001"; declare author "Giuseppe Silvi"; declare license "GNU-GPL-v3"; declare copyright "(c)SEAM 2019"; declare description "MID SIDE PANNER - LEFT RIGHT LOUDSPEAKER"; import("stdfaust.lib"); import("../../seam.lib"); pisweep = (os.lf_trianglepo...
6f20536556e8c41a52297545870ef7670c6553055b58e72d0f3ec9238fb1e5ff
s-e-a-m/faust-libraries
lrpan_plot.dsp
declare name "MID SIDE PANNER - LEFT RIGHT LOUDSPEAKER"; declare version "001"; declare author "Giuseppe Silvi"; declare license "GNU-GPL-v3"; declare copyright "(c)SEAM 2019"; declare description "MID SIDE PANNER - LEFT RIGHT LOUDSPEAKER"; import("stdfaust.lib"); import("../../seam.lib"); pot = os.lf_trianglepos(1);...
https://raw.githubusercontent.com/s-e-a-m/faust-libraries/9120cccb9335f42407062eb4bf149188d8018b07/plots/dsp/lrpan_plot.dsp
faust
declare name "MID SIDE PANNER - LEFT RIGHT LOUDSPEAKER"; declare version "001"; declare author "Giuseppe Silvi"; declare license "GNU-GPL-v3"; declare copyright "(c)SEAM 2019"; declare description "MID SIDE PANNER - LEFT RIGHT LOUDSPEAKER"; import("stdfaust.lib"); import("../../seam.lib"); pot = os.lf_trianglepos(1);...
b576aafca00ff3fe14b07bad31a3673b89dce70c0023ca4d18ad560a6561f7de
Sylcantor/wam-web-components
weirdPhaser.dsp
declare name "Weird Phaser"; declare description "Stereo Phaser based on SSB Modulation"; declare author "Oli Larkin (contact@olilarkin.co.uk)"; declare copyright "Oliver Larkin"; declare version "0.1"; declare licence "GPL"; import("stdfaust.lib"); hilbertef(x) = real(x), imag(x) with { biquad(a1,a2,b0,b1,b2) = + ...
https://raw.githubusercontent.com/Sylcantor/wam-web-components/c54352dae5b80bcf6d8d4c306ea22e2c91a12b08/plugins/WeirdPhaser/weirdPhaser.dsp
faust
declare name "Weird Phaser"; declare description "Stereo Phaser based on SSB Modulation"; declare author "Oli Larkin (contact@olilarkin.co.uk)"; declare copyright "Oliver Larkin"; declare version "0.1"; declare licence "GPL"; import("stdfaust.lib"); hilbertef(x) = real(x), imag(x) with { biquad(a1,a2,b0,b1,b2) = + ...
f24875d930c14ec8d4134152bcedc3cb2564a847bfd0cd850e431eaafe9e4011
Sylcantor/wam-web-components
StereoFreqShifter.dsp
declare name "Stereo Frequency Shifter"; declare description "Stereo Frequency Shifting"; declare author "Oli Larkin (contact@olilarkin.co.uk)"; declare copyright "Oliver Larkin"; declare version "0.1"; declare licence "GPL"; import("stdfaust.lib"); hilbertef(x) = real(x), imag(x) with { biquad(a1,a2,b0,b1,b2) = + ...
https://raw.githubusercontent.com/Sylcantor/wam-web-components/c54352dae5b80bcf6d8d4c306ea22e2c91a12b08/plugins/StereoFreqShifter/StereoFreqShifter.dsp
faust
declare name "Stereo Frequency Shifter"; declare description "Stereo Frequency Shifting"; declare author "Oli Larkin (contact@olilarkin.co.uk)"; declare copyright "Oliver Larkin"; declare version "0.1"; declare licence "GPL"; import("stdfaust.lib"); hilbertef(x) = real(x), imag(x) with { biquad(a1,a2,b0,b1,b2) = + ...
a37567895422aa43b493ca835a30d24194cf6062d0af80e652d768464f6f6a83
s-e-a-m/faust-libraries
mspan.dsp
declare name "MID SIDE PANNER"; declare version "001"; declare author "Giuseppe Silvi"; declare license "GNU-GPL-v3"; declare copyright "(c)SEAM 2019"; declare description "MID SIDE PANNER"; import("stdfaust.lib"); //import("../seam.lib"); deg2rad = *(ma.PI/180); mspan(x) = m, s with{ pot = vslider("[01] Azimut...
https://raw.githubusercontent.com/s-e-a-m/faust-libraries/9120cccb9335f42407062eb4bf149188d8018b07/examples/vst/mspan.dsp
faust
import("../seam.lib");
declare name "MID SIDE PANNER"; declare version "001"; declare author "Giuseppe Silvi"; declare license "GNU-GPL-v3"; declare copyright "(c)SEAM 2019"; declare description "MID SIDE PANNER"; import("stdfaust.lib"); deg2rad = *(ma.PI/180); mspan(x) = m, s with{ pot = vslider("[01] Azimuth [style:knob]", 0, -180,...
9f92fa8c40757f4922a7bd25db863bca2e419f73a041b7a2ab0b12ea52186e2b
goofy2k/ESP32_faust2api
capture.dsp
declare name "capture"; declare version "1.0"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2006"; //------------------------------------------------- // Capture : record up to 8s of sound and // playback the recorded sound in loop //---------------------------------------------...
https://raw.githubusercontent.com/goofy2k/ESP32_faust2api/1e12506b66da095296a1f11dd1dbea4ed6bc35b0/sound_engines/faust2api/all_engines/capture.dsp
faust
------------------------------------------------- Capture : record up to 8s of sound and playback the recorded sound in loop ------------------------------------------------- Capture sound while pressed convert button signal from float to integer Reset capture when button is pressed Compute capture duration wh...
declare name "capture"; declare version "1.0"; declare author "Grame"; declare license "BSD"; declare copyright "(c)GRAME 2006"; import("stdfaust.lib"); capture = *(B) : (+ : de.delay(8*65536, D-1)) ~ *(1.0-B); level = hslider("level (db)", 0, -96, 4, 0.1) : ba.db2linear : si.smoo; process = vgroup("Audio...
cc48fec817d14da99bdbcbe7c790f6d903d22353687d99816def93fca5286ea6
s-e-a-m/faust-libraries
ms2bfmt.dsp
declare name "MS STEREO TO BFORMAT ENCODER"; declare version "003"; declare author "Giuseppe Silvi"; declare license "GNU-GPL-v3"; declare copyright "(c)SEAM 2019"; declare description "MS STEREO TO BFORMAT ENCODER"; import("stdfaust.lib"); import("../../seam.lib"); // LS and RS are dead channels to create VST routin...
https://raw.githubusercontent.com/s-e-a-m/faust-libraries/9120cccb9335f42407062eb4bf149188d8018b07/examples/vst/ms2bfmt.dsp
faust
LS and RS are dead channels to create VST routing consistency
declare name "MS STEREO TO BFORMAT ENCODER"; declare version "003"; declare author "Giuseppe Silvi"; declare license "GNU-GPL-v3"; declare copyright "(c)SEAM 2019"; declare description "MS STEREO TO BFORMAT ENCODER"; import("stdfaust.lib"); import("../../seam.lib"); midside2bfmt(M,S,LS,RS) = W,X,Y,Z with{ W = M...
c2421ab86d7ba98d77a39832e7fa88e4c3a0f7593e0db84d3784b3688607c977
sebastien-clara/panoplie
toneStackPeavey.dsp
declare name "Tonestack Emulation Peavey"; declare author "Guitarix"; declare description "Peavey c20"; import("stdfaust.lib"); process = component("tonestacks.lib").peavey(t,m,l) with { t = vslider("Treble ", 0.5, 0, 1, 0.01); m = vslider("Middle ", 0.5, 0, 1, 0.01); l = vslider("Bass ", 0.5, 0, 1, 0.0...
https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/toneStackPeavey%7E.mxo/toneStackPeavey.dsp
faust
declare name "Tonestack Emulation Peavey"; declare author "Guitarix"; declare description "Peavey c20"; import("stdfaust.lib"); process = component("tonestacks.lib").peavey(t,m,l) with { t = vslider("Treble ", 0.5, 0, 1, 0.01); m = vslider("Middle ", 0.5, 0, 1, 0.01); l = vslider("Bass ", 0.5, 0, 1, 0.0...
92cdc69b466e373f6841286c0cc6a9d59d358dce28922c02cb34e5c07654dd51
sebastien-clara/panoplie
toneStackIbanez.dsp
declare name "Tonestack Emulation Ibanez"; declare author "Guitarix"; declare description "Ibanez gx20"; import("stdfaust.lib"); process = component("tonestacks.lib").ibanez(t,m,l) with { t = vslider("Treble ", 0.5, 0, 1, 0.01); m = vslider("Middle ", 0.5, 0, 1, 0.01); l = vslider("Bass ", 0.5, 0, 1, 0....
https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/toneStackIbanez%7E.mxo/toneStackIbanez.dsp
faust
declare name "Tonestack Emulation Ibanez"; declare author "Guitarix"; declare description "Ibanez gx20"; import("stdfaust.lib"); process = component("tonestacks.lib").ibanez(t,m,l) with { t = vslider("Treble ", 0.5, 0, 1, 0.01); m = vslider("Middle ", 0.5, 0, 1, 0.01); l = vslider("Bass ", 0.5, 0, 1, 0....
f7b72e53ced21d337a8c26d585bd94dc475ddf411ca77709ec64ad25ee42ac0d
jrdooley/formuls
formuls.dsp
//----------------------------------------------------------------------------------------// //------------------------------------------formuls---------------------------------------// //----------------------------------------------------------------------------------------// // compile with: faust2puredata -vec -lv ...
https://raw.githubusercontent.com/jrdooley/formuls/9e3264759a3685478d8f9fe5a99e63474afa80ad/src/faust/formuls.dsp
faust
----------------------------------------------------------------------------------------// ------------------------------------------formuls---------------------------------------// ----------------------------------------------------------------------------------------// compile with: faust2puredata -vec -lv 0 -vs 4 ...
declare names "formuls"; declare author "James Dooley: info@formuls.co.uk"; declare copyright "James Dooley"; declare license "MIT"; declare options "[osc:on]"; import("stdfaust.lib"); fx = library("ffx.lib"); fs = library("fsynth.lib"); volume = _ : *(vol) with{ vol = hslider("volume",0,0,1,0.01) : si.smoo; }; ...
c8dce5d180aa9b6c8ecfddc5441bb810e34c2fb2fafb6496511c9a12b7ee63ed
sebastien-clara/panoplie
toneStackCrunch.dsp
declare name "Tonestack Emulation Crunch"; declare author "Guitarix"; declare description "Crunch Hughes & Kettner"; import("stdfaust.lib"); process = component("tonestacks.lib").crunch(t,m,l) with { t = vslider("Treble ", 0.5, 0, 1, 0.01); m = vslider("Middle ", 0.5, 0, 1, 0.01); l = vslider("Bass ", 0...
https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/toneStackCrunch%7E.mxo/toneStackCrunch.dsp
faust
declare name "Tonestack Emulation Crunch"; declare author "Guitarix"; declare description "Crunch Hughes & Kettner"; import("stdfaust.lib"); process = component("tonestacks.lib").crunch(t,m,l) with { t = vslider("Treble ", 0.5, 0, 1, 0.01); m = vslider("Middle ", 0.5, 0, 1, 0.01); l = vslider("Bass ", 0...
48ede72a72d6cccc450bc7f433520cfee0a6c53b5dc3c40935855793850be2da
sebastien-clara/panoplie
toneStackSoldano.dsp
declare name "Tonestack Emulation Soldano"; declare author "Guitarix"; declare description "Soldano SLO 100"; import("stdfaust.lib"); process = component("tonestacks.lib").soldano(t,m,l) with { t = vslider("Treble ", 0.5, 0, 1, 0.01); m = vslider("Middle ", 0.5, 0, 1, 0.01); l = vslider("Bass ", 0.5, 0,...
https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/toneStackSoldano%7E.mxo/toneStackSoldano.dsp
faust
declare name "Tonestack Emulation Soldano"; declare author "Guitarix"; declare description "Soldano SLO 100"; import("stdfaust.lib"); process = component("tonestacks.lib").soldano(t,m,l) with { t = vslider("Treble ", 0.5, 0, 1, 0.01); m = vslider("Middle ", 0.5, 0, 1, 0.01); l = vslider("Bass ", 0.5, 0,...
6785f4640d53e1597f0f4d03109fda969f5290659f4cf18a1d86d209de1e8d7f
sebastien-clara/panoplie
toneStackRoland.dsp
declare name "Tonestack Emulation Roland"; declare author "Guitarix"; declare description "Roland Cube 60"; import("stdfaust.lib"); process = component("tonestacks.lib").roland(t,m,l) with { t = vslider("Treble ", 0.5, 0, 1, 0.01); m = vslider("Middle ", 0.5, 0, 1, 0.01); l = vslider("Bass ", 0.5, 0, 1,...
https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/toneStackRoland%7E.mxo/toneStackRoland.dsp
faust
declare name "Tonestack Emulation Roland"; declare author "Guitarix"; declare description "Roland Cube 60"; import("stdfaust.lib"); process = component("tonestacks.lib").roland(t,m,l) with { t = vslider("Treble ", 0.5, 0, 1, 0.01); m = vslider("Middle ", 0.5, 0, 1, 0.01); l = vslider("Bass ", 0.5, 0, 1,...
ef5190e03ad1e966106b08635f954128e7311202cff0a0d4dda3c0d99bcd08fa
sebastien-clara/panoplie
toneStackGroove.dsp
declare name "Tonestack Emulation Groove"; declare author "Guitarix"; declare description "Groove Trio Preamp"; import("stdfaust.lib"); process = component("tonestacks.lib").groove(t,m,l) with { t = vslider("Treble ", 0.5, 0, 1, 0.01); m = vslider("Middle ", 0.5, 0, 1, 0.01); l = vslider("Bass ", 0.5, 0...
https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/toneStackGroove%7E.mxo/toneStackGroove.dsp
faust
declare name "Tonestack Emulation Groove"; declare author "Guitarix"; declare description "Groove Trio Preamp"; import("stdfaust.lib"); process = component("tonestacks.lib").groove(t,m,l) with { t = vslider("Treble ", 0.5, 0, 1, 0.01); m = vslider("Middle ", 0.5, 0, 1, 0.01); l = vslider("Bass ", 0.5, 0...
bb58a2844179647a35559a7de41f77632bc39b1df96f85ae425cf982e4adcde7
sebastien-clara/panoplie
toneStackAmpeg.dsp
declare name "Tonestack Emulation Ampeg"; declare author "Guitarix"; declare description "Ampeg VL 501"; import("stdfaust.lib"); process = component("tonestacks.lib").ampeg(t,m,l) with { t = vslider("Treble ", 0.5, 0, 1, 0.01); m = vslider("Middle ", 0.5, 0, 1, 0.01); l = vslider("Bass ", 0.5, 0, 1, 0.0...
https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/toneStackAmpeg%7E.mxo/toneStackAmpeg.dsp
faust
declare name "Tonestack Emulation Ampeg"; declare author "Guitarix"; declare description "Ampeg VL 501"; import("stdfaust.lib"); process = component("tonestacks.lib").ampeg(t,m,l) with { t = vslider("Treble ", 0.5, 0, 1, 0.01); m = vslider("Middle ", 0.5, 0, 1, 0.01); l = vslider("Bass ", 0.5, 0, 1, 0.0...
d589a7bdea721d12b80956f3581d3fffd168fe72ec4440525c9cd3d85884694b
sebastien-clara/panoplie
toneStackSovtek.dsp
declare name "Tonestack Emulation Sovtek"; declare author "Guitarix"; declare description "Sovtek MIG 100 H"; import("stdfaust.lib"); process = component("tonestacks.lib").sovtek(t,m,l) with { t = vslider("Treble ", 0.5, 0, 1, 0.01); m = vslider("Middle ", 0.5, 0, 1, 0.01); l = vslider("Bass ", 0.5, 0, ...
https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/toneStackSovtek%7E.mxo/toneStackSovtek.dsp
faust
declare name "Tonestack Emulation Sovtek"; declare author "Guitarix"; declare description "Sovtek MIG 100 H"; import("stdfaust.lib"); process = component("tonestacks.lib").sovtek(t,m,l) with { t = vslider("Treble ", 0.5, 0, 1, 0.01); m = vslider("Middle ", 0.5, 0, 1, 0.01); l = vslider("Bass ", 0.5, 0, ...
fff4ea34aaedeb970f20342a5e406470080be1d32b7400622e43db15ab80f9eb
sebastien-clara/panoplie
toneStackGibsen.dsp
declare name "Tonestack Emulation Gibsen"; declare author "Guitarix"; declare description "Gibsen gs12 reverbrocket"; import("stdfaust.lib"); process = component("tonestacks.lib").gibsen(t,m,l) with { t = vslider("Treble ", 0.5, 0, 1, 0.01); m = vslider("Middle ", 0.5, 0, 1, 0.01); l = vslider("Bass ", ...
https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/toneStackGibsen%7E.mxo/toneStackGibsen.dsp
faust
declare name "Tonestack Emulation Gibsen"; declare author "Guitarix"; declare description "Gibsen gs12 reverbrocket"; import("stdfaust.lib"); process = component("tonestacks.lib").gibsen(t,m,l) with { t = vslider("Treble ", 0.5, 0, 1, 0.01); m = vslider("Middle ", 0.5, 0, 1, 0.01); l = vslider("Bass ", ...
033a03b2077cc344762ceabb5a2ec3ddb85c8dea96d0cabde0dbdaca679a8b3b
sebastien-clara/panoplie
toneStackAmpegRev.dsp
declare name "Tonestack Emulation Ampeg Rev"; declare author "Guitarix"; declare description "Ampeg reverbrocket"; import("stdfaust.lib"); process = component("tonestacks.lib").ampeg_rev(t,m,l) with { t = vslider("Treble ", 0.5, 0, 1, 0.01); m = vslider("Middle ", 0.5, 0, 1, 0.01); l = vslider("Bass ", ...
https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/toneStackAmpegRev%7E.mxo/toneStackAmpegRev.dsp
faust
declare name "Tonestack Emulation Ampeg Rev"; declare author "Guitarix"; declare description "Ampeg reverbrocket"; import("stdfaust.lib"); process = component("tonestacks.lib").ampeg_rev(t,m,l) with { t = vslider("Treble ", 0.5, 0, 1, 0.01); m = vslider("Middle ", 0.5, 0, 1, 0.01); l = vslider("Bass ", ...
dac70cea001e66c50f026a788722b9a84182f845d58979666d1b32134eefc2df
sebastien-clara/panoplie
toneStackFenderBlues.dsp
declare name "Tonestack Emulation Fender Blues"; declare author "Guitarix"; declare description "Fender Blues Junior"; import("stdfaust.lib"); process = component("tonestacks.lib").crunch(t,m,l) with { t = vslider("Treble ", 0.5, 0, 1, 0.01); m = vslider("Middle ", 0.5, 0, 1, 0.01); l = vslider("Bass ",...
https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/toneStackFenderBlues%7E.mxo/toneStackFenderBlues.dsp
faust
declare name "Tonestack Emulation Fender Blues"; declare author "Guitarix"; declare description "Fender Blues Junior"; import("stdfaust.lib"); process = component("tonestacks.lib").crunch(t,m,l) with { t = vslider("Treble ", 0.5, 0, 1, 0.01); m = vslider("Middle ", 0.5, 0, 1, 0.01); l = vslider("Bass ",...
7d002598c46d34b0330fa87baa4495b01653fa5123861e9d5ffe0f0026c79614
sebastien-clara/panoplie
toneStackBogner.dsp
declare name "Tonestack Emulation Bogner"; declare author "Guitarix"; declare description "Bogner Triple Giant Preamp"; import("stdfaust.lib"); process = component("tonestacks.lib").bogner(t,m,l) with { t = vslider("Treble ", 0.5, 0, 1, 0.01); m = vslider("Middle ", 0.5, 0, 1, 0.01); l = vslider("Bass "...
https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/toneStackBogner%7E.mxo/toneStackBogner.dsp
faust
declare name "Tonestack Emulation Bogner"; declare author "Guitarix"; declare description "Bogner Triple Giant Preamp"; import("stdfaust.lib"); process = component("tonestacks.lib").bogner(t,m,l) with { t = vslider("Treble ", 0.5, 0, 1, 0.01); m = vslider("Middle ", 0.5, 0, 1, 0.01); l = vslider("Bass "...
954027ea377f8a243ee3f944432eed3a08ffdca2efec4272cc910c844daaf869
sebastien-clara/panoplie
toneStackFenderBassman.dsp
declare name "Tonestack Emulation Fender Bassman"; declare author "Guitarix"; declare description "Fender 59 Bassman 5F6-A"; import("stdfaust.lib"); process = component("tonestacks.lib").bassman(t,m,l) with { t = vslider("Treble ", 0.5, 0, 1, 0.01); m = vslider("Middle ", 0.5, 0, 1, 0.01); l = vslider("...
https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/toneStackFenderBassman%7E.mxo/toneStackFenderBassman.dsp
faust
declare name "Tonestack Emulation Fender Bassman"; declare author "Guitarix"; declare description "Fender 59 Bassman 5F6-A"; import("stdfaust.lib"); process = component("tonestacks.lib").bassman(t,m,l) with { t = vslider("Treble ", 0.5, 0, 1, 0.01); m = vslider("Middle ", 0.5, 0, 1, 0.01); l = vslider("...
44fd1ebca5e98c2fe3fb07056fac5504e29f2d7953f8ee48b3ec8fb108c71197
sebastien-clara/panoplie
toneStackVoxAc15.dsp
declare name "Tonestack Emulation Vox AC-15"; declare author "Guitarix"; declare description "VOX AC-15"; import("stdfaust.lib"); process = component("tonestacks.lib").ac15(t,m,l) with { t = vslider("Treble ", 0.5, 0, 1, 0.01); m = vslider("Middle ", 0.5, 0, 1, 0.01); l = vslider("Bass ", 0.5, 0, 1, 0.0...
https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/toneStackVoxAc15%7E.mxo/toneStackVoxAc15.dsp
faust
declare name "Tonestack Emulation Vox AC-15"; declare author "Guitarix"; declare description "VOX AC-15"; import("stdfaust.lib"); process = component("tonestacks.lib").ac15(t,m,l) with { t = vslider("Treble ", 0.5, 0, 1, 0.01); m = vslider("Middle ", 0.5, 0, 1, 0.01); l = vslider("Bass ", 0.5, 0, 1, 0.0...
e197586faed395cafceeb069556e180d8b784c48aefde006a9df3e0ff96728ff
sebastien-clara/panoplie
toneStackMarshallJtm45.dsp
declare name "Tonestack Emulation Marshall JTM 45"; declare author "Guitarix"; declare description "Marshall JTM 45"; import("stdfaust.lib"); process = component("tonestacks.lib").jtm45(t,m,l) with { t = vslider("Treble ", 0.5, 0, 1, 0.01); m = vslider("Middle ", 0.5, 0, 1, 0.01); l = vslider("Bass ", 0...
https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/toneStackMarshallJtm45%7E.mxo/toneStackMarshallJtm45.dsp
faust
declare name "Tonestack Emulation Marshall JTM 45"; declare author "Guitarix"; declare description "Marshall JTM 45"; import("stdfaust.lib"); process = component("tonestacks.lib").jtm45(t,m,l) with { t = vslider("Treble ", 0.5, 0, 1, 0.01); m = vslider("Middle ", 0.5, 0, 1, 0.01); l = vslider("Bass ", 0...
72c23664cdcc27b8606e1f86ebaaae4604da78b959f40505af32af16700f252e
sebastien-clara/panoplie
toneStackFenderPrinceton.dsp
declare name "Tonestack Emulation Fender Princeton"; declare author "Guitarix"; declare description "Fender 64 Princeton AA1164"; import("stdfaust.lib"); process = component("tonestacks.lib").princeton(t,m,l) with { t = vslider("Treble ", 0.5, 0, 1, 0.01); m = vslider("Middle ", 0.5, 0, 1, 0.01); l = vs...
https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/toneStackFenderPrinceton%7E.mxo/toneStackFenderPrinceton.dsp
faust
declare name "Tonestack Emulation Fender Princeton"; declare author "Guitarix"; declare description "Fender 64 Princeton AA1164"; import("stdfaust.lib"); process = component("tonestacks.lib").princeton(t,m,l) with { t = vslider("Treble ", 0.5, 0, 1, 0.01); m = vslider("Middle ", 0.5, 0, 1, 0.01); l = vs...
99ac4a3b14524df0395100a7a6382479b119a58b8379d81c3ca3264ac37b0856
sebastien-clara/panoplie
toneStackMesaBoogie.dsp
declare name "Tonestack Emulation Mesa Boogie"; declare author "Guitarix"; declare description "Fender Mesa Boogie Mark"; import("stdfaust.lib"); process = component("tonestacks.lib").mesa(t,m,l) with { t = vslider("Treble ", 0.5, 0, 1, 0.01); m = vslider("Middle ", 0.5, 0, 1, 0.01); l = vslider("Bass "...
https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/toneStackMesaBoogie%7E.mxo/toneStackMesaBoogie.dsp
faust
declare name "Tonestack Emulation Mesa Boogie"; declare author "Guitarix"; declare description "Fender Mesa Boogie Mark"; import("stdfaust.lib"); process = component("tonestacks.lib").mesa(t,m,l) with { t = vslider("Treble ", 0.5, 0, 1, 0.01); m = vslider("Middle ", 0.5, 0, 1, 0.01); l = vslider("Bass "...
af2335807da1f390b4aa82ac5060acf9d73da00fd24dba904b2cb8bafdb099e3
sebastien-clara/panoplie
toneStackFenderTwin.dsp
declare name "Tonestack Emulation Fender Twin"; declare author "Guitarix"; declare description "Fender 69 Twin Reverb AA270"; import("stdfaust.lib"); process = component("tonestacks.lib").twin(t,m,l) with { t = vslider("Treble ", 0.5, 0, 1, 0.01); m = vslider("Middle ", 0.5, 0, 1, 0.01); l = vslider("Ba...
https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/toneStackFenderTwin%7E.mxo/toneStackFenderTwin.dsp
faust
declare name "Tonestack Emulation Fender Twin"; declare author "Guitarix"; declare description "Fender 69 Twin Reverb AA270"; import("stdfaust.lib"); process = component("tonestacks.lib").twin(t,m,l) with { t = vslider("Treble ", 0.5, 0, 1, 0.01); m = vslider("Middle ", 0.5, 0, 1, 0.01); l = vslider("Ba...
50ec7ef99dd09cee1cc63b8da17feff264433bccd81c055e6e509d73ff0e1931
sebastien-clara/panoplie
toneStackFenderDeville.dsp
declare name "Tonestack Emulation Fender Deville"; declare author "Guitarix"; declare description "Fender Deville Hot Rod"; import("stdfaust.lib"); process = component("tonestacks.lib").fender_deville(t,m,l) with { t = vslider("Treble ", 0.5, 0, 1, 0.01); m = vslider("Middle ", 0.5, 0, 1, 0.01); l = vsl...
https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/toneStackFenderDeville%7E.mxo/toneStackFenderDeville.dsp
faust
declare name "Tonestack Emulation Fender Deville"; declare author "Guitarix"; declare description "Fender Deville Hot Rod"; import("stdfaust.lib"); process = component("tonestacks.lib").fender_deville(t,m,l) with { t = vslider("Treble ", 0.5, 0, 1, 0.01); m = vslider("Middle ", 0.5, 0, 1, 0.01); l = vsl...
1250165dd711f17036d3c5f6a632c4178584df7000ea857100e6842ea40528af
sebastien-clara/panoplie
toneStackVoxAc30.dsp
declare name "Tonestack Emulation Vox AC-30"; declare author "Guitarix"; declare description "Vox 59/86 AC-30"; import("stdfaust.lib"); process = component("tonestacks.lib").ac30(t,m,l) with { t = vslider("Treble ", 0.5, 0, 1, 0.01); m = vslider("Middle ", 0.5, 0, 1, 0.01); l = vslider("Bass ", 0.5, 0, ...
https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/toneStackVoxAc30%7E.mxo/toneStackVoxAc30.dsp
faust
declare name "Tonestack Emulation Vox AC-30"; declare author "Guitarix"; declare description "Vox 59/86 AC-30"; import("stdfaust.lib"); process = component("tonestacks.lib").ac30(t,m,l) with { t = vslider("Treble ", 0.5, 0, 1, 0.01); m = vslider("Middle ", 0.5, 0, 1, 0.01); l = vslider("Bass ", 0.5, 0, ...
5c5cb02b152c5268b7a572d36a58c41b011bc99b1cccbcd0a351fd50591e5bf7
sebastien-clara/panoplie
toneStackMarshallJcm2000.dsp
declare name "Tonestack Emulation Marshall JCM-2000"; declare author "Guitarix"; declare description "Marshall JCM 2000 / TSL 100"; import("stdfaust.lib"); process = component("tonestacks.lib").jcm2000(t,m,l) with { t = vslider("Treble ", 0.5, 0, 1, 0.01); m = vslider("Middle ", 0.5, 0, 1, 0.01); l = vs...
https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/toneStackMarshallJcm2000%7E.mxo/toneStackMarshallJcm2000.dsp
faust
declare name "Tonestack Emulation Marshall JCM-2000"; declare author "Guitarix"; declare description "Marshall JCM 2000 / TSL 100"; import("stdfaust.lib"); process = component("tonestacks.lib").jcm2000(t,m,l) with { t = vslider("Treble ", 0.5, 0, 1, 0.01); m = vslider("Middle ", 0.5, 0, 1, 0.01); l = vs...
bab28880b7a4a408783393f74244859fe7fd5222c71a9bca5105ad4601a2ecfe
sebastien-clara/panoplie
toneStackMarshallMlead.dsp
declare name "Tonestack Emulation Marshall M-lead"; declare author "Guitarix"; declare description "Marshall 67 Major Lead 200"; import("stdfaust.lib"); process = component("tonestacks.lib").mlead(t,m,l) with { t = vslider("Treble ", 0.5, 0, 1, 0.01); m = vslider("Middle ", 0.5, 0, 1, 0.01); l = vslider...
https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/toneStackMarshallMlead%7E.mxo/toneStackMarshallMlead.dsp
faust
declare name "Tonestack Emulation Marshall M-lead"; declare author "Guitarix"; declare description "Marshall 67 Major Lead 200"; import("stdfaust.lib"); process = component("tonestacks.lib").mlead(t,m,l) with { t = vslider("Treble ", 0.5, 0, 1, 0.01); m = vslider("Middle ", 0.5, 0, 1, 0.01); l = vslider...
7eb1b0eb11bc34af4de62e829ee40b3a7f123b2c68e4cd45e5c16b4f41c8ff52
grame-cncm/GameLAN
Baliphone.dsp
declare name "Baliphone"; declare author "Developpement Grame - CNCM par Elodie Rabibisoa et Romain Constant."; import ("stdfaust.lib"); // 4 gamelans : process = par(i, 4, (multi(i):> _* (select_gamelan == i))) :> bali_reverb * on_off <: limiter : _,_; on_off = checkbox("[0]ON / OFF"); select_gamelan = hslider("[1...
https://raw.githubusercontent.com/grame-cncm/GameLAN/8d1dc26d709d721d27ec1156fbb66b03478f2529/baliphone/Baliphone.dsp
faust
4 gamelans : 3 notes per gamelan : --------------- Player ---------------// trig impulse to launch stream of 1 increment loop with reinit to 0 through reversed impulse (trig : upfront) ----------------- Limiter --------------// ----------------- Reverb --------------//
declare name "Baliphone"; declare author "Developpement Grame - CNCM par Elodie Rabibisoa et Romain Constant."; import ("stdfaust.lib"); process = par(i, 4, (multi(i):> _* (select_gamelan == i))) :> bali_reverb * on_off <: limiter : _,_; on_off = checkbox("[0]ON / OFF"); select_gamelan = hslider("[1]Gamelans[style:...
b794487dcf0642647002c9cc732223e701b4415c8940afea0d4bafc5ff592851
grame-cncm/GameLAN
Attackey_no_interpolation.dsp
import("stdfaust.lib"); declare nvoices "12"; declare author "Developpement Grame - CNCM par Elodie Rabibisoa et Romain Constant."; // Specific syntax for faust2android, [style:keyboard] doesn't exist in iOS process = vgroup("AttacKey [style:keyboard]", instru); freq = hslider("freq", 349.23, 261.63, 783.99, 0.001); ...
https://raw.githubusercontent.com/grame-cncm/GameLAN/8d1dc26d709d721d27ec1156fbb66b03478f2529/attacKey/Attackey_no_interpolation.dsp
faust
Specific syntax for faust2android, [style:keyboard] doesn't exist in iOS --------------- Player ---------------// trig impulse to launch stream of 1 : reference pitch = F * 2 (midi keyboard plays one octave higher) increment loop with reinit to 0 through reversed impulse (trig : upfront) -------------------- Reverb -...
import("stdfaust.lib"); declare nvoices "12"; declare author "Developpement Grame - CNCM par Elodie Rabibisoa et Romain Constant."; process = vgroup("AttacKey [style:keyboard]", instru); freq = hslider("freq", 349.23, 261.63, 783.99, 0.001); gain = hslider("gain",0.5,0,1,0.01); gate = button("gate"); instru = play(n...
0ec510fa4aff0ba4dff92f83e45e04d65db65e22c9f4b4e9fea25eedd9ca1e30
sebastien-clara/panoplie
toneStackMarshallM2199.dsp
declare name "Tonestack Emulation Marshall M-2199"; declare author "Guitarix"; declare description "Marshall undated M2199 30W solid state"; import("stdfaust.lib"); process = component("tonestacks.lib").m2199(t,m,l) with { t = vslider("Treble ", 0.5, 0, 1, 0.01); m = vslider("Middle ", 0.5, 0, 1, 0.01); ...
https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/toneStackMarshallM2199%7E.mxo/toneStackMarshallM2199.dsp
faust
declare name "Tonestack Emulation Marshall M-2199"; declare author "Guitarix"; declare description "Marshall undated M2199 30W solid state"; import("stdfaust.lib"); process = component("tonestacks.lib").m2199(t,m,l) with { t = vslider("Treble ", 0.5, 0, 1, 0.01); m = vslider("Middle ", 0.5, 0, 1, 0.01); ...
9ed892cfea3c374be4e6e1505e5ec65e846b674652e88505a075aff98293fe02
DISTRHO/elements-template-plugin
korg35lpf.dsp
declare name "Korg35LPF"; declare description "FAUST Korg 35 24 dB LPF"; declare author "Christopher Arndt"; declare license "MIT"; // MIT-style STK-4.3 license import("stdfaust.lib"); //===================================Korg 35 Filters====================================== // The following filters are virtual analo...
https://raw.githubusercontent.com/DISTRHO/elements-template-plugin/c4129072d9188a8d5c1ecd8a47bb51d1fb75b8b3/src/korg35lpf.dsp
faust
MIT-style STK-4.3 license ===================================Korg 35 Filters====================================== The following filters are virtual analog models of the Korg 35 low-pass filter and high-pass filter found in the MS-10 and MS-20 synthesizers. The virtual analog models for the LPF and HPF are differen...
declare name "Korg35LPF"; declare description "FAUST Korg 35 24 dB LPF"; declare author "Christopher Arndt"; import("stdfaust.lib"); declare korg35LPF author "Eric Tarr"; declare korg35LPF license "MIT-style STK-4.3 license"; korg35LPF(freq,Q) = _ <: (s1,s2,s3,y) : !,!,!,_ letrec{ 's1 = _-s1:_*(alpha*2):_+s1; ...
b7f7cfda4dcbef829b10e7d7f8deaf5299873ec6751c47e9ae9de41db6dd7348
sebastien-clara/panoplie
toneStackMarshallJcm800.dsp
declare name "Tonestack Emulation Marshall JCM-800"; declare author "Guitarix"; declare description "Marshall 59/81 JCM-800 Lead 100 2203"; import("stdfaust.lib"); process = component("tonestacks.lib").jcm800(t,m,l) with { t = vslider("Treble ", 0.5, 0, 1, 0.01); m = vslider("Middle ", 0.5, 0, 1, 0.01); ...
https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/toneStackMarshallJcm800%7E.mxo/toneStackMarshallJcm800.dsp
faust
declare name "Tonestack Emulation Marshall JCM-800"; declare author "Guitarix"; declare description "Marshall 59/81 JCM-800 Lead 100 2203"; import("stdfaust.lib"); process = component("tonestacks.lib").jcm800(t,m,l) with { t = vslider("Treble ", 0.5, 0, 1, 0.01); m = vslider("Middle ", 0.5, 0, 1, 0.01); ...
e98a0a4d5cfbd9329fb3d8e63c9d9889f8221f68d09322ecfb75962e2b22ca93
s-e-a-m/faust-libraries
XY180pan_plot.dsp
declare name "MID SIDE PANNER - LEFT RIGHT LOUDSPEAKER"; declare version "001"; declare author "Giuseppe Silvi"; declare license "GNU-GPL-v3"; declare copyright "(c)SEAM 2019"; declare description "MID SIDE PANNER - LEFT RIGHT LOUDSPEAKER"; import("stdfaust.lib"); import("../../seam.lib"); //radsweep = (os.lf_triangl...
https://raw.githubusercontent.com/s-e-a-m/faust-libraries/9120cccb9335f42407062eb4bf149188d8018b07/plots/dsp/XY180pan_plot.dsp
faust
radsweep = (os.lf_trianglepos(1)*90)-45 : deg2rad;
declare name "MID SIDE PANNER - LEFT RIGHT LOUDSPEAKER"; declare version "001"; declare author "Giuseppe Silvi"; declare license "GNU-GPL-v3"; declare copyright "(c)SEAM 2019"; declare description "MID SIDE PANNER - LEFT RIGHT LOUDSPEAKER"; import("stdfaust.lib"); import("../../seam.lib"); radsweep = (os.lf_trianglep...
28f73a696bb650eaf5195551c1ba1fd0402ce77ef0d68bbc6962b22fb2087341
s-e-a-m/faust-libraries
mspanlr_plot.dsp
declare name "MID SIDE PANNER - LEFT RIGHT LOUDSPEAKER"; declare version "001"; declare author "Giuseppe Silvi"; declare license "GNU-GPL-v3"; declare copyright "(c)SEAM 2019"; declare description "MID SIDE PANNER - LEFT RIGHT LOUDSPEAKER"; import("stdfaust.lib"); import("../../seam.lib"); //radsweep = (os.lf_triangl...
https://raw.githubusercontent.com/s-e-a-m/faust-libraries/9120cccb9335f42407062eb4bf149188d8018b07/plots/dsp/mspanlr_plot.dsp
faust
radsweep = (os.lf_trianglepos(1)*120)-60 : deg2rad; //
declare name "MID SIDE PANNER - LEFT RIGHT LOUDSPEAKER"; declare version "001"; declare author "Giuseppe Silvi"; declare license "GNU-GPL-v3"; declare copyright "(c)SEAM 2019"; declare description "MID SIDE PANNER - LEFT RIGHT LOUDSPEAKER"; import("stdfaust.lib"); import("../../seam.lib"); radsweep = (os.lf_trianglep...
3ce9338f8daa9d503d1a283915ff56573ae8007d5232f726a68668d302548c7e
s-e-a-m/faust-libraries
uhj2bfmt.dsp
declare name "MICHAEL GERZON UHJ TO BFORMAT DECODER"; declare version "001"; declare author "Giuseppe Silvi"; declare license "GNU-GPL-v3"; declare copyright "(c)SEAM 2019"; declare description "MICHAEL GERZON UHJ TO BFORMAT DECODER"; import("stdfaust.lib"); import("../seam.lib"); uhj2bfmt(L,R,T,Q) = W,X,Y,Z with{ ...
https://raw.githubusercontent.com/s-e-a-m/faust-libraries/9120cccb9335f42407062eb4bf149188d8018b07/examples/vst/uhj2bfmt.dsp
faust
declare name "MICHAEL GERZON UHJ TO BFORMAT DECODER"; declare version "001"; declare author "Giuseppe Silvi"; declare license "GNU-GPL-v3"; declare copyright "(c)SEAM 2019"; declare description "MICHAEL GERZON UHJ TO BFORMAT DECODER"; import("stdfaust.lib"); import("../seam.lib"); uhj2bfmt(L,R,T,Q) = W,X,Y,Z with{ ...
f335c9daf4ac74c2905dd1cacce8d5d43d32384e35239fbb4ea83fa2b70b7216
s-e-a-m/faust-libraries
XY120pan_plot.dsp
declare name "MID SIDE PANNER - LEFT RIGHT LOUDSPEAKER"; declare version "001"; declare author "Giuseppe Silvi"; declare license "GNU-GPL-v3"; declare copyright "(c)SEAM 2019"; declare description "MID SIDE PANNER - LEFT RIGHT LOUDSPEAKER"; import("stdfaust.lib"); import("../../seam.lib"); //radsweep = (os.lf_triangl...
https://raw.githubusercontent.com/s-e-a-m/faust-libraries/9120cccb9335f42407062eb4bf149188d8018b07/plots/dsp/XY120pan_plot.dsp
faust
radsweep = (os.lf_trianglepos(1)*90)-45 : deg2rad;
declare name "MID SIDE PANNER - LEFT RIGHT LOUDSPEAKER"; declare version "001"; declare author "Giuseppe Silvi"; declare license "GNU-GPL-v3"; declare copyright "(c)SEAM 2019"; declare description "MID SIDE PANNER - LEFT RIGHT LOUDSPEAKER"; import("stdfaust.lib"); import("../../seam.lib"); radsweep = (os.lf_trianglep...
f3d4d40a2b08192465a7d6f12f18c6f71b19aced0c3e2a108c720f3fb70e6bc4
s-e-a-m/faust-libraries
crcppan_plot.dsp
declare name "MID SIDE PANNER - LEFT RIGHT LOUDSPEAKER"; declare version "001"; declare author "Giuseppe Silvi"; declare license "GNU-GPL-v3"; declare copyright "(c)SEAM 2019"; declare description "MID SIDE PANNER - LEFT RIGHT LOUDSPEAKER"; import("stdfaust.lib"); import("../../seam.lib"); radsweep = (os.lf_trianglep...
https://raw.githubusercontent.com/s-e-a-m/faust-libraries/9120cccb9335f42407062eb4bf149188d8018b07/plots/dsp/crcppan_plot.dsp
faust
radsweep = (os.lf_trianglepos(1)*360)-180 : deg2rad;
declare name "MID SIDE PANNER - LEFT RIGHT LOUDSPEAKER"; declare version "001"; declare author "Giuseppe Silvi"; declare license "GNU-GPL-v3"; declare copyright "(c)SEAM 2019"; declare description "MID SIDE PANNER - LEFT RIGHT LOUDSPEAKER"; import("stdfaust.lib"); import("../../seam.lib"); radsweep = (os.lf_trianglep...
c2bd795652438c698efddd05899040891b8225e0e512352a904fbd8c114e411e
s-e-a-m/faust-libraries
mspanlrfb_plot.dsp
declare name "MID SIDE PANNER - LEFT RIGHT LOUDSPEAKER - LEFT CHANNEL IN FEEDBACK"; declare version "001"; declare author "Giuseppe Silvi"; declare license "GNU-GPL-v3"; declare copyright "(c)SEAM 2019"; declare description "MID SIDE PANNER - LEFT RIGHT LOUDSPEAKER - LEFT CHANNEL IN FEEDBACK"; import("stdfaust.lib"); ...
https://raw.githubusercontent.com/s-e-a-m/faust-libraries/9120cccb9335f42407062eb4bf149188d8018b07/plots/dsp/mspanlrfb_plot.dsp
faust
declare name "MID SIDE PANNER - LEFT RIGHT LOUDSPEAKER - LEFT CHANNEL IN FEEDBACK"; declare version "001"; declare author "Giuseppe Silvi"; declare license "GNU-GPL-v3"; declare copyright "(c)SEAM 2019"; declare description "MID SIDE PANNER - LEFT RIGHT LOUDSPEAKER - LEFT CHANNEL IN FEEDBACK"; import("stdfaust.lib"); ...
b1bd970001cac4ddce383a13d6cddaf74eaa9a482df67906e3e06d03ba7f865f
s-e-a-m/faust-libraries
lrpanfb_plot.dsp
declare name "MID SIDE PANNER - LEFT RIGHT LOUDSPEAKER - LEFT CHANNEL IN FEEDBACK"; declare version "001"; declare author "Giuseppe Silvi"; declare license "GNU-GPL-v3"; declare copyright "(c)SEAM 2019"; declare description "MID SIDE PANNER - LEFT RIGHT LOUDSPEAKER - LEFT CHANNEL IN FEEDBACK"; import("stdfaust.lib"); ...
https://raw.githubusercontent.com/s-e-a-m/faust-libraries/9120cccb9335f42407062eb4bf149188d8018b07/plots/dsp/lrpanfb_plot.dsp
faust
: 1-(_);
declare name "MID SIDE PANNER - LEFT RIGHT LOUDSPEAKER - LEFT CHANNEL IN FEEDBACK"; declare version "001"; declare author "Giuseppe Silvi"; declare license "GNU-GPL-v3"; declare copyright "(c)SEAM 2019"; declare description "MID SIDE PANNER - LEFT RIGHT LOUDSPEAKER - LEFT CHANNEL IN FEEDBACK"; import("stdfaust.lib"); ...
38f0859762ad5c8f947362167c4347a08dd07282f820ff192859e0fa44844f35
s-e-a-m/faust-libraries
blumleinpan_plot.dsp
declare name "MID SIDE PANNER - LEFT RIGHT LOUDSPEAKER"; declare version "001"; declare author "Giuseppe Silvi"; declare license "GNU-GPL-v3"; declare copyright "(c)SEAM 2019"; declare description "MID SIDE PANNER - LEFT RIGHT LOUDSPEAKER"; import("stdfaust.lib"); import("../../seam.lib"); //radsweep = (os.lf_triangl...
https://raw.githubusercontent.com/s-e-a-m/faust-libraries/9120cccb9335f42407062eb4bf149188d8018b07/plots/dsp/blumleinpan_plot.dsp
faust
radsweep = (os.lf_trianglepos(1)*90)-45 : deg2rad;
declare name "MID SIDE PANNER - LEFT RIGHT LOUDSPEAKER"; declare version "001"; declare author "Giuseppe Silvi"; declare license "GNU-GPL-v3"; declare copyright "(c)SEAM 2019"; declare description "MID SIDE PANNER - LEFT RIGHT LOUDSPEAKER"; import("stdfaust.lib"); import("../../seam.lib"); radsweep = (os.lf_trianglep...
7c8a3e28e89997b075a83997d1f2b9733425818c7f36894f8b1500a81ce1bd2c
s-e-a-m/faust-libraries
bdmodule.dsp
declare name "MICHAEL GERZON BFORMAT TO PLANAR QUADRAPHONIC"; declare version "001"; declare author "Giuseppe Silvi"; declare license "GNU-GPL-v3"; declare copyright "(c)SEAM 2019"; declare description "MICHAEL GERZON BFORMAT TO PLANAR QUADRAPHONIC"; import("stdfaust.lib"); import("../seam.lib"); bdmodule = shelf : b...
https://raw.githubusercontent.com/s-e-a-m/faust-libraries/9120cccb9335f42407062eb4bf149188d8018b07/examples/vst/bdmodule.dsp
faust
declare name "MICHAEL GERZON BFORMAT TO PLANAR QUADRAPHONIC"; declare version "001"; declare author "Giuseppe Silvi"; declare license "GNU-GPL-v3"; declare copyright "(c)SEAM 2019"; declare description "MICHAEL GERZON BFORMAT TO PLANAR QUADRAPHONIC"; import("stdfaust.lib"); import("../seam.lib"); bdmodule = shelf : b...