_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 |
|---|---|---|---|---|---|---|---|
c5208e5c0ef28ff8a51447df077e667d034f3fd862a0b3d8e5d688f996affcb8 | mi-creative/FaustPM_2021_examples | 08_StringPlucked.dsp | import("stdfaust.lib");
/* Faust PM Workshop : Introduction to Mass-Interaction Modelling */
/* Part 8: Plucking our basic string */
in1 = hslider("Pos Input 1", 0, -1, 1, 0.001):si.smoo; //write a specific position input signal operation here
OutGain = 1;
str_M = 1.0;
str_K = 0.4;
str_Z = 0.001;
str_Zo = 0.0;
mo... | https://raw.githubusercontent.com/mi-creative/FaustPM_2021_examples/329e24a3d7c062cffb76416cff05a2922a3721f0/08_StringPlucked.dsp | faust | Faust PM Workshop : Introduction to Mass-Interaction Modelling
Part 8: Plucking our basic string
write a specific position input signal operation here
routed positions
outputs
routed forces
pass-through | import("stdfaust.lib");
OutGain = 1;
str_M = 1.0;
str_K = 0.4;
str_Z = 0.001;
str_Zo = 0.0;
model = (
mi.ground(0.00),
mi.oscil(str_M, 0, str_Zo, 0, 0.00, 0.00),
mi.oscil(str_M, 0, str_Zo, 0, 0.00, 0.00),
mi.oscil(str_M, 0, str_Zo, 0, 0.00, 0.00),
mi.oscil(str_M, 0, str_Zo, 0, 0.00, 0.00),
mi.oscil(str_M, 0,... |
d55a2729ccbdc15b7febf05236367be1f5042cb51172557f195606d16e6e7c8c | mi-creative/FaustPM_2021_examples | 09_StringHarmonic.dsp | import("stdfaust.lib");
/* Faust PM Workshop : Introduction to Mass-Interaction Modelling */
/* Part 9: Plucking our basic string and generating harmonics */
in1 = hslider("Pos Input 1", 0, -1, 1, 0.001):si.smoo; //write a specific position input signal operation here
in2 = hslider("Pos Input 2", 0, -1, 1, 0.001):si... | https://raw.githubusercontent.com/mi-creative/FaustPM_2021_examples/329e24a3d7c062cffb76416cff05a2922a3721f0/09_StringHarmonic.dsp | faust | Faust PM Workshop : Introduction to Mass-Interaction Modelling
Part 9: Plucking our basic string and generating harmonics
write a specific position input signal operation here
write a specific position input signal operation here
routed positions
outputs
routed forces
pass-through | import("stdfaust.lib");
OutGain = 1;
str_M = 1.0;
str_K = 0.4;
str_Z = 0.001;
str_Zo = 0.0;
model = (
par(i, nbMass - nbPosIn, _), ro.interleave(nbPosIn, 2):
mi.ground(0.00),
mi.oscil(str_M, 0, str_Zo, 0, 0.00, 0.00),
mi.oscil(str_M, 0, str_Zo, 0, 0.00, 0.00),
mi.oscil(str_M, 0, str_Zo, 0, 0.00, 0.00),
mi.os... |
086fab80e66fb6dccf82245d27626bcd56db93679d71cd43b9fea7e6cdc04b0f | mi-creative/FaustPM_2021_examples | 10_StringBowed.dsp | import("stdfaust.lib");
/* Faust PM Workshop : Introduction to Mass-Interaction Modelling */
/* Part 10: Bowing our basic string */
in1 = hslider("Pos Input 1", 0, -300, 300, 0.01):si.smoo:si.smoo:si.smoo; //write a specific position input signal operation here
in2 = hslider("Pos Input 2", 0, -1, 1, 0.001):si.smoo; ... | https://raw.githubusercontent.com/mi-creative/FaustPM_2021_examples/329e24a3d7c062cffb76416cff05a2922a3721f0/10_StringBowed.dsp | faust | Faust PM Workshop : Introduction to Mass-Interaction Modelling
Part 10: Bowing our basic string
write a specific position input signal operation here
write a specific position input signal operation here
routed positions
outputs
routed forces
pass-through | import("stdfaust.lib");
OutGain = 1;
nlZ = hslider("Bow Pressure", 0, 0, 1, 0.01);
nlscale = 0.02;
str_M = 1.0;
str_K = 0.4;
str_Z = 0.001;
str_Zo = 0.0;
model = (
par(i, nbMass - nbPosIn, _), ro.interleave(nbPosIn, 2):
mi.ground(0.00),
mi.oscil(str_M, 0, str_Zo, 0, 0.00, 0.00),
mi.oscil(str_M, 0, str_Zo, 0, 0... |
eea6e45dd7190692a10a5394eae26d1fedda044ccb0bdd8b60e28e9fea0c6e85 | mi-creative/FaustPM_2021_examples | 11_LargeBowedString.dsp | import("stdfaust.lib");
/* Faust PM Workshop : Introduction to Mass-Interaction Modelling */
/* Part 11: A larger bowed string model */
in1 = hslider("Bow Position", 0, -300, 300, 0.001):si.smoo:si.smoo:si.smoo:si.smoo; //write a specific position input signal operation here
in2 = hslider("Finger Position", 1, -1, 1... | https://raw.githubusercontent.com/mi-creative/FaustPM_2021_examples/329e24a3d7c062cffb76416cff05a2922a3721f0/11_LargeBowedString.dsp | faust | Faust PM Workshop : Introduction to Mass-Interaction Modelling
Part 11: A larger bowed string model
write a specific position input signal operation here
write a specific position input signal operation here
routed positions
outputs
routed forces
pass-through | import("stdfaust.lib");
OutGain = 0.6;
nlZ = hslider("Bow Pressure", 0, 0, 1, 0.01);
nlscale = 0.02;
str_M = 1.0;
str_K = 0.7;
str_Z = 0.001;
str_Zo = 0.0;
model = (
par(i, nbMass - nbPosIn, _), ro.interleave(nbPosIn, 2):
mi.ground(0.00),
mi.oscil(str_M, 0, str_Zo, 0, 0.00, 0.00),
mi.oscil(str_M, 0, str_Zo, 0,... |
8278a56a2e918a2ea595f781e86c61242f88b3481e8a27eb0d5b68fc29960116 | mi-creative/FaustPM_2021_examples | 12_TriangleGamelan.dsp | import("stdfaust.lib");
/* Faust PM Workshop : Introduction to Mass-Interaction Modelling */
/* Part 12: A Triange Gamelan Model */
intens = hslider("intensity", 0, 0, 5, 0.01);
in1 = button("Frc Input 1"): ba.impulsify * intens * -2; //write a specific force input signal operation here
in2 = button("Frc Input 2")... | https://raw.githubusercontent.com/mi-creative/FaustPM_2021_examples/329e24a3d7c062cffb76416cff05a2922a3721f0/12_TriangleGamelan.dsp | faust | Faust PM Workshop : Introduction to Mass-Interaction Modelling
Part 12: A Triange Gamelan Model
write a specific force input signal operation here
write a specific force input signal operation here
write a specific force input signal operation here
routed positions
outputs
routed forces
pass-through | import("stdfaust.lib");
intens = hslider("intensity", 0, 0, 5, 0.01);
OutGain = 1000;
t1_M = 1.0;
t1_K = hslider("t1 stiff", 0.1, 0.001, 0.3, 0.001);
t1_Z = 0.0004;
t1_Zo = 0.0;
t2_M = 1.0;
t2_K = hslider("t2 stiff", 0.1, 0.001, 0.3, 0.001);
t2_Z = 0.0004;
t2_Zo = 0.0;
t3_M = 1.0;
t3_K = hslider("t3 stiff", 0.1,... |
5de6d3c76994dc5b100ecbb0c9551d8e88c1a74be1404f639e835d28a1f06ef2 | AlessandraVardeu/esercizi | Sommasottrazione.dsp | import("stdfaust.lib");
process = _,_ // questo è un commento. 2 canali
<: // dupplica i canali
_+_,// somma i canali
_-_ ;// sottrae i canali
| https://raw.githubusercontent.com/AlessandraVardeu/esercizi/795f99b7d6cd0ae694966eedb3d71040a216cbe7/Faust/Sommasottrazione.dsp | faust | questo è un commento. 2 canali
dupplica i canali
somma i canali
sottrae i canali | import("stdfaust.lib");
|
2ca0fa336ffb06a0f8ac943b53cf5e25b8c1fa71e01376d9066094c874763dfe | magnetophon/DigiDrie | svf.dsp | import("stdfaust.lib");
svf = environment {
svf(T,F,Q,G) = tick ~ (_,_) : !,!,_,_,_ : si.dot(3, mix)
with {
tick(ic1eq, ic2eq, v0) =
2*v1 - ic1eq,
2*v2 - ic2eq,
v0, v1, v2
with {
v1 = ic1eq + g *(v0-... | https://raw.githubusercontent.com/magnetophon/DigiDrie/a9f79d502e1f8d522e5f47e0c460ae99e80f9441/faust/benchmark/svf/svf.dsp | faust | import("stdfaust.lib");
svf = environment {
svf(T,F,Q,G) = tick ~ (_,_) : !,!,_,_,_ : si.dot(3, mix)
with {
tick(ic1eq, ic2eq, v0) =
2*v1 - ic1eq,
2*v2 - ic2eq,
v0, v1, v2
with {
v1 = ic1eq + g *(v0-... | |
fba8c7b4423e0aac04be68c1536edd3ba3d24add04c62a568a4595cfa62b11e8 | magnetophon/DigiDrie | korg35lpf.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.dsp | faust | freq = 2*(10^(3*normFreq+1));
target.
target.
target.
target.
target. | 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:_... |
b5f8c3353f51098558cb5c05734397dd4587b95e21a380ac76720635b3dcb526 | magnetophon/DigiDrie | oberheim.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.dsp | faust | Compute the BSF, BPF, HPF, LPF outputs
target.
target.
target. | 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)... |
9051ed691565f217641cd0991af00828296d75e716e957562889927672dea86b | magnetophon/DigiDrie | svf_approx.dsp | import("stdfaust.lib");
// Only valid in [0, 0.498). 0.5 is nyquist frequency.
tan_halfpi_approx(x) = (
4.189308700355015e-05 +
4.290568649086532 * x +
-2.657498976290899 * x * x +
-1.5163927048819992 * x * x * x
) / (
1.3667229106607917 +
-0.8644224895636948 * x +
-4.828883069406347 * x * ... | https://raw.githubusercontent.com/magnetophon/DigiDrie/a9f79d502e1f8d522e5f47e0c460ae99e80f9441/faust/benchmark/svf/svf_approx.dsp | faust | Only valid in [0, 0.498). 0.5 is nyquist frequency.
A is only used for bell, ls, hs. | import("stdfaust.lib");
tan_halfpi_approx(x) = (
4.189308700355015e-05 +
4.290568649086532 * x +
-2.657498976290899 * x * x +
-1.5163927048819992 * x * x * x
) / (
1.3667229106607917 +
-0.8644224895636948 * x +
-4.828883069406347 * x * x +
2.181672945531366 * x * x * x
);
svf = envir... |
86e6566ed1c0903d766bcf4318f2a22e24c6db290a7239aa0161e32b54660bf1 | magnetophon/VoiceOfFaust | syncSaw.dsp | import("stdfaust.lib");
// import("lib/master.lib");
import("lib/slave.lib");
import ("lib/common.lib");
// specific to this synth:
import ("lib/FullGUI.lib");
import ("lib/FMvocoder.lib");
process(audio,index,fidelity) =
// os.lf_sawpos(fr)
// ,
// os.lf_sawpos( index2freq(os.lf_sawpos(fr) ))
// ,
// my_lf... | https://raw.githubusercontent.com/magnetophon/VoiceOfFaust/82c20ed40fb5f184a236a7c765eab5acfc3bb5f5/syncSaw.dsp | faust | import("lib/master.lib");
specific to this synth:
os.lf_sawpos(fr)
,
os.lf_sawpos( index2freq(os.lf_sawpos(fr) ))
,
my_lf_sawpos(fr)
,
my_lf_sawpos( index2freq(my_lf_sawpos(fr)) )
,
my_lf_sawpos(fr)
, (my_lf_sawpos(fr))
index,
my_lf_sawpos(freq/4)
index2freq(index) = ((index-index')*ma.SR) : sampleAndHol... | import("stdfaust.lib");
import("lib/slave.lib");
import ("lib/common.lib");
import ("lib/FullGUI.lib");
import ("lib/FMvocoder.lib");
process(audio,index,fidelity) =
((soft_sync_lf_sawpos(frequency,syncer)*0.25)+0.5)
,
(sync_sawN(2,frequency,syncer)*0.5)
with {
my_lf_sawpos(freq) = ma.decimal ~ +((freq/ma.SR... |
bc5a300dd601c32dccad9174f3811f683a8ce195aa4814a1b5864fc32070560f | magnetophon/DigiDrie | svf_test.dsp | import("stdfaust.lib");
svf = environment {
svf(T,F,Q,G) = tick ~ (_,_) : !,!,_,_,_ : si.dot(3, mix)
with {
tick(ic1eq, ic2eq, v0) =
2*v1 - ic1eq,
2*v2 - ic2eq,
v0, v1, v2
with {
v1 = ic1eq + g *(v0-... | https://raw.githubusercontent.com/magnetophon/DigiDrie/a9f79d502e1f8d522e5f47e0c460ae99e80f9441/faust/benchmark/svf/svf_test.dsp | faust | Only valid in [0, 0.498). 0.5 is nyquist frequency.
A is only used for bell, ls, hs. | import("stdfaust.lib");
svf = environment {
svf(T,F,Q,G) = tick ~ (_,_) : !,!,_,_,_ : si.dot(3, mix)
with {
tick(ic1eq, ic2eq, v0) =
2*v1 - ic1eq,
2*v2 - ic2eq,
v0, v1, v2
with {
v1 = ic1eq + g *(v0-... |
4cbd9d5d4f884929042151907eee6dc95797e4d437b44d1b7f6008c9718c6d47 | magnetophon/VoiceOfFaust | Foflet.dsp | //-------------------------------------
// A formant wave function generator
//-------------------------------------
import("stdfaust.lib");
// Based on
//https://ccrma.stanford.edu/~mjolsen/220a/fp/Foflet.dsp
// by Michael Jørgen Olsen
// modified for dynamic parameters and octavation by Bart Brouns
// Sample per... | https://raw.githubusercontent.com/magnetophon/VoiceOfFaust/82c20ed40fb5f184a236a7c765eab5acfc3bb5f5/lib/Foflet.dsp | faust | -------------------------------------
A formant wave function generator
-------------------------------------
Based on
https://ccrma.stanford.edu/~mjolsen/220a/fp/Foflet.dsp
by Michael Jørgen Olsen
modified for dynamic parameters and octavation by Bart Brouns
Sample period
functions used in foflet calculation
... | import("stdfaust.lib");
T = 1.0/ma.SR;
t(4) = 0.000001;
multi = 2:pow(maxOctavation);
fofPart(fund,freq,k1,phase,BW,fc) = (((phasedFund) < int(k1)) * fofAttack(phasedFund,phase,BW,beta,fc)) + (((phasedFund) >= int(k1)) * fofRemainder(phasedFund,phase,BW,fc)) with {
beta = ma.PI / (float(k1));
phasedFund = (((fu... |
2898eeeacbc26187daa47bd6e936f8448797a20bd8616864aed84084aa566e16 | magnetophon/faustExperiments | envelope.dsp | import("stdfaust.lib");
declare author "Bart Brouns";
declare license "GPLv3";
xVal = hslider("xVal", 0, 0, maxSamples, 1)/defaultSR*ma.SR;
yVal = hslider("yVal", 0, -1, 1, 0.001);
slope = hslider("slope", 0, -1, 1, 0.001);
goBtn = button("resetBtn"):ba.impulsify;
maxSeconds = 5;
maxSamples = maxSeconds*defaultSR;
de... | https://raw.githubusercontent.com/magnetophon/faustExperiments/475def588ca4ae5b5a703cf15d30fa8851e2e147/envelope.dsp | faust | ramp from 0 to 1 in n samples.
when reset == 1, go back to 0.
currentValIndex(reset) = (reset|startPulse) :ba.toggle;
the commented out stuff is WIP for changing the curve of the ramp
position = ramp(xVal_target(reset),reset):hbargraph("pos", 0, 1):pow(power):max(0):min(1);
power = select2(slope<0,slope*px+1,1+sl... | import("stdfaust.lib");
declare author "Bart Brouns";
declare license "GPLv3";
xVal = hslider("xVal", 0, 0, maxSamples, 1)/defaultSR*ma.SR;
yVal = hslider("yVal", 0, -1, 1, 0.001);
slope = hslider("slope", 0, -1, 1, 0.001);
goBtn = button("resetBtn"):ba.impulsify;
maxSeconds = 5;
maxSamples = maxSeconds*defaultSR;
de... |
ec47e1798a3624adfb666747dc93e7a4694aaec20673a1f6cf9fbe30840a9491 | magnetophon/VoiceOfFaust | Foflet_orig.dsp | //-------------------------------------
// A formant wave function generator
//-------------------------------------
import("stdfaust.lib");
// Sample period
T = 1.0/ma.SR;
//****************** user inputs ******************/
// fundmental frequency of tone with vibrato
f0 = hgroup("[1]",nentry("Freq [style:knob]"... | https://raw.githubusercontent.com/magnetophon/VoiceOfFaust/82c20ed40fb5f184a236a7c765eab5acfc3bb5f5/lib/Foflet_orig.dsp | faust | -------------------------------------
A formant wave function generator
-------------------------------------
Sample period
****************** user inputs ******************/
fundmental frequency of tone with vibrato
fundamental freq (Hz)
choice of formant structure (vowel a,e,i,o and u)
vibrato rate
vibrato g... | import("stdfaust.lib");
T = 1.0/ma.SR;
vow = hgroup("[1]",nentry("[5:]A_E_I_O_U",1,1,5,1));
vibRate = hgroup("[1]",nentry("Vib Rate [style:knob]",4,2,7,0.1));
vibGain = hgroup("[1]",nentry("Vib Gain [style:knob]",1,0.2,1.2,0.001));
ctrls = vgroup("",hgroup("[1]",f0,vow));
fc(1) = 1040;
fc(2) = 2250;
fc(3) = 2450;
f... |
cb8076061a0233bed5b4782f848550174d3bb79901c8859a5025dd79a6e19e64 | magnetophon/faustExperiments | acor.dsp | import("stdfaust.lib");
declare author "Julius Smith";
declare author "Bart Brouns";
external = checkbox("[0]use external input");
freq = hslider("[1]freq [unit:hz] [scale:log]
[tooltip: frequency of the test oscillator]", F0min, F0min, F0max, 0.1);
lp_freq = hslider("[2]lp_freq [unit:hz] [scale:log]
[tooltip: fre... | https://raw.githubusercontent.com/magnetophon/faustExperiments/41f0452e5bba26a7f8551ab05a452c8f8bfd6a87/acor.dsp | faust | Gate parameters:
dB
attack time constant (sec) for gate to open
hold time = time (sec) gate stays open after signal < thresh
release time = time-constant (sec) for gate to close
F0min = 80.0; // lowest tracked pitch (Hz)
F0max = 500.0; // highest tracked pitch (Hz)
F0min = 300.0; // lowest tracked pitch (Hz)
... | import("stdfaust.lib");
declare author "Julius Smith";
declare author "Bart Brouns";
external = checkbox("[0]use external input");
freq = hslider("[1]freq [unit:hz] [scale:log]
[tooltip: frequency of the test oscillator]", F0min, F0min, F0max, 0.1);
lp_freq = hslider("[2]lp_freq [unit:hz] [scale:log]
[tooltip: fre... |
6b329f8e23689749675c858c8f28c29f00999bfe066ac0e0672f0784aba47ea6 | magnetophon/faustExperiments | bug.dsp | declare author "Bart Brouns";
declare license "AGPLv3";
declare name "lastNote";
declare options "[midi:on]";
import("stdfaust.lib");
///////////////////////////////////////////////////////////////////////////////
// give the number of the last note played //
//////////////////////////... | https://raw.githubusercontent.com/magnetophon/faustExperiments/475def588ca4ae5b5a703cf15d30fa8851e2e147/bug.dsp | faust | /////////////////////////////////////////////////////////////////////////////
give the number of the last note played //
/////////////////////////////////////////////////////////////////////////////
traditional faust synth:
freq = midiGroup(hslider("freq",440,0,24000,0.0001)) :new_s... | declare author "Bart Brouns";
declare license "AGPLv3";
declare name "lastNote";
declare options "[midi:on]";
import("stdfaust.lib");
phase = hslider("phase", 0, 0, 1, stepsize);
freq = lastNote:ba.pianokey2hz : enabled_smooth(gate',ba.tau2pole(portamento));
gate = gain>0;
process =
os.osc(freq)*gain*gate;
velocit... |
7ff1a024ff5ba94d83b8b0ab72900cd7b69f621a33e1218af133183898c9786d | magnetophon/VoiceOfFaust | myFMvox.dsp | declare name "FMVox";
declare version "1.0";
declare author "Chris Chafe";
declare license "BSD";
declare copyright "stk";
import("stdfaust.lib");
// ------ Program A of "Glitch Free FM Vocal Synthesis" (minor corrections from article)
// ------ table lookup oscillators -----//
ts = 1 << 16; // table size
fs... | https://raw.githubusercontent.com/magnetophon/VoiceOfFaust/82c20ed40fb5f184a236a7c765eab5acfc3bb5f5/lib/myFMvox.dsp | faust | ------ Program A of "Glitch Free FM Vocal Synthesis" (minor corrections from article)
------ table lookup oscillators -----//
table size
incrementing counter from 0
sine table for carrier
sine table for modulator
fractional remainder
generates a index signal
tbl(t,p)= s1+dec(f)*(s2-s1) // looks up linearly in... | declare name "FMVox";
declare version "1.0";
declare author "Chris Chafe";
declare license "BSD";
declare copyright "stk";
import("stdfaust.lib");
fs = float(ts);
ts1 = ts+1;
fct = float(ct);
tbl(t,p)= s1
with {
f = p*fs;
i = int(f):min(ts);
s1 = rdtable(ts1,t,i);
s2 = rdtable(ts1,t,i+1);
};
cf = c... |
26747f85dc4a80f4e6d35b4f93118ea5a853ceb3d456a01e2a02692ba590aa63 | magnetophon/faustOscillators | formant.dsp | declare author "Bart Brouns";
declare license "GPLv3";
declare name "formantOscs";
import("stdfaust.lib");
process =
fund(freq,phase,reset)<:
(
oscChooser(oscTypeL)
, oscChooser(oscTypeR)
);
oscTypeL = hslider ("[0] oscillator type left [scale:int][style:menu{'PAF':0;'FM':1;'FOF':2}]", 0, 0, 2, 1);
os... | https://raw.githubusercontent.com/magnetophon/faustOscillators/6ac2ac572f8a3dc78cc6cb0074d60cce10845300/formant.dsp | faust | /////////////////////////////////////////////////////////////////////////////
general //
/////////////////////////////////////////////////////////////////////////////
TODO: make work with negative frequency
/////////////////////////////////////////////... | declare author "Bart Brouns";
declare license "GPLv3";
declare name "formantOscs";
import("stdfaust.lib");
process =
fund(freq,phase,reset)<:
(
oscChooser(oscTypeL)
, oscChooser(oscTypeR)
);
oscTypeL = hslider ("[0] oscillator type left [scale:int][style:menu{'PAF':0;'FM':1;'FOF':2}]", 0, 0, 2, 1);
os... |
8b82245b0b6290d33fe69ffb1e0264799b769dc0536f6102803df78b859c38d9 | magnetophon/LazyLimiter | simpleLimiter.dsp | import("stdfaust.lib");
import("slidingReduce.lib");
process = GR@totalLatency,smoothGRl(GR);
// maxAttack = 128;
// TODO:
// get to GR earlier, then for the last bit, xfade from dir to pos.
// - ramp of 64 samples towards GR:slidingMin(32)
//
//better separate out the attack and release
// release: xfade from dir
/... | https://raw.githubusercontent.com/magnetophon/LazyLimiter/f3bbb2c4c05858e93710272ec42bda19d8f6a608/simpleLimiter.dsp | faust | maxAttack = 128;
TODO:
get to GR earlier, then for the last bit, xfade from dir to pos.
- ramp of 64 samples towards GR:slidingMin(32)
better separate out the attack and release
release: xfade from dir
trigger of each ramp compares itself to the un-shaped version and to the shaped versions of the others
make se... | import("stdfaust.lib");
import("slidingReduce.lib");
process = GR@totalLatency,smoothGRl(GR);
t= hslider("time", 0.1, 0, 1, 0.001);
noiseLVL = hslider("noise", 0, 0, 1, 0.01);
rate = hslider("rate", 20, 10, 20000, 10);
smoothGRl(GR) = FB~(_,_) :(_,!)
with {
FB(prev,oldDownSpeed) =
par(i, expo, fade(i)):ro.... |
7740a6f9610a615046fb7ecdb2537599bf1d4450d82d94e7f25aaf59434e72cb | magnetophon/faustExperiments | LazyLevelerOLD.dsp | declare name "LazyLeveler";
declare version "0.1";
declare author "Bart Brouns";
declare license "GPLv3";
import("stdfaust.lib");
///////////////////////////////////////////////////////////////////////////////
// variables //
////////////////////////////... | https://raw.githubusercontent.com/magnetophon/faustExperiments/c3db8c533848e95c554f73fbba8b1cf6789c581b/LazyLevelerOLD.dsp | faust | /////////////////////////////////////////////////////////////////////////////
variables //
/////////////////////////////////////////////////////////////////////////////
nr of channels
nr of lookahead samples
lookahead = pow(2,LA);
LA = 4;
table of in... | declare name "LazyLeveler";
declare version "0.1";
declare author "Bart Brouns";
declare license "GPLv3";
import("stdfaust.lib");
N = 2;
lookahead = 1<<LA;
LA = 3;
LAconvex = 128;
SEQnr = 32;
indexes(N,lookahead, input) = par(i, N, rwtable(size+1, init, windex, input, rindex)) with {
windex = (_%lookahead)~(_+trig... |
65b5fca73016129a289969c38f860ef3f7f6f295a431ae1cd4b7fca0bbe064b9 | magnetophon/LazyLimiter | LLng2.dsp | import("stdfaust.lib");
declare author "Bart Brouns";
declare license "GPLv3";
process =
GR@totalLatencyLinear
,smoothGRlinear(GR)
// ,(smoothGRlinear(GR):max(-1):min(1))
// , (attRel~_)
;
totalLatency = pow(2,expo);
totalLatencyLinear = nrBlocks * blockSize;
// nrBlocks = 1;
// blockSize = 1024;
// nrBlocks = 2;
... | https://raw.githubusercontent.com/magnetophon/LazyLimiter/f3bbb2c4c05858e93710272ec42bda19d8f6a608/LLng2.dsp | faust | ,(smoothGRlinear(GR):max(-1):min(1))
, (attRel~_)
nrBlocks = 1;
blockSize = 1024;
nrBlocks = 2;
blockSize = 512;
nrBlocks = 4;
blockSize = 128;
nrBlocks = 16;
blockSize = 64;
nrBlocks = 1;
blockSize = 512;
nrBlocks = 1;
blockSize = 128;
expo = 4;
expo = 10;
TODO sAndH(reset) parameters
crossfade(curre... | import("stdfaust.lib");
declare author "Bart Brouns";
declare license "GPLv3";
process =
GR@totalLatencyLinear
,smoothGRlinear(GR)
;
totalLatency = pow(2,expo);
totalLatencyLinear = nrBlocks * blockSize;
nrBlocks = 4;
blockSize = 2;
expo = 8;
smoothGRl(GR) = FB~(_,_) :(_,!)
with {
FB(prev,oldDownSpeed) =
par... |
98c93201f2861b2a3c5a9aca366c4eeb2448f5f85f4f7d3168e0de095456a86e | magnetophon/SubSynth | SubSynth.dsp | declare author "Bart Brouns";
declare license "AGPLv3";
declare name "SubSynth";
declare options "[midi:on][nvoices:1]";
import("stdfaust.lib");
process =
SubS(freq,gain,gate);
///////////////////////////////////////////////////////////////////////////////
// todo ... | https://raw.githubusercontent.com/magnetophon/SubSynth/1a276476a632964629bb3decbc68f9bdade09b0d/SubSynth.dsp | faust | /////////////////////////////////////////////////////////////////////////////
todo //
/////////////////////////////////////////////////////////////////////////////
multi-target
target mod
env smooth tail: trig release at a certain level
///////////... | declare author "Bart Brouns";
declare license "AGPLv3";
declare name "SubSynth";
declare options "[midi:on][nvoices:1]";
import("stdfaust.lib");
process =
SubS(freq,gain,gate);
SubS(freq,gain,gate) =
subOsc(targetFreq,punchFreq,punchEnv,retrigger,gate,freq)
:>_*gainEnvelope<:(_,_)
with {
gainEnvelope = curv... |
c0d53d4b6ff06edf0fc7cdf4170e207de3e7aa58c66036801d5e777c4c6fc1e4 | magnetophon/LazyLimiter | LLng.dsp | declare name "LazyLimiter ng";
declare author "Bart Brouns";
declare license "GPLv3";
declare version "0.1";
import("stdfaust.lib");
maxmsp = library("maxmsp.lib");
comp = library("../FaustCompressors/compressors.lib");
// process(x) = (gainCalculator(x):ba.db2linear)*(x@LookAheadTime);
process =
// GR;
// look... | https://raw.githubusercontent.com/magnetophon/LazyLimiter/f3bbb2c4c05858e93710272ec42bda19d8f6a608/LLng.dsp | faust | process(x) = (gainCalculator(x):ba.db2linear)*(x@LookAheadTime);
GR;
lookahead_compression_gain_mono(strength,threshold,0,0,knee,x);
lim(1);
GR:SandH(hslider("hld", 0, 0, 1, 1));
comp.compressor_N_chan_demo(2);
:(ro.interleave(N,2):par(i,N,(meter:ba.db2linear)*(_@maxHold)))
generalise compression gains for N ch... | declare name "LazyLimiter ng";
declare author "Bart Brouns";
declare license "GPLv3";
declare version "0.1";
import("stdfaust.lib");
maxmsp = library("maxmsp.lib");
comp = library("../FaustCompressors/compressors.lib");
process =
gainCompareGraphs ;
lim(N) =
(si.bus(N) <:
(
(
par(i, N, abs:b... |
222378bb570be0a20669dbc1ae3d03ad1fdb8cd4043378aac3a22211ae4694d2 | magnetophon/faustExperiments | expander.dsp | declare name "Expander / Upward Compressor";
declare version "0.1";
declare author "Bart Brouns";
declare license "GPLv3";
import("stdfaust.lib");
// maximum time in seconds for attack, hold and release
maxRelTime = 1;
process =
// FFcompressorSC_N_chan(strength,threshold,attack,release,knee,prePost,link,meter,2,s... | https://raw.githubusercontent.com/magnetophon/faustExperiments/92090608b8ff80d0cc73a0ff085a3dcd2ea8e844/expander.dsp | faust | maximum time in seconds for attack, hold and release
FFcompressorSC_N_chan(strength,threshold,attack,release,knee,prePost,link,meter,2,sidechain(freq),SCswitch)
FFexpanderSC_N_chan(strength,threshold,range,attack,hold,release,knee,prePost,link,meter,5,sidechain(freq),SCswitch)
, (level(hold,x):peak_expansion_gain_m... | declare name "Expander / Upward Compressor";
declare version "0.1";
declare author "Bart Brouns";
declare license "GPLv3";
import("stdfaust.lib");
maxRelTime = 1;
process =
FFexpander_N_chan(strength,threshold,range,attack,hold,release,knee,prePost,link,meter,2)
;
sidechain(freq) = fi.highpass(1,freq);
freq = hsli... |
2293c3ba5bdcddac298dcae2d07640e1e7d722948f769acf2536d18dff05d5b3 | magnetophon/faustExperiments | LazyLeveler.dsp | declare name "LazyLeveler";
declare version "0.1";
declare author "Bart Brouns";
declare license "GPLv3";
import("stdfaust.lib");
DG(x) = tgroup("limiter", vgroup("[1]controlls", x));
AG(x) = tgroup("limiter", vgroup("[2]tweaks", x));
process(x,y) =
// attackArray(LA)
// : par(i, LA, hbargraph("lev%i",0,1.4))
... | https://raw.githubusercontent.com/magnetophon/faustExperiments/acff3680410cfebf74b87cf5466e35530693798a/LazyLeveler.dsp | faust | attackArray(LA)
: par(i, LA, hbargraph("lev%i",0,1.4))
LazyLeveler(LA,testSig(LA-5))
+outGain
blokjes
sequentialBlockMinimumParOut(nrBlocks,lookahead(LA))
slidingReduce(min,lookahead(LA),lookahead(LA),ma.INFINITY)
testSig(LA):
(convexAttack(nrBlocks,LA,Lookah))
,_
@Lookah
)
:par(i, 2, _@200000)
:par(i, 5,... | declare name "LazyLeveler";
declare version "0.1";
declare author "Bart Brouns";
declare license "GPLv3";
import("stdfaust.lib");
DG(x) = tgroup("limiter", vgroup("[1]controlls", x));
AG(x) = tgroup("limiter", vgroup("[2]tweaks", x));
process(x,y) =
LazyLeveler(LA,GR(x*inGain,y*inGain))
:ba.db2linear
<:
(... |
689060dc257ab993baf10d35d50d5cffdf788237208e862e6a8ea0db3142db43 | magnetophon/faustOscillators | CZ.dsp | declare author "Bart Brouns";
declare license "GPLv3";
declare name "CZoscs";
import("stdfaust.lib");
process =
full<:(_,_);
// basic ,medium full;
// "basic" is an almost normal CZ oscillator.
// I did a PR for it to faustlibraries, but for convenience, I pasted the code below,
// from the line marked with "Casio... | https://raw.githubusercontent.com/magnetophon/faustOscillators/6ac2ac572f8a3dc78cc6cb0074d60cce10845300/CZ.dsp | faust | basic ,medium full;
"basic" is an almost normal CZ oscillator.
I did a PR for it to faustlibraries, but for convenience, I pasted the code below,
from the line marked with "Casio CZ Oscillators"
It is documented more thoroughly there, but basically, it has the following changes:
- it is phase alligned to a master... | declare author "Bart Brouns";
declare license "GPLv3";
declare name "CZoscs";
import("stdfaust.lib");
process =
full<:(_,_);
basic =
fund(freq,phase,reset)
: basicCZosc(oscType,index,res);
medium =
fund(freq,phase,reset)
: prefilterCZosc(oscType,filterType,filterFreq,filterQ,index,res);
full =
fund(fre... |
52c78efcbaec000b60423d626a3412e3c4a64295cc4fc2796ff7f3e3ccbdd73f | magnetophon/faustExperiments | lastNote.dsp | declare author "Bart Brouns";
declare license "AGPLv3";
declare name "lastNote";
declare options "[midi:on]";
import("stdfaust.lib");
// import("/home/bart/source/edgeofchaos/edgeofchaos.lib");
///////////////////////////////////////////////////////////////////////////////
// give the number of the last note ... | https://raw.githubusercontent.com/magnetophon/faustExperiments/475def588ca4ae5b5a703cf15d30fa8851e2e147/lastNote.dsp | faust | import("/home/bart/source/edgeofchaos/edgeofchaos.lib");
/////////////////////////////////////////////////////////////////////////////
give the number of the last note played //
/////////////////////////////////////////////////////////////////////////////
traditional faust synth:
f... | declare author "Bart Brouns";
declare license "AGPLv3";
declare name "lastNote";
declare options "[midi:on]";
import("stdfaust.lib");
phase = hslider("phase", 0, 0, 1, stepsize);
freq(lastNote) = lastNote:ba.pianokey2hz : enabled_smooth(gate(lastNote)' & gate(lastNote) , ba.tau2pole(portamento));
gate(lastNote) = gai... |
b5d5a9090e0b02e1a40369a3335c74f5bc11dacc593c0b38259ed5f5247d4894 | sagpant/OTTO | wormhole.dsp | /*
Black Hole Reverb for the OTTO -- By Jonatan Midtgaard
Adapted by with permission from the "OWLGAZER" modules by Xavier Godart (Empirical Noises).
To-Do:
- Perhaps adjust allpass values to be closer to freeverb?
- Add stereo spread. Are some delay lines for left/right?? Modulation for this?
- Look at shimmer. More ... | https://raw.githubusercontent.com/sagpant/OTTO/d736d5fb29f9cfbd32d2cbd3b0ad1492e6c27f9a/src/engines/fx/wormhole/wormhole.dsp | faust |
Black Hole Reverb for the OTTO -- By Jonatan Midtgaard
Adapted by with permission from the "OWLGAZER" modules by Xavier Godart (Empirical Noises).
To-Do:
- Perhaps adjust allpass values to be closer to freeverb?
- Add stereo spread. Are some delay lines for left/right?? Modulation for this?
- Look at shimmer. More mo... |
import("stdfaust.lib");
blackhole(mix,decay,hicut,pitchmix) =
_ <:
(
_,_ <:
(si.bus(N*2) :> networkline)~(feedbackline)
),
(*(1-mix),*(1-mix)) :>
_
with {
MAXDELAY = 8192;
delayval(i) = ba.take(i+1,delays) : *(time_lfo_late);
time_lfo_late = os.osc(lfo_rate)*(lfo_s... |
4703c7408a5778f615d905882f0a569a1020f5702db87223af9f6f1ec3a0c63c | sagpant/OTTO | nuke.dsp | // An analog style synth with ringmod and hardsync. This contains the code for the OTTO ADSR-envelope (exponential, but with arbitrary attack. Here it is linear.)
// A TO-DO is to add this to a dedicated faust library instead.
import("stdfaust.lib");
process = hgroup("voices", vgroup("0", voice) + vgroup("3", voice) ... | https://raw.githubusercontent.com/sagpant/OTTO/d736d5fb29f9cfbd32d2cbd3b0ad1492e6c27f9a/src/engines/synths/nuke/nuke.dsp | faust | An analog style synth with ringmod and hardsync. This contains the code for the OTTO ADSR-envelope (exponential, but with arbitrary attack. Here it is linear.)
A TO-DO is to add this to a dedicated faust library instead.
voice = hgroup("midi", envelope)
Filter
Oscillators--------------------------
Waveform modifiers... |
import("stdfaust.lib");
process = hgroup("voices", vgroup("0", voice) + vgroup("3", voice) +
vgroup("1", voice) + vgroup("4", voice) +
vgroup("2", voice) + vgroup("5", voice)) : _ ;
voice = hgroup("midi", ( multi_osc(osc1_freq) , multi_osc(osc2_freq) ) <: mixer ... |
7bc9d84adf0000871b7f07f3c29e6b761ab8a1c26457cb154e7e0d1a2d0280df | Harrolee/pypedal | FaustZita.dsp | import("stdfaust.lib");
//-------------------------------`(re.)zita_rev_fdn`-------------------------------
// Internal 8x8 late-reverberation FDN used in the FOSS Linux reverb zita-rev1
// by Fons Adriaensen <fons@linuxaudio.org>. This is an FDN reverb with
// allpass comb filters in each feedback delay in addition ... | https://raw.githubusercontent.com/Harrolee/pypedal/932bedc87d99f6096044c31d3f0895dbb36c6574/faust/faustTutorialEffect/FaustZita.dsp | faust | -------------------------------`(re.)zita_rev_fdn`-------------------------------
Internal 8x8 late-reverberation FDN used in the FOSS Linux reverb zita-rev1
by Fons Adriaensen <fons@linuxaudio.org>. This is an FDN reverb with
allpass comb filters in each feedback delay in addition to the
damping filters.
#### U... | import("stdfaust.lib");
zita_rev_fdn(f1,f2,t60dc,t60m,fsmax) =
((si.bus(2*N) :> allpass_combs(N) : feedbackmatrix(N)) ~
(delayfilters(N,freqs,durs) : fbdelaylines(N)))
with {
N = 8;
apdelays = (0.020346, 0.024421, 0.031604, 0.027333, 0.022904,
tdelays = ( 0.153129, 0.210389, 0.127837, 0.256891, 0.174713,
... |
7eb432b1c6402b841da61b390a6cd6975ecd940e0d5c470a3826e70bd4aed282 | sebastien-clara/panoplie | autowah.dsp | declare name "autoWah";
import("stdfaust.lib");
process = ve.autowah(amount)
with {
amount = vslider("amount [tooltip: amount of effect desired (0 to 1)][style:knob]", 1, 0, 1, 0.01);
};
| https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/autowah%7E.mxo/autowah.dsp | faust | declare name "autoWah";
import("stdfaust.lib");
process = ve.autowah(amount)
with {
amount = vslider("amount [tooltip: amount of effect desired (0 to 1)][style:knob]", 1, 0, 1, 0.01);
};
| |
286c3dcc60a85c9349f8fde417f1054cc7171152832bd761a10fc751ff50dee6 | sebastien-clara/panoplie | crybaby.dsp | declare name "Crybaby";
import("stdfaust.lib");
process = _ <: _*dry, (_*wetdry:ve.crybaby(wah)) :> _
with{
wah = vslider("[1] Wah parameter [tooltip: wah pedal angle between 0 (rocked back) and 1 (rocked forward)]",0.8,0,1,0.01);
wetdry = vslider("[2] amount[style:knob]", 1, 0, 1, 0.01);
dry = 1 - wetdry;
};
| https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/crybaby%7E.mxo/crybaby.dsp | faust | declare name "Crybaby";
import("stdfaust.lib");
process = _ <: _*dry, (_*wetdry:ve.crybaby(wah)) :> _
with{
wah = vslider("[1] Wah parameter [tooltip: wah pedal angle between 0 (rocked back) and 1 (rocked forward)]",0.8,0,1,0.01);
wetdry = vslider("[2] amount[style:knob]", 1, 0, 1, 0.01);
dry = 1 - wetdry;
};
| |
6d5c92b9810cea3b1e41b1e271e86b717e504a9c29ffbefadd708b8aa7e1ece8 | sebastien-clara/panoplie | wah4.dsp | declare name "wah4";
import("stdfaust.lib");
process = _ <: _*dry, (_*wetdry:ve.wah4(fr)) :> _
with {
fr = vslider("[1] Resonance Frequency [scale:log] [tooltip: wah resonance frequency in Hz][style:knob]", 200,100,2000,1);
wetdry = vslider("[2] amount[style:knob]", 1, 0, 1, 0.01);
dry = 1 - wetdry;
};
| https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/wah4%7E.mxo/wah4.dsp | faust | declare name "wah4";
import("stdfaust.lib");
process = _ <: _*dry, (_*wetdry:ve.wah4(fr)) :> _
with {
fr = vslider("[1] Resonance Frequency [scale:log] [tooltip: wah resonance frequency in Hz][style:knob]", 200,100,2000,1);
wetdry = vslider("[2] amount[style:knob]", 1, 0, 1, 0.01);
dry = 1 - wetdry;
};
| |
a9b07e31ca5ed9b5df61c17c12cf6b04d328422a4277dacf1a602d5b43c410ff | sebastien-clara/panoplie | echo.dsp |
declare name "echo";
declare description "delay with feedback";
import("stdfaust.lib");
dtime = hslider("[1] delay[style:knob]", 0.001, 0, 5, 0.001) : si.smoo;
feedback = hslider("[2] feedback[style:knob]", 0, 0, 0.99, 0.001);
wetdry = hslider("[3] amount [style:knob]", 1, 0, 1, 0.01) : si.smoo;
dry = 1 - wetdry... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/echo%7E.mxo/echo.dsp | faust |
declare name "echo";
declare description "delay with feedback";
import("stdfaust.lib");
dtime = hslider("[1] delay[style:knob]", 0.001, 0, 5, 0.001) : si.smoo;
feedback = hslider("[2] feedback[style:knob]", 0, 0, 0.99, 0.001);
wetdry = hslider("[3] amount [style:knob]", 1, 0, 1, 0.01) : si.smoo;
dry = 1 - wetdry... | |
9ee3b18094d0dd2e56fb1622488da60a272793304a021b07de342b9d9332f1bd | sebastien-clara/panoplie | moogVcf.dsp | declare name "moogVcf";
import("stdfaust.lib");
process = _ <: _*dry, (_*wetdry:vcf) :> _
with {
wetdry = vslider("[3] amount [style:knob]", 1, 0, 1, 0.01);
dry = 1 - wetdry;
freq = hslider("[1] Corner Frequency [unit:PK] [tooltip: The VCF resonates
at the corner frequency. The VCF response is flat below the... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/moogVcf%7E.mxo/moogVcf.dsp | faust | declare name "moogVcf";
import("stdfaust.lib");
process = _ <: _*dry, (_*wetdry:vcf) :> _
with {
wetdry = vslider("[3] amount [style:knob]", 1, 0, 1, 0.01);
dry = 1 - wetdry;
freq = hslider("[1] Corner Frequency [unit:PK] [tooltip: The VCF resonates
at the corner frequency. The VCF response is flat below the... | |
9fa8aee150b24e4b003be2bb12c82e5ed84ab3578b4b620a666ff42ca3b9c86d | sebastien-clara/panoplie | moogVcf2bn.dsp | declare name "moogVcf2b";
import("stdfaust.lib");
process = _ <: _*dry, (_*wetdry:vcf) :> _
with {
wetdry = vslider("[3] amount [style:knob]", 1, 0, 1, 0.01);
dry = 1 - wetdry;
freq = hslider("[1] Corner Frequency [unit:PK] [tooltip: The VCF resonates
at the corner frequency. The VCF response is flat below t... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/moogVcf2bn%7E.mxo/moogVcf2bn.dsp | faust | declare name "moogVcf2b";
import("stdfaust.lib");
process = _ <: _*dry, (_*wetdry:vcf) :> _
with {
wetdry = vslider("[3] amount [style:knob]", 1, 0, 1, 0.01);
dry = 1 - wetdry;
freq = hslider("[1] Corner Frequency [unit:PK] [tooltip: The VCF resonates
at the corner frequency. The VCF response is flat below t... | |
9bd35f17eed2918e1463e1a84444f59092168d77d890974c9d957c0cbea5263e | sebastien-clara/panoplie | moogVcf2b.dsp | declare name "moogVcf2b";
import("stdfaust.lib");
process = _ <: _*dry, (_*wetdry:vcf) :> _
with {
wetdry = vslider("[3] amount [style:knob]", 1, 0, 1, 0.01);
dry = 1 - wetdry;
freq = hslider("[1] Corner Frequency [unit:PK] [tooltip: The VCF resonates
at the corner frequency. The VCF response is flat below t... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/moogVcf2b%7E.mxo/moogVcf2b.dsp | faust | declare name "moogVcf2b";
import("stdfaust.lib");
process = _ <: _*dry, (_*wetdry:vcf) :> _
with {
wetdry = vslider("[3] amount [style:knob]", 1, 0, 1, 0.01);
dry = 1 - wetdry;
freq = hslider("[1] Corner Frequency [unit:PK] [tooltip: The VCF resonates
at the corner frequency. The VCF response is flat below t... | |
5385551cbd97636c7bedb9b4fb71529ead8f3a37aeb335492441485847747e2b | sebastien-clara/panoplie | fuzz.dsp | declare name "fuzz";
declare category "Distortion";
declare description "A simple waveshaping effect";
import("stdfaust.lib");
dist = hslider("[1] distortion [style:knob]", 12, 0, 100, 0.1); // distortion parameter
gain = hslider("[9] gain [style:knob]", 3, -96, 96, 0.1) : si.smoo; // output gain (dB)
wetdry = hsl... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/fuzz%7E.mxo/fuzz.dsp | faust | distortion parameter
output gain (dB)
the waveshaping function
gain correction factor to compensate for distortion | declare name "fuzz";
declare category "Distortion";
declare description "A simple waveshaping effect";
import("stdfaust.lib");
wetdry = hslider("[3] amount [style:knob]", 1, 0, 1, 0.01) : si.smoo;
dry = 1 - wetdry;
f(a,x) = x*(abs(x) + a)/(x*x + (a-1)*abs(x) + 1);
g(a) = 1/sqrt(a+1);
fc = hslider("tone[name:Ton... |
3415005f78470ec8aceb1f1c71e12d9565612175c49dc94a3a0bebdea875c8fc | sebastien-clara/panoplie | simpleVocoder.dsp | import("stdfaust.lib");
process = hgroup("faustVocoder",_,os.lf_imptrain(freq)*gain :
ve.vocoder(bands,att,rel,BWRatio) <: _,_)
with{
bands = 64;
vocoderGroup(x) = vgroup("Vocoder",x);
att = vocoderGroup(hslider("[0] Attack [style:knob] [tooltip: Attack time in seconds]",
5,0.1,100,0.1)*0.001);
rel = vocoderGro... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/simpleVocoder%7E.mxo/simpleVocoder.dsp | faust | import("stdfaust.lib");
process = hgroup("faustVocoder",_,os.lf_imptrain(freq)*gain :
ve.vocoder(bands,att,rel,BWRatio) <: _,_)
with{
bands = 64;
vocoderGroup(x) = vgroup("Vocoder",x);
att = vocoderGroup(hslider("[0] Attack [style:knob] [tooltip: Attack time in seconds]",
5,0.1,100,0.1)*0.001);
rel = vocoderGro... | |
3f25ebd3bb4b5321541a66e7189c95c30ade63fc89a823039a5af6b3d0c70c33 | sebastien-clara/panoplie | flanger.dsp | declare name "flanger";
import("stdfaust.lib");
process = _ <: _*dry, (_*wetdry:flanger) :> _
with {
wetdry = vslider("[9] amount [style:knob]", 1, 0, 1, 0.01);
dry = 1 - wetdry;
invert = checkbox("[6] Invert Flange Sum");
flanger = pf.flanger_mono(dmax,curdel,depth,fb,invert);
lfo = os.osc;
dmax = 2048;
... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/flanger%7E.mxo/flanger.dsp | faust | declare name "flanger";
import("stdfaust.lib");
process = _ <: _*dry, (_*wetdry:flanger) :> _
with {
wetdry = vslider("[9] amount [style:knob]", 1, 0, 1, 0.01);
dry = 1 - wetdry;
invert = checkbox("[6] Invert Flange Sum");
flanger = pf.flanger_mono(dmax,curdel,depth,fb,invert);
lfo = os.osc;
dmax = 2048;
... | |
ae7db255ff881b581178fa84d78abdbf70f7fc872b6dc60a59ad393764cef168 | sebastien-clara/panoplie | chorus.dsp | declare name "chorus";
import("stdfaust.lib");
freq = hslider("[1]freq[style:knob]", 3, 0, 15, 0.01);
dtime = hslider("[2]delay[style:knob]", 0.001, 0, 0.2, 0.001) : si.smoo;
depth = hslider("[3]depth[style:knob]", 0.02, 0, 1, 0.001) : si.smoo;
level = hslider("[4]level[style:knob]", 1, 0, 1, 0.01) : si.smoo;
deci... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/chorus%7E.mxo/chorus.dsp | faust | 0,1,2,3,... | declare name "chorus";
import("stdfaust.lib");
freq = hslider("[1]freq[style:knob]", 3, 0, 15, 0.01);
dtime = hslider("[2]delay[style:knob]", 0.001, 0, 0.2, 0.001) : si.smoo;
depth = hslider("[3]depth[style:knob]", 0.02, 0, 1, 0.001) : si.smoo;
level = hslider("[4]level[style:knob]", 1, 0, 1, 0.01) : si.smoo;
deci... |
554f5e5b8c707d724b0f5940d586aea0f71f7e9ec16acdd39e0869df195985f1 | sebastien-clara/panoplie | cabinetMarshallMG15.dsp | declare name "cabinetMarshallMG15";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 11;
modeFrequencies=(158.029115342,286.427771557,424.70324748,543.225083987,671.623740202,958.051511758,1708.68980963,2133.39305711,4227.27883539,7605.15117581,7... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/cabinetMarshallMG15%7E.mxo/cabinetMarshallMG15.dsp | faust | declare name "cabinetMarshallMG15";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 11;
modeFrequencies=(158.029115342,286.427771557,424.70324748,543.225083987,671.623740202,958.051511758,1708.68980963,2133.39305711,4227.27883539,7605.15117581,7... | |
050a1c0bf48b1e49ab89d6fc19c3a9b265e36b1050412c2f9fa95379beefd8e9 | sebastien-clara/panoplie | zitaLight.dsp | declare name "zitaLight";
import("stdfaust.lib");
process = hgroup("Zita Light",(_,_ <: re.zita_rev1_stereo(rdel,f1,f2,t60dc,t60m,fsmax),_,_ :
out_eq,_,_ : dry_wet : out_level))
with{
fsmax = 48000.0; // highest sampling rate that will be used
rdel = 60;
f1 = 200;
t60dc = 3;
t60m = 2;
f2 = 6000;
out_eq = pa... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/zitaLight%7E.mxo/zitaLight.dsp | faust | highest sampling rate that will be used
tan(PI*B/SR), B bw in Hz (Q^2 ~ g/4)
peak frequency in rad/sample
peak gain
dry_wet(x,y) = *(wet) + dry*x, *(wet) + dry*y | declare name "zitaLight";
import("stdfaust.lib");
process = hgroup("Zita Light",(_,_ <: re.zita_rev1_stereo(rdel,f1,f2,t60dc,t60m,fsmax),_,_ :
out_eq,_,_ : dry_wet : out_level))
with{
rdel = 60;
f1 = 200;
t60dc = 3;
t60m = 2;
f2 = 6000;
out_eq = pareq_stereo(eq1f,eq1l,eq1q) : pareq_stereo(eq2f,eq2l,eq2q);
pa... |
696f900d3d5d436ef13166d1e94e4711556aa368f89c826b1fcf50824a2c6451 | sebastien-clara/panoplie | compressor.dsp | declare name "compressor";
import("stdfaust.lib");
process = hgroup("compressor", compressor)
with {
compressor = co.compressor_mono(ratio,threshold,attack,release) * makeupgain;
ratio = hslider("[0] Ratio [style:knob]
[tooltip: A compression Ratio of N means that for each N dB increase in input
signal level abo... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/compressor%7E.mxo/compressor.dsp | faust | declare name "compressor";
import("stdfaust.lib");
process = hgroup("compressor", compressor)
with {
compressor = co.compressor_mono(ratio,threshold,attack,release) * makeupgain;
ratio = hslider("[0] Ratio [style:knob]
[tooltip: A compression Ratio of N means that for each N dB increase in input
signal level abo... | |
fa69e1720edf3874f5f21bb12510dff05d6298a06b329e4a7a3d02735d7586a4 | sebastien-clara/panoplie | rissetBell.dsp | //--------------------`rissetBell`-------------------
// Synthesizer
//
// #### Usage
//
// ```
// rissetBell(gate, gain, freq, duration) <: _,_
// ```
//
// Where:
//
// * `gate`: the trigger signal (0 or 1)
// * `gain`: the gain of the instrument
// * `freq`: the frequency of the instrument
// * `duration`: duration ... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/synthPoly/faustInstru/rissetBell/rissetBell%7E.mxo/rissetBell.dsp | faust | --------------------`rissetBell`-------------------
Synthesizer
#### Usage
```
rissetBell(gate, gain, freq, duration) <: _,_
```
Where:
* `gate`: the trigger signal (0 or 1)
* `gain`: the gain of the instrument
* `freq`: the frequency of the instrument
* `duration`: duration of the resonance of the bell
... |
declare name "rissetBell";
declare author "Sébastien Clara";
declare nvoices "16";
import("stdfaust.lib");
midigate = button ("v:rissetBell/h:[0]midi/[1]gate");
midifreq = vslider("v:rissetBell/h:[0]midi/[2]freq[unit:Hz] [style:knob]", 1760, 20, 10000, 1);
midigain = vslider("v:rissetBell/h:[0]midi/[9]gain [s... |
8c5f6715261f4790181044913f3e5375235d4d3f98d56c64db6c83659c4be501 | sebastien-clara/panoplie | phaseRhodes.dsp | //--------------------`phaseRhodes`-------------------
// Synthesizer
//
//
// #### Compilation example
// * faust2jaqt -midi phaseRhodes.dsp
//
//
// #### Source
// * http://sccode.org/1-522
///////////////////////////////////////////////////////////////
declare name "phaseRhodes";
declare author "Sébastien Clara";
... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/synthPoly/faustInstru/phaseRhodes/phaseRhodes%7E.mxo/phaseRhodes.dsp | faust | --------------------`phaseRhodes`-------------------
Synthesizer
#### Compilation example
* faust2jaqt -midi phaseRhodes.dsp
#### Source
* http://sccode.org/1-522
/////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////
MIDI interface
////////... |
declare name "phaseRhodes";
declare author "Sébastien Clara";
declare nvoices "16";
import("stdfaust.lib");
midigate = button ("v:phaseRhodes/h:[0]midi/[1]gate");
midifreq = vslider("v:phaseRhodes/h:[0]midi/[2]freq [unit:Hz] [style:knob]", 440, 30, 5000, 1);
midigain = vslider("v:phaseRhodes/h:[0]midi/[9]gain... |
adcceac68709155ebc66bc46e104381c0d3b25515692188674c7156dd1859943 | sebastien-clara/panoplie | cabinetMesaGhandiBass.dsp | declare name "cabinetMesaGhandiBass";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 23;
modeFrequencies=(158.918918919,635.675675676,953.513513514,1191.89189189,1350.81081081,1589.18918919,2224.86486486,2463.24324324,2781.08108108,3178.3783783... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/cabinetMesaGhandiBass%7E.mxo/cabinetMesaGhandiBass.dsp | faust | declare name "cabinetMesaGhandiBass";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 23;
modeFrequencies=(158.918918919,635.675675676,953.513513514,1191.89189189,1350.81081081,1589.18918919,2224.86486486,2463.24324324,2781.08108108,3178.3783783... | |
93bc25a241362a80dc867381af9d8363531351cb873e1db8099798c8e3ad57e4 | sebastien-clara/panoplie | phaseRhodesMono.dsp | //--------------------`phaseRhodes`-------------------
// Synthesizer
//
//
// #### Compilation example
// * faust2jaqt -midi phaseRhodes.dsp
//
//
// #### Source
// * http://sccode.org/1-522
///////////////////////////////////////////////////////////////
declare name "phaseRhodes";
declare author "Sébastien Clara";
... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/synthMono/faustInstruMono/phaseRhodesMono/phaseRhodesMono%7E.mxo/phaseRhodesMono.dsp | faust | --------------------`phaseRhodes`-------------------
Synthesizer
#### Compilation example
* faust2jaqt -midi phaseRhodes.dsp
#### Source
* http://sccode.org/1-522
/////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////
MIDI interface
////////... |
declare name "phaseRhodes";
declare author "Sébastien Clara";
import("stdfaust.lib");
midigate = button ("v:phaseRhodes/h:[0]midi/[1]gate");
midifreq = vslider("v:phaseRhodes/h:[0]midi/[2]freq [unit:Hz] [style:knob]", 440, 30, 5000, 1) : portamento;
midigain = vslider("v:phaseRhodes/h:[0]midi/[9]gain [style:kn... |
5819cd7fa9219e35d652d51214c2c73b94133971e2ca8c80df5c1a5ad76d37c7 | sebastien-clara/panoplie | cabinetMesaGhandiTreble.dsp | declare name "cabinetMesaGhandiTreble";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 28;
modeFrequencies=(177.108433735,708.43373494,974.096385542,1239.75903614,1593.97590361,2213.85542169,2656.62650602,3099.39759036,3542.1686747,3719.2771084... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/cabinetMesaGhandiTreble%7E.mxo/cabinetMesaGhandiTreble.dsp | faust | declare name "cabinetMesaGhandiTreble";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 28;
modeFrequencies=(177.108433735,708.43373494,974.096385542,1239.75903614,1593.97590361,2213.85542169,2656.62650602,3099.39759036,3542.1686747,3719.2771084... | |
9addde7c71ebc151f258c62d9929bd97fef6e4bd84d649300291f9e57990d085 | sebastien-clara/panoplie | parametricEQ.dsp | // A parametric equalizer application.
//
// #### Usage:
//
// ```
// _ : parametric_eq : _ ;
// ```
//------------------------------------------------------------
declare name "parametricEQ";
import("stdfaust.lib");
process = fi.low_shelf(LL,FL) : fi.peak_eq(LP,FP,BP) : fi.high_shelf(LH,FH)
with{
eq_group(x) = hg... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/parametricEQ%7E.mxo/parametricEQ.dsp | faust | A parametric equalizer application.
#### Usage:
```
_ : parametric_eq : _ ;
```
------------------------------------------------------------ | declare name "parametricEQ";
import("stdfaust.lib");
process = fi.low_shelf(LL,FL) : fi.peak_eq(LP,FP,BP) : fi.high_shelf(LH,FH)
with{
eq_group(x) = hgroup("[0] PARAMETRIC EQ SECTIONS [tooltip: See Faust's filters.lib
for info and pointers]",x);
ls_group(x) = eq_group(vgroup("[1] Low Shelf",x));
LL = ls_group... |
3bf791f01aa8b957395b8518cbe851cebd09cd8d2cd1e060f50779fcca40d8c1 | sebastien-clara/panoplie | protoPad.dsp | //--------------------`protoPad`-------------------
// Synthesizer
//
//
// #### Compilation example
// * faust2jaqt -midi protoPad.dsp
//
//
// #### Source
// * http://sccode.org/1-4QJ
///////////////////////////////////////////////////////////////
declare name "protoPad";
declare author "Sébastien Clara";
declare ... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/synthPoly/faustInstru/protoPad/protoPad%7E.mxo/protoPad.dsp | faust | --------------------`protoPad`-------------------
Synthesizer
#### Compilation example
* faust2jaqt -midi protoPad.dsp
#### Source
* http://sccode.org/1-4QJ
/////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////
MIDI interface
//////////////... |
declare name "protoPad";
declare author "Sébastien Clara";
declare nvoices "16";
import("stdfaust.lib");
midigate = button ("v:protoPad/h:[0]midi/[1]gate");
midifreq = vslider("v:protoPad/h:[0]midi/[2]freq [unit:Hz] [style:knob]", 440, 20, 10000, 1);
midigain = vslider("v:protoPad/h:[0]midi/[9]gain [style:knob]... |
e5304ba34601d55d1c94b238175e3fe94d18c7409db1dc047b74e17431d3d20b | sebastien-clara/panoplie | protoPadMono.dsp | //--------------------`protoPad`-------------------
// Synthesizer
//
//
// #### Compilation example
// * faust2jaqt -midi protoPad.dsp
//
//
// #### Source
// * http://sccode.org/1-4QJ
///////////////////////////////////////////////////////////////
declare name "protoPad";
declare author "Sébastien Clara";
import(... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/synthMono/faustInstruMono/protoPadMono/protoPadMono%7E.mxo/protoPadMono.dsp | faust | --------------------`protoPad`-------------------
Synthesizer
#### Compilation example
* faust2jaqt -midi protoPad.dsp
#### Source
* http://sccode.org/1-4QJ
/////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////
MIDI interface
//////////////... |
declare name "protoPad";
declare author "Sébastien Clara";
import("stdfaust.lib");
midigate = button ("v:protoPad/h:[0]midi/[1]gate");
midifreq = vslider("v:protoPad/h:[0]midi/[2]freq [unit:Hz] [style:knob]", 440, 20, 10000, 1) : portamento;
midigain = vslider("v:protoPad/h:[0]midi/[9]gain [style:knob]", 0.5, 0... |
9f150b0ebc3e72c05e5bc00d1341522f129eec0c9a69e8cf418b94b8294a9fe1 | sebastien-clara/panoplie | cabinetMarshallDamienTreble.dsp | declare name "cabinetMarshallDamienTreble";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 44;
modeFrequencies=(105.0,630.0,787.5,997.5,1207.5,1575.0,1785.0,1890.0,2047.5,2310.0,2625.0,2835.0,3045.0,3255.0,3517.5,3727.5,4095.0,4252.5,4462.5,462... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/cabinetMarshallDamienTreble%7E.mxo/cabinetMarshallDamienTreble.dsp | faust | declare name "cabinetMarshallDamienTreble";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 44;
modeFrequencies=(105.0,630.0,787.5,997.5,1207.5,1575.0,1785.0,1890.0,2047.5,2310.0,2625.0,2835.0,3045.0,3255.0,3517.5,3727.5,4095.0,4252.5,4462.5,462... | |
518210a33fd2ee7032d96171d71d14dd627c42653c93f38812ccc1fea3ea5fa2 | sebastien-clara/panoplie | granular.dsp | //--------------------`granular`-------------------
// Synthesizer
//
//
// #### Compilation example
// * faust2jaqt -midi granular.dsp
///////////////////////////////////////////////////////////////
declare name "granular";
declare author "Sébastien Clara";
declare nvoices "16";
import("stdfaust.lib");
////////... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/synthPoly/faustInstru/granular/granular%7E.mxo/granular.dsp | faust | --------------------`granular`-------------------
Synthesizer
#### Compilation example
* faust2jaqt -midi granular.dsp
/////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////
MIDI interface
////////////////////////////////////////////////////////... |
declare name "granular";
declare author "Sébastien Clara";
declare nvoices "16";
import("stdfaust.lib");
gate = button ("v:granular/h:[0]midi/[1]gate");
freq = vslider("v:granular/h:[0]midi/[2]freq [unit:Hz] [style:knob]", 440, 30, 10000, 10);
gain = vslider("v:granular/h:[0]midi/[9]gain [style:knob]", 1, 0, 5... |
365d59be365457c0feed45470073d648d972115280d59c997b5b2517c11c79b7 | sebastien-clara/panoplie | granularMono.dsp | //--------------------`granular`-------------------
// Synthesizer
//
//
// #### Compilation example
// * faust2jaqt -midi granular.dsp
///////////////////////////////////////////////////////////////
declare name "granular";
declare author "Sébastien Clara";
import("stdfaust.lib");
///////////////////////////////... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/synthMono/faustInstruMono/granularMono/granularMono%7E.mxo/granularMono.dsp | faust | --------------------`granular`-------------------
Synthesizer
#### Compilation example
* faust2jaqt -midi granular.dsp
/////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////
MIDI interface
////////////////////////////////////////////////////////... |
declare name "granular";
declare author "Sébastien Clara";
import("stdfaust.lib");
midigate = button ("v:granular/h:[0]midi/[1]gate");
midifreq = vslider("v:granular/h:[0]midi/[2]freq [unit:Hz] [style:knob]", 440, 30, 10000, 10) : portamento;
midigain = vslider("v:granular/h:[0]midi/[9]gain [style:knob]", 1, 0,... |
c1c9802917005bbb5604b552727d635b6fcdc974f4bff9a81e2f9538c9faa57b | sebastien-clara/panoplie | wobble.dsp | //--------------------`wobble`-------------------
// Synthesizer
//
//
// #### Compilation example
// * faust2jaqt -midi wobble.dsp
///////////////////////////////////////////////////////////////
declare name "wobble";
declare author "Sébastien Clara";
declare nvoices "16";
import("stdfaust.lib");
/////////////... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/synthPoly/faustInstru/wobble/wobble%7E.mxo/wobble.dsp | faust | --------------------`wobble`-------------------
Synthesizer
#### Compilation example
* faust2jaqt -midi wobble.dsp
/////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////
GUI parameters
////////////////////////////////////////////////////////////... |
declare name "wobble";
declare author "Sébastien Clara";
declare nvoices "16";
import("stdfaust.lib");
gate = button ("v:wobble/h:[0]midi/[1]gate");
freq = vslider("v:wobble/h:[0]midi/[2]freq [unit:Hz] [style:knob]", 220, 20, 5000, 10);
gain = vslider("v:wobble/h:[0]midi/[9]gain [style:knob]", 1, 0, 3, 0.01);... |
1a81721c33e45aa166e8cdaf804f1e7f5bee0c19623348338b457f20f0289e69 | sebastien-clara/panoplie | wobbleMono.dsp | //--------------------`wobble`-------------------
// Synthesizer
//
//
// #### Compilation example
// * faust2jaqt -midi wobble.dsp
//
//
// #### Source
// * https://www.youtube.com/watch?v=E_qrk2hE__s
///////////////////////////////////////////////////////////////
declare name "wobble";
declare author "Sébastien Cla... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/synthMono/faustInstruMono/wobbleMono/wobbleMono%7E.mxo/wobbleMono.dsp | faust | --------------------`wobble`-------------------
Synthesizer
#### Compilation example
* faust2jaqt -midi wobble.dsp
#### Source
* https://www.youtube.com/watch?v=E_qrk2hE__s
/////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////
GUI parameter... |
declare name "wobble";
declare author "Sébastien Clara";
import("stdfaust.lib");
gate = button ("v:wobble/h:[0]midi/[1]gate");
freq = vslider("v:wobble/h:[0]midi/[2]freq [unit:Hz] [style:knob]", 220, 20, 5000, 10) : portamento;
gain = vslider("v:wobble/h:[0]midi/[9]gain [style:knob]", 1, 0, 3, 0.01) : si.smoo;... |
d62be6fc73c1248afd8caa13c64ed19a04311155b8d4486fe69403a4d1bb4a49 | sebastien-clara/panoplie | cabinetMarshallDamienBass.dsp | declare name "cabinetMarshallDamienBass";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 55;
modeFrequencies=(110.989932886,295.973154362,369.966442953,443.959731544,554.94966443,628.94295302,776.929530201,998.909395973,1109.89932886,1183.89261... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/cabinetMarshallDamienBass%7E.mxo/cabinetMarshallDamienBass.dsp | faust | declare name "cabinetMarshallDamienBass";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 55;
modeFrequencies=(110.989932886,295.973154362,369.966442953,443.959731544,554.94966443,628.94295302,776.929530201,998.909395973,1109.89932886,1183.89261... | |
6fdaf5b4987848f1c227604a036755f6a237f2d9cedd1605ff9a8b03f7ebb950 | sebastien-clara/panoplie | cabinetMarshallSterlingTreble.dsp | declare name "cabinetMarshallSterlingTreble";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 57;
modeFrequencies=(143.181818182,429.545454545,644.318181818,823.295454545,1038.06818182,1217.04545455,1431.81818182,1575.0,1718.18181818,1861.363636... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/cabinetMarshallSterlingTreble%7E.mxo/cabinetMarshallSterlingTreble.dsp | faust | declare name "cabinetMarshallSterlingTreble";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 57;
modeFrequencies=(143.181818182,429.545454545,644.318181818,823.295454545,1038.06818182,1217.04545455,1431.81818182,1575.0,1718.18181818,1861.363636... | |
31bba6b3677812262fe88b1b69547f76c6def879e103dc1170823cdc3c661920 | sebastien-clara/panoplie | cabinetAmpegManateeTreble.dsp | declare name "cabinetAmpegManateeTreble";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 69;
modeFrequencies=(131.152416357,557.397769517,754.126394052,852.49070632,1016.43122677,1147.58364312,1245.94795539,1409.88847584,1508.2527881,1868.92193... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/cabinetAmpegManateeTreble%7E.mxo/cabinetAmpegManateeTreble.dsp | faust | declare name "cabinetAmpegManateeTreble";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 69;
modeFrequencies=(131.152416357,557.397769517,754.126394052,852.49070632,1016.43122677,1147.58364312,1245.94795539,1409.88847584,1508.2527881,1868.92193... | |
143c913e4b4fe9fae13ce4c16d54b1468140fdb0a5878af86ce72481154af581 | sebastien-clara/panoplie | Tinkle.dsp | declare name "Tinkle";
declare description "Banded Waveguide Modeld Tibetan Bowl";
//declare author "Romain Michon";
declare author "Sébastien Clara";
declare description "This instrument uses banded waveguide. For more information, see Essl, G. and Cook, P. Banded Waveguides: Towards Physical Modelling of Bar Percussi... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/synthPoly/faustInstru/Tinkle/Tinkle%7E.mxo/Tinkle.dsp | faust | declare author "Romain Michon";
==================== INSTRUMENT =======================
nModes resonances with nModes feedbacks for bow table look-up
==================== GUI SPECIFICATION ================
==================== MODAL PARAMETERS ================
==================== SIGNAL PROCESSING ================
--... | declare name "Tinkle";
declare description "Banded Waveguide Modeld Tibetan Bowl";
declare author "Sébastien Clara";
declare description "This instrument uses banded waveguide. For more information, see Essl, G. and Cook, P. Banded Waveguides: Towards Physical Modelling of Bar Percussion Instruments, Proceedings of the... |
0b8420c52e1b410c2dfa7984a739104283906fc7eadad3a91d7a7a167d9eda2e | sebastien-clara/panoplie | cabinetCarvinKirbyTreble.dsp | declare name "cabinetCarvinKirbyTreble";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 67;
modeFrequencies=(148.818897638,396.850393701,694.488188976,942.519685039,1091.33858268,1537.79527559,1637.00787402,1736.22047244,1934.64566929,2281.8897... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/cabinetCarvinKirbyTreble%7E.mxo/cabinetCarvinKirbyTreble.dsp | faust | declare name "cabinetCarvinKirbyTreble";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 67;
modeFrequencies=(148.818897638,396.850393701,694.488188976,942.519685039,1091.33858268,1537.79527559,1637.00787402,1736.22047244,1934.64566929,2281.8897... | |
87c77cba432b7f151af78725f9789e63d9bb117dfc79fbb5ec7d8cd7a37066b3 | sebastien-clara/panoplie | cabinetCarvinKirbyBass.dsp | declare name "cabinetCarvinKirbyBass";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 58;
modeFrequencies=(160.753341434,750.182260024,1071.68894289,1232.44228433,1553.94896719,1661.11786148,2036.20899149,2250.54678007,2411.30012151,2572.053462... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/cabinetCarvinKirbyBass%7E.mxo/cabinetCarvinKirbyBass.dsp | faust | declare name "cabinetCarvinKirbyBass";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 58;
modeFrequencies=(160.753341434,750.182260024,1071.68894289,1232.44228433,1553.94896719,1661.11786148,2036.20899149,2250.54678007,2411.30012151,2572.053462... | |
920cec501f42b9e1df3cbab659eb347eba5929c88d0a9c0ebb816016324ad7ae | sebastien-clara/panoplie | cabinetLineAngoraBass.dsp | declare name "cabinetLineAngoraBass";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 64;
modeFrequencies=(166.57223796,374.787535411,458.073654391,541.359773371,666.288951841,999.433427762,1166.00566572,1290.93484419,1415.86402266,1665.7223796,... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/cabinetLineAngoraBass%7E.mxo/cabinetLineAngoraBass.dsp | faust | declare name "cabinetLineAngoraBass";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 64;
modeFrequencies=(166.57223796,374.787535411,458.073654391,541.359773371,666.288951841,999.433427762,1166.00566572,1290.93484419,1415.86402266,1665.7223796,... | |
5d516e22d995465ceb7e33fa6dc3ab7b23695c00ef46cdd2af7f1c607926083a | sebastien-clara/panoplie | faustDX7.dsp | declare name "faustDX7";
declare nvoices "16";
import("stdfaust.lib");
bend = vslider("h:dx7/v:global/[9]bend [style:knob] [midi:pitchwheel]", 1,0.9,1.1,0.01);
process = dx7 * 0.25;
dx7 = par(i,32, dx.dx7_algo(i,egR1,egR2,egR3,egR4,egL1,egL2,egL3,egL4,outLevel,keyVelSens,ampModSens,opMode,opFreq,opDetune,opRateS... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/synthPoly/faustInstru/faustDX7/faustDX7%7E.mxo/faustDX7.dsp | faust | declare name "faustDX7";
declare nvoices "16";
import("stdfaust.lib");
bend = vslider("h:dx7/v:global/[9]bend [style:knob] [midi:pitchwheel]", 1,0.9,1.1,0.01);
process = dx7 * 0.25;
dx7 = par(i,32, dx.dx7_algo(i,egR1,egR2,egR3,egR4,egL1,egL2,egL3,egL4,outLevel,keyVelSens,ampModSens,opMode,opFreq,opDetune,opRateS... | |
5b4eb78b0c9d47d1c082374fecc6cb40c4b1554fc8926bf419d82f55eaae2a8c | sebastien-clara/panoplie | faustDX7mono.dsp | declare name "faustDX7";
import("stdfaust.lib");
bend = vslider("h:dx7/v:global/[9]bend [style:knob] [midi:pitchwheel]", 1,0.9,1.1,0.01);
portamento = si.smooth(vslider("h:dx7/v:global/[8]portamento [style:knob]", 0, 0, 5, 0.05) : ba.tau2pole);
process = dx7 * 0.25;
dx7 = par(i,32, dx.dx7_algo(i,egR1,egR2,egR3,e... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/synthMono/faustInstruMono/faustDX7mono/faustDX7mono%7E.mxo/faustDX7mono.dsp | faust | declare name "faustDX7";
import("stdfaust.lib");
bend = vslider("h:dx7/v:global/[9]bend [style:knob] [midi:pitchwheel]", 1,0.9,1.1,0.01);
portamento = si.smooth(vslider("h:dx7/v:global/[8]portamento [style:knob]", 0, 0, 5, 0.05) : ba.tau2pole);
process = dx7 * 0.25;
dx7 = par(i,32, dx.dx7_algo(i,egR1,egR2,egR3,e... | |
586ad47a5213ac6a2559bad0822247b28ed92505ce125d391d51b381008cd9b3 | sebastien-clara/panoplie | cabinetLineAngoraTreble.dsp | declare name "cabinetLineAngoraTreble";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 87;
modeFrequencies=(152.595155709,305.190311419,396.747404844,457.785467128,549.342560554,671.418685121,824.01384083,1007.12802768,1190.24221453,1281.799307... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/cabinetLineAngoraTreble%7E.mxo/cabinetLineAngoraTreble.dsp | faust | declare name "cabinetLineAngoraTreble";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 87;
modeFrequencies=(152.595155709,305.190311419,396.747404844,457.785467128,549.342560554,671.418685121,824.01384083,1007.12802768,1190.24221453,1281.799307... | |
3ab507a3f0d958abe061fba6817ed1931b6ac558b34bbe6d9b24c6d4a2600f39 | sebastien-clara/panoplie | cabinetAmpegMotown.dsp | declare name "cabinetAmpegMotown";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 87;
modeFrequencies=(5.55485577529,72.2131250787,111.097115506,211.084519461,299.962211865,344.401058068,366.620481169,477.717596675,561.040433304,622.143846832,7... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/cabinetAmpegMotown%7E.mxo/cabinetAmpegMotown.dsp | faust | declare name "cabinetAmpegMotown";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 87;
modeFrequencies=(5.55485577529,72.2131250787,111.097115506,211.084519461,299.962211865,344.401058068,366.620481169,477.717596675,561.040433304,622.143846832,7... | |
04c40700398816dd79835bc10e383fd6310b1021e91e805e5b784efe8d970026 | sebastien-clara/panoplie | cabinetAmpegManateeBass.dsp | declare name "cabinetAmpegManateeBass";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 90;
modeFrequencies=(153.277060576,569.314796425,744.48857994,875.868917577,1007.24925521,1160.52631579,1423.28699106,1510.87388282,1817.42800397,2102.085402... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/cabinetAmpegManateeBass%7E.mxo/cabinetAmpegManateeBass.dsp | faust | declare name "cabinetAmpegManateeBass";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 90;
modeFrequencies=(153.277060576,569.314796425,744.48857994,875.868917577,1007.24925521,1160.52631579,1423.28699106,1510.87388282,1817.42800397,2102.085402... | |
3ce37b7e46d6e20a93ec0b38beb86a8c91da1e3df6020d9a724906aa7a41d476 | sebastien-clara/panoplie | cabinetGenzieTreble.dsp | declare name "cabinetGenzieTreble";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 92;
modeFrequencies=(118.151373074,383.991962492,649.832551909,708.908238446,797.521768252,915.673141326,1092.90020094,1683.65706631,1919.95981246,2156.26255861,... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/cabinetGenzieTreble%7E.mxo/cabinetGenzieTreble.dsp | faust | declare name "cabinetGenzieTreble";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 92;
modeFrequencies=(118.151373074,383.991962492,649.832551909,708.908238446,797.521768252,915.673141326,1092.90020094,1683.65706631,1919.95981246,2156.26255861,... | |
2882843cbb9c51a85166844efc614dc8e995a81aaedfb4736453971cda852068 | sebastien-clara/panoplie | distoTubeScreamer.dsp | declare name "Tube Screamer";
declare category "Distortion";
declare description "Based on a circuit diagram of the Ibanez TS-9 and a mathematical analysis published by Tamás Kenéz";
import("stdfaust.lib");
smoothi(c) = *(1-c) : +~*(c);
process = ts9nonlin : lowpassfilter : *(gain) with {
R1 = 4700;... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/distoTubeScreamer%7E.mxo/distoTubeScreamer.dsp | faust | **************************************************************************************
-- Rdtable from waveform
Change sign of input signal x;
function that takes f value and x sign
-- Get sign and reversed sign of a signal x
-- Interpolate value between i and i+1 in table with coefficient f.
-- Bound Index with table... | declare name "Tube Screamer";
declare category "Distortion";
declare description "Based on a circuit diagram of the Ibanez TS-9 and a mathematical analysis published by Tamás Kenéz";
import("stdfaust.lib");
smoothi(c) = *(1-c) : +~*(c);
process = ts9nonlin : lowpassfilter : *(gain) with {
R1 = 4700;... |
cf4a28fcc370b78ebfcc20336ebf4722c7c4f9513307d6c6f84151c3345185f6 | sebastien-clara/panoplie | cabinetMarshallSterlingBass.dsp | declare name "cabinetMarshallSterlingBass";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 109;
modeFrequencies=(131.838565022,417.488789238,637.219730942,681.165919283,725.112107623,834.977578475,1032.73542601,1120.62780269,1186.5470852,1230.4... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/cabinetMarshallSterlingBass%7E.mxo/cabinetMarshallSterlingBass.dsp | faust | declare name "cabinetMarshallSterlingBass";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 109;
modeFrequencies=(131.838565022,417.488789238,637.219730942,681.165919283,725.112107623,834.977578475,1032.73542601,1120.62780269,1186.5470852,1230.4... | |
d32e7921a60590e3099de7e2a3859b90e66eefe15c5a439596851e39c412d9f8 | sebastien-clara/panoplie | cabinetKrankIgorTreble.dsp | declare name "cabinetKrankIgorTreble";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 112;
modeFrequencies=(123.946037099,446.205733558,644.519392917,818.043844857,917.200674536,966.779089376,1065.93591906,1189.88195616,1338.61720067,1512.14165... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/cabinetKrankIgorTreble%7E.mxo/cabinetKrankIgorTreble.dsp | faust | declare name "cabinetKrankIgorTreble";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 112;
modeFrequencies=(123.946037099,446.205733558,644.519392917,818.043844857,917.200674536,966.779089376,1065.93591906,1189.88195616,1338.61720067,1512.14165... | |
f299578ce7b335fe5cc12561f3eca503c0a9bc985123633e28bb825e28175135 | sebastien-clara/panoplie | cabinetKrankIgorBass.dsp | declare name "cabinetKrankIgorBass";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 109;
modeFrequencies=(121.879318287,446.890833717,528.143712575,650.023030861,690.64947029,914.094887149,975.034546292,1076.60064486,1178.16674344,1279.73284201... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/cabinetKrankIgorBass%7E.mxo/cabinetKrankIgorBass.dsp | faust | declare name "cabinetKrankIgorBass";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 109;
modeFrequencies=(121.879318287,446.890833717,528.143712575,650.023030861,690.64947029,914.094887149,975.034546292,1076.60064486,1178.16674344,1279.73284201... | |
976f48077bb0f659b8b8f202b0c9942d9722e36a50be6101bd18544905e10d10 | sebastien-clara/panoplie | cabinetGenzieBass.dsp | declare name "cabinetGenzieBass";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 117;
modeFrequencies=(42.0400381316,126.120114395,357.340324118,630.600571973,693.660629171,777.740705434,840.800762631,903.860819828,987.940896092,1072.02097235,1... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/cabinetGenzieBass%7E.mxo/cabinetGenzieBass.dsp | faust | declare name "cabinetGenzieBass";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 117;
modeFrequencies=(42.0400381316,126.120114395,357.340324118,630.600571973,693.660629171,777.740705434,840.800762631,903.860819828,987.940896092,1072.02097235,1... | |
c1c1dacd292f35f97bccd33df5958daa46aab678494d8cec67c3e08a5f770f7a | sebastien-clara/panoplie | cabinetSelmerZodiacBass.dsp | declare name "cabinetSelmerZodiacBass";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 135;
modeFrequencies=(77.767980854,99.9874039552,133.316538607,166.645673259,249.968509888,327.736490742,455.498173573,588.81471218,683.24726036,838.78322206... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/cabinetSelmerZodiacBass%7E.mxo/cabinetSelmerZodiacBass.dsp | faust | declare name "cabinetSelmerZodiacBass";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 135;
modeFrequencies=(77.767980854,99.9874039552,133.316538607,166.645673259,249.968509888,327.736490742,455.498173573,588.81471218,683.24726036,838.78322206... | |
fef5b8f013f34231db2af49055246ef11ebe53e0ba763ea6f9f48b0ed7a60beb | sebastien-clara/panoplie | cabinetFenderTweedTreble.dsp | declare name "cabinetFenderTweedTreble";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 122;
modeFrequencies=(16.6645673259,38.883990427,122.206827056,183.310240584,266.633077214,327.736490742,416.614183146,488.827308225,544.375865978,616.58899... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/cabinetFenderTweedTreble%7E.mxo/cabinetFenderTweedTreble.dsp | faust | declare name "cabinetFenderTweedTreble";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 122;
modeFrequencies=(16.6645673259,38.883990427,122.206827056,183.310240584,266.633077214,327.736490742,416.614183146,488.827308225,544.375865978,616.58899... | |
b643d16b39ca28e2e15240f6b4bbe3c0a7964935a3502c253cf5ae368455f74d | sebastien-clara/panoplie | cabinetMarshallGreenBass.dsp | declare name "cabinetMarshallGreenBass";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 136;
modeFrequencies=(72.2131250787,122.206827056,161.090817483,177.755384809,227.749086787,333.291346517,477.717596675,583.259856405,633.253558383,716.5763... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/cabinetMarshallGreenBass%7E.mxo/cabinetMarshallGreenBass.dsp | faust | declare name "cabinetMarshallGreenBass";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 136;
modeFrequencies=(72.2131250787,122.206827056,161.090817483,177.755384809,227.749086787,333.291346517,477.717596675,583.259856405,633.253558383,716.5763... | |
f89f1699af13fd4f7113905ab2eb264ab09e89a4926a13ce4c5aaf5836e39637 | sebastien-clara/panoplie | cabinetSelmerZodiacTreble.dsp | declare name "cabinetSelmerZodiacTreble";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 135;
modeFrequencies=(77.767980854,99.9874039552,127.761682832,244.413654113,466.607885124,599.924423731,699.911827686,883.222068271,949.880337574,1105.416... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/cabinetSelmerZodiacTreble%7E.mxo/cabinetSelmerZodiacTreble.dsp | faust | declare name "cabinetSelmerZodiacTreble";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 135;
modeFrequencies=(77.767980854,99.9874039552,127.761682832,244.413654113,466.607885124,599.924423731,699.911827686,883.222068271,949.880337574,1105.416... | |
2f438e27c04b5ad0840be5e2c3a99eacafbbc31212afeff995a2a94f31969b0d | sebastien-clara/panoplie | cabinetOrangeTangerineBass.dsp | declare name "cabinetOrangeTangerineBass";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 148;
modeFrequencies=(72.2131250787,83.3228366293,122.206827056,161.090817483,188.86509636,227.749086787,355.510769618,438.833606248,505.491875551,577.705... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/cabinetOrangeTangerineBass%7E.mxo/cabinetOrangeTangerineBass.dsp | faust | declare name "cabinetOrangeTangerineBass";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 148;
modeFrequencies=(72.2131250787,83.3228366293,122.206827056,161.090817483,188.86509636,227.749086787,355.510769618,438.833606248,505.491875551,577.705... | |
4b02d7a1bcb0fac958ca35cb1ba5938f94599d4332b351742a28e56e0545415d | sebastien-clara/panoplie | cabinetMarshallGreenTreble.dsp | declare name "cabinetMarshallGreenTreble";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 150;
modeFrequencies=(72.2131250787,122.206827056,161.090817483,177.755384809,227.749086787,333.291346517,472.162740899,583.259856405,633.253558383,716.57... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/cabinetMarshallGreenTreble%7E.mxo/cabinetMarshallGreenTreble.dsp | faust | declare name "cabinetMarshallGreenTreble";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 150;
modeFrequencies=(72.2131250787,122.206827056,161.090817483,177.755384809,227.749086787,333.291346517,472.162740899,583.259856405,633.253558383,716.57... | |
a698b164e3cd44fc0f9eaa3e5bb84f7db937ee020e3d1f99c49af1fc47480031 | sebastien-clara/panoplie | cloudGenerator.dsp | /*********************************************************************
----------------------------------------------------------------------
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as
published by the Free Software Foundation.
<ht... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/synthPoly/faustInstru/cloudgenerator/cloudGenerator%7E.mxo/cloudGenerator.dsp | faust | ********************************************************************
----------------------------------------------------------------------
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as
published by the Free Software Foundation.
<http... |
declare name "Cloud Generator";
declare version "0.01";
declare description "Source : https://github.com/visstup/cloud-generator";
declare nvoices "16";
import("stdfaust.lib");
spread(i,spreadamt) = pow(spreadvox(i),spreadamt)
with {
spreadvox(0) = 1;
spreadvox(1) = 1.25;
spreadvox(2) = 0.8;
spreadvox(3) = 1... |
28a9440c3d287dc71a1374e2b6ecf491c3fb522c40e870bbd30e4027dac4bdac | sebastien-clara/panoplie | cabinetFenderTweedBass.dsp | declare name "cabinetFenderTweedBass";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 180;
modeFrequencies=(27.7742788764,38.883990427,127.761682832,183.310240584,266.633077214,327.736490742,422.169038922,488.827308225,544.375865978,611.0341352... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/cabinetFenderTweedBass%7E.mxo/cabinetFenderTweedBass.dsp | faust | declare name "cabinetFenderTweedBass";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 180;
modeFrequencies=(27.7742788764,38.883990427,127.761682832,183.310240584,266.633077214,327.736490742,422.169038922,488.827308225,544.375865978,611.0341352... | |
dd73d7c60380090c137a6ac68e7a4e83001dae70faaaaa6df186d9561a493860 | sebastien-clara/panoplie | cabinetVoxTopBoostTreble.dsp | declare name "cabinetVoxTopBoostTreble";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 182;
modeFrequencies=(99.9874039552,127.761682832,166.645673259,255.523365663,344.401058068,499.937019776,616.588991057,655.472981484,733.240962338,788.7895... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/cabinetVoxTopBoostTreble%7E.mxo/cabinetVoxTopBoostTreble.dsp | faust | declare name "cabinetVoxTopBoostTreble";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 182;
modeFrequencies=(99.9874039552,127.761682832,166.645673259,255.523365663,344.401058068,499.937019776,616.588991057,655.472981484,733.240962338,788.7895... | |
5ae5f335226e5b8503d181e2fc3f43cee826915cffc1a2d433c08ed858a25030 | sebastien-clara/panoplie | cabinetMarshall1960AVBass.dsp | declare name "cabinetMarshall1960AVBass";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 175;
modeFrequencies=(72.2131250787,122.206827056,161.090817483,183.310240584,222.194231011,338.846202292,477.717596675,583.259856405,627.698702607,711.021... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/cabinetMarshall1960AVBass%7E.mxo/cabinetMarshall1960AVBass.dsp | faust | declare name "cabinetMarshall1960AVBass";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 175;
modeFrequencies=(72.2131250787,122.206827056,161.090817483,183.310240584,222.194231011,338.846202292,477.717596675,583.259856405,627.698702607,711.021... | |
9ba8af3fc4521e292bb4e7dace6c1127f96b9005f0ee5af36707913a4bb3743c | sebastien-clara/panoplie | cabinetRandallExcelBass.dsp | declare name "cabinetRandallExcelBass";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 193;
modeFrequencies=(72.2131250787,127.761682832,166.645673259,183.310240584,233.303942562,333.291346517,472.162740899,566.595289079,633.253558383,711.02153... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/cabinetRandallExcelBass%7E.mxo/cabinetRandallExcelBass.dsp | faust | declare name "cabinetRandallExcelBass";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 193;
modeFrequencies=(72.2131250787,127.761682832,166.645673259,183.310240584,233.303942562,333.291346517,472.162740899,566.595289079,633.253558383,711.02153... | |
96ea26d807a99fb9f92b255c16c2e72abad275d3407a5f2784f2f01a697890da | sebastien-clara/panoplie | cabinetOrangeTangerineTreble.dsp | declare name "cabinetOrangeTangerineTreble";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 208;
modeFrequencies=(72.2131250787,83.3228366293,122.206827056,161.090817483,227.749086787,249.968509888,355.510769618,438.833606248,499.937019776,577.... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/cabinetOrangeTangerineTreble%7E.mxo/cabinetOrangeTangerineTreble.dsp | faust | declare name "cabinetOrangeTangerineTreble";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 208;
modeFrequencies=(72.2131250787,83.3228366293,122.206827056,161.090817483,227.749086787,249.968509888,355.510769618,438.833606248,499.937019776,577.... | |
3b9334586ffa83ed9b22a6f75b900a274ededf4af9ccebf40ce46906cf2765df | sebastien-clara/panoplie | cabinetVoxTopBoostBass.dsp | declare name "cabinetVoxTopBoostBass";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 230;
modeFrequencies=(99.9874039552,127.761682832,166.645673259,183.310240584,255.523365663,288.852500315,344.401058068,499.937019776,655.472981484,727.686106... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/cabinetVoxTopBoostBass%7E.mxo/cabinetVoxTopBoostBass.dsp | faust | declare name "cabinetVoxTopBoostBass";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 230;
modeFrequencies=(99.9874039552,127.761682832,166.645673259,183.310240584,255.523365663,288.852500315,344.401058068,499.937019776,655.472981484,727.686106... | |
711722287bfb4cfd8a60168998e2d9714300edfcc828b1e42793b8769d60175f | sebastien-clara/panoplie | cabinetMarshall1960AVTreble.dsp | declare name "cabinetMarshall1960AVTreble";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 260;
modeFrequencies=(72.2131250787,122.206827056,161.090817483,183.310240584,227.749086787,338.846202292,477.717596675,577.70500063,627.698702607,716.57... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/cabinetMarshall1960AVTreble%7E.mxo/cabinetMarshall1960AVTreble.dsp | faust | declare name "cabinetMarshall1960AVTreble";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 260;
modeFrequencies=(72.2131250787,122.206827056,161.090817483,183.310240584,227.749086787,338.846202292,477.717596675,577.70500063,627.698702607,716.57... | |
9c1ffc7403d5c8ed95cfcfb1886b76ff68a1e06df1e826b7cacfd30724f44ecf | sebastien-clara/panoplie | cabinetFenderBlackfaceTreble.dsp | declare name "cabinetFenderBlackfaceTreble";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 264;
modeFrequencies=(105.54225973,133.316538607,177.755384809,238.858798337,272.187932989,305.517067641,333.291346517,433.278750472,605.479279506,716.5... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/cabinetFenderBlackfaceTreble%7E.mxo/cabinetFenderBlackfaceTreble.dsp | faust | declare name "cabinetFenderBlackfaceTreble";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 264;
modeFrequencies=(105.54225973,133.316538607,177.755384809,238.858798337,272.187932989,305.517067641,333.291346517,433.278750472,605.479279506,716.5... | |
985066018560df1f25c1b165d53f51a17b0eb64f5fe2caeaaab5131ddf016776 | sebastien-clara/panoplie | cabinetRandallExcelTreble.dsp | declare name "cabinetRandallExcelTreble";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 295;
modeFrequencies=(72.2131250787,122.206827056,161.090817483,183.310240584,227.749086787,333.291346517,472.162740899,566.595289079,633.253558383,716.576... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/cabinetRandallExcelTreble%7E.mxo/cabinetRandallExcelTreble.dsp | faust | declare name "cabinetRandallExcelTreble";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 295;
modeFrequencies=(72.2131250787,122.206827056,161.090817483,183.310240584,227.749086787,333.291346517,472.162740899,566.595289079,633.253558383,716.576... | |
6c7fdd05c72c988f452919f3bf5425e949cad2cdef64b6816cc6f8bb243bba47 | sebastien-clara/panoplie | cabinetFenderBlackfaceBass.dsp | declare name "cabinetFenderBlackfaceBass";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 339;
modeFrequencies=(105.54225973,133.316538607,177.755384809,238.858798337,272.187932989,305.517067641,333.291346517,444.388462023,605.479279506,649.918... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/audioFX/ampli/cabinetFenderBlackfaceBass%7E.mxo/cabinetFenderBlackfaceBass.dsp | faust | declare name "cabinetFenderBlackfaceBass";
declare description "Generated by tools/physicalModeling/ir2dsp.py";
import("stdfaust.lib");
pi = 4*atan(1.0);
nModes = 339;
modeFrequencies=(105.54225973,133.316538607,177.755384809,238.858798337,272.187932989,305.517067641,333.291346517,444.388462023,605.479279506,649.918... | |
830da5295ccb20b1bfe43b90868de391becbf18d93a41dc55c75e0c76cc3733c | sebastien-clara/panoplie | wavesElectric.dsp | //--------------------`wavesElectric`-------------------
// Synthesizer
//
//
// #### Compilation example
// * faust2jaqt -midi wavesElectric.dsp
///////////////////////////////////////////////////////////////
declare name "wavesElectric";
declare author "Sébastien Clara";
declare nvoices "16";
import("stdfaust.li... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/synthPoly/faustInstru/wavesElectric/wavesElectric%7E.mxo/wavesElectric.dsp | faust | --------------------`wavesElectric`-------------------
Synthesizer
#### Compilation example
* faust2jaqt -midi wavesElectric.dsp
/////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////
GUI parameters
//////////////////////////////////////////////... |
declare name "wavesElectric";
declare author "Sébastien Clara";
declare nvoices "16";
import("stdfaust.lib");
midigate = button ("[1]gate");
midifreq = vslider("[2]freq[unit:Hz] [style:knob]", 440, 20, 5000, 1) : portamento;
midigain = vslider("[9]gain [style:knob]", 1, 0, 3, 0.01);
bend = vslider("[9]bend [st... |
ce6066413056d4cf5a8d06bfc88c4e8ab0a3a5b435fa118e3576cfd7557426c0 | sebastien-clara/panoplie | wavesElectricMono.dsp | //--------------------`wavesElectric`-------------------
// Synthesizer
//
//
// #### Compilation example
// * faust2jaqt -midi wavesElectric.dsp
///////////////////////////////////////////////////////////////
declare name "wavesElectric";
declare author "Sébastien Clara";
import("stdfaust.lib");
////////////////... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/synthMono/faustInstruMono/wavesElectricMono/wavesElectricMono%7E.mxo/wavesElectricMono.dsp | faust | --------------------`wavesElectric`-------------------
Synthesizer
#### Compilation example
* faust2jaqt -midi wavesElectric.dsp
/////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////
GUI parameters
//////////////////////////////////////////////... |
declare name "wavesElectric";
declare author "Sébastien Clara";
import("stdfaust.lib");
midigate = button ("[1]gate");
midifreq = vslider("[2]freq[unit:Hz] [style:knob]", 440, 20, 4000, 1) : portamento;
midigain = vslider("[9]gain [style:knob]", 1, 0, 3, 0.01) : si.smoo;
bend = vslider("[9]bend [style:knob] [hi... |
fd55fca3165f9a9ed5a7631bf1654d4cd0047615d65909229be824f78a9f1298 | sebastien-clara/panoplie | wavesMoog.dsp | //--------------------`wavesMoog`-------------------
// Synthesizer
//
//
// #### Compilation example
// * faust2jaqt -midi wavesMoog.dsp
///////////////////////////////////////////////////////////////
declare name "wavesMoog";
declare author "Sébastien Clara";
declare nvoices "16";
import("stdfaust.lib");
/////... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/synthPoly/faustInstru/wavesMoog/wavesMoog%7E.mxo/wavesMoog.dsp | faust | --------------------`wavesMoog`-------------------
Synthesizer
#### Compilation example
* faust2jaqt -midi wavesMoog.dsp
/////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////
GUI parameters
//////////////////////////////////////////////////////... |
declare name "wavesMoog";
declare author "Sébastien Clara";
declare nvoices "16";
import("stdfaust.lib");
midigate = button ("[1]gate");
midifreq = vslider("[2]freq[unit:Hz] [style:knob]", 440, 20, 5000, 1) : portamento;
midigain = vslider("[9]gain [style:knob]", 1, 0, 3, 0.01);
bend = vslider("[9]bend [style:... |
bdcda80b8d260f8a38105f36e07b09b18ac30f71a386711ce5d002f81398bb1e | sebastien-clara/panoplie | wavesMoogMono.dsp | //--------------------`wavesMoog`-------------------
// Synthesizer
//
//
// #### Compilation example
// * faust2jaqt -midi wavesMoog.dsp
///////////////////////////////////////////////////////////////
declare name "wavesMoog";
declare author "Sébastien Clara";
import("stdfaust.lib");
////////////////////////////... | https://raw.githubusercontent.com/sebastien-clara/panoplie/bfb061ab2874a404826a2d62a5359dcd92264f30/synthMono/faustInstruMono/wavesMoogMono/wavesMoogMono%7E.mxo/wavesMoogMono.dsp | faust | --------------------`wavesMoog`-------------------
Synthesizer
#### Compilation example
* faust2jaqt -midi wavesMoog.dsp
/////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////
GUI parameters
//////////////////////////////////////////////////////... |
declare name "wavesMoog";
declare author "Sébastien Clara";
import("stdfaust.lib");
midigate = button ("[1]gate");
midifreq = vslider("[2]freq[unit:Hz] [style:knob]", 440, 20, 4000, 1) : portamento;
midigain = vslider("[9]gain [style:knob]", 1, 0, 3, 0.01) : si.smoo;
bend = vslider("[9]bend [style:knob] [hide:1... |
10c32be6e11bd4e8b9bd5832c218c672cfaaeba3aee1993cafc51d98b3589b14 | monome/norns | EqSection.dsp | declare name "EqSection";
import("stdfaust.lib");
import("effect.lib");
import("filter.lib");
par_eq = _,_ : par(i, 2, fi.low_shelf(ll,fl) : fi.peak_eq(lp,fp,bp) : fi.high_shelf(lh,fh)) : _,_
with{
eq_group(x) = hgroup("[0] parametric EQ",x);
ls_group(x) = eq_group(vgroup("[1] low shelf", x));
ll = ls_group(h... | https://raw.githubusercontent.com/monome/norns/e8ddf657830f8db99465965d45ade11e9dbbc831/crone/dsp/EqSection.dsp | faust | declare name "EqSection";
import("stdfaust.lib");
import("effect.lib");
import("filter.lib");
par_eq = _,_ : par(i, 2, fi.low_shelf(ll,fl) : fi.peak_eq(lp,fp,bp) : fi.high_shelf(lh,fh)) : _,_
with{
eq_group(x) = hgroup("[0] parametric EQ",x);
ls_group(x) = eq_group(vgroup("[1] low shelf", x));
ll = ls_group(h... | |
4687c54ab4c176348c39e7263e9b3ebbd0c9dbb59d5fa77cedca51d9ea98c91d | lukas303/stream-splice | stream_splice_v1_0.dsp | declare filename "stream-splice";
declare version "1.0";
declare author "Lukas Hartmann & Luca Hilbrich";
declare options "[osc:on]";
declare options "[midi:on]";
import("stdfaust.lib");
// USER INTERFACE //
volumeSlider = vslider("h:/h:[0]Main/ [0]Input Gain [midi:ctrl 0]", 0.5, 0, 1, 0.01); // volume slider
dry... | https://raw.githubusercontent.com/lukas303/stream-splice/225a75101751838c50ea2da6c8e4c155cc6d5097/stream_splice_v1_0.dsp | faust | USER INTERFACE //
volume slider
pitch control (downsampling)
pitch control (downsampling)
number of grains
grain size in samples
delay length in samples
position spread of grains
alpha window selector
beta window selector
CODE //
samplerate in samples per second
maximum numbers of grains
volume slider
si... | declare filename "stream-splice";
declare version "1.0";
declare author "Lukas Hartmann & Luca Hilbrich";
declare options "[osc:on]";
declare options "[midi:on]";
import("stdfaust.lib");
dry_wetMain = vslider("h:/h:[0]Main/ [1]Dry/Wet [midi:ctrl 1]", 1.0, 0, 1, 0.001);
windowSliderA = vslider("h:/h:[1]Granulator... |
6921b201907407881295c1adec8f4a76bb6279b5e85522764fadbe728fa15249 | antisvin/MyPatches | Samples.dsp | import("stdfaust.lib");
// Simple syntax for loading a single file
//wav1 = soundfile("test[url:test.wav]",2);
// Full syntax for multiple files
//wav1 = soundfile("test[url:{'test1.wav';'test2.wav'}]",2);
// We support both!
wav1 = soundfile("Percussion[url:{'KICK.wav';'HAT.wav'}]", 1);
// Percussion samples... | https://raw.githubusercontent.com/antisvin/MyPatches/89a3df2464b68d4996d9b159ff105e8c9fc9f762/Faust/Samples/Samples.dsp | faust | Simple syntax for loading a single file
wav1 = soundfile("test[url:test.wav]",2);
Full syntax for multiple files
wav1 = soundfile("test[url:{'test1.wav';'test2.wav'}]",2);
We support both!
Percussion samples from KastleDrum are LoFi beyond ridiculous
Wavetable is made in WaveEdit, uses reasonable bitdepth/SR
#_64... | import("stdfaust.lib");
wav1 = soundfile("Percussion[url:{'KICK.wav';'HAT.wav'}]", 1);
kick_sound = so.sound(wav1, 0);
hat_sound = so.sound(wav1, 1);
notes = (36, 40, 43, 47, 48, 47, 43, 40);
notes_per_bar = 4;
total_notes = 8;
base_freq = 440.0;
gain = 0.4;
process = kick , hat :> _, _
with {
tem... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.