_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 |
|---|---|---|---|---|---|---|---|
646c4a929abfbbdf34e1e19d55ad66fdbb66e503448998de33b7c7801f1d9a50 | RuolunWeng/ruolunweng.github.io | STunedBar3.dsp | declare name "Three Rack Tuned Bars";
declare author "ER";//From "Tuned Bar" by Romain Michon (rmichon@ccrma.stanford.edu);
/* =========== DESCRIPTION =============
- Three rack tuned bars
- Head = Silence/Resonance
- Tilt = High frequencies
- Front = High + Medium frequencies
- Bottom = High + Medium + Low frequen... | https://raw.githubusercontent.com/RuolunWeng/ruolunweng.github.io/035564bb7e36eb4e810ca80077ffa8a9d3e5130b/faustplayground/faust-modules/generators/STunedBar3.dsp | faust | From "Tuned Bar" by Romain Michon (rmichon@ccrma.stanford.edu);
=========== DESCRIPTION =============
- Three rack tuned bars
- Head = Silence/Resonance
- Tilt = High frequencies
- Front = High + Medium frequencies
- Bottom = High + Medium + Low frequencies
==================== INSTRUMENT =======================
n... | declare name "Three Rack Tuned Bars";
import("stdfaust.lib");
instrument = library("instruments.lib");
process = vgroup("tunedBars",hgroup("[1]",par(i, 3, onerack(i,i,i))):>_);
onerack(d,n,e) = hgroup("bar %n", par(i, 5, tunedBar(d,i,e)));
tunedBar(d,n,e) =
((select-1)*-1) <:
par(i,nModes,(resonance(i,freqq... |
44c1e73f703349ecd1447528aeafa1a6e3f3dc96d87c2330ceaf66941c4b85db | RuolunWeng/ruolunweng.github.io | SCMajTunedBars.dsp | declare name "C Major Tuned Bars";
declare author "ER";//From "Tuned Bar" by Romain Michon (rmichon@ccrma.stanford.edu);
import("stdfaust.lib");
instrument = library("instruments.lib");
/* =============== DESCRIPTION ================= :
- C Major tuned bars
- Left = Low frequencies + slow rhythm/Silence
- Right = Hi... | https://raw.githubusercontent.com/RuolunWeng/ruolunweng.github.io/035564bb7e36eb4e810ca80077ffa8a9d3e5130b/faustplayground/faust-modules/generators/SCMajTunedBars.dsp | faust | From "Tuned Bar" by Romain Michon (rmichon@ccrma.stanford.edu);
=============== DESCRIPTION ================= :
- C Major tuned bars
- Left = Low frequencies + slow rhythm/Silence
- Right = High frequencies + fast rhythm
==================== INSTRUMENT =======================
nModes resonances with nModes feedbacks... | declare name "C Major Tuned Bars";
import("stdfaust.lib");
instrument = library("instruments.lib");
process = par(i, N, tunedBar(i)):>_;
tunedBar(n) =
((select-1)*-1) <:
par(i,nModes,(resonance(i,freq(n),gate(n))~_)) :> + :
*(4);
N = 24;
gain = 0.8;
gate(n) = position(n) : upfront;
hand = hslider("[1]Inst... |
6905e6c0215e45affb3e09a30164c70f591d3392ffd1d68587862f4c96a55153 | RuolunWeng/ruolunweng.github.io | SChromaticTunedBars.dsp | declare name "Chromatic Tuned Bars";
declare author "ER";//From "Tuned Bar" by Romain Michon (rmichon@ccrma.stanford.edu);
import("stdfaust.lib");
instrument = library("instruments.lib");
/* =============== DESCRIPTION ================= :
- Chromatic tuned bars
- Left = Low frequencies + slow rhythm/Silence
- Right ... | https://raw.githubusercontent.com/RuolunWeng/ruolunweng.github.io/035564bb7e36eb4e810ca80077ffa8a9d3e5130b/faustplayground/faust-modules/generators/SChromaticTunedBars.dsp | faust | From "Tuned Bar" by Romain Michon (rmichon@ccrma.stanford.edu);
=============== DESCRIPTION ================= :
- Chromatic tuned bars
- Left = Low frequencies + slow rhythm/Silence
- Right = High frequencies + fast rhythm
==================== INSTRUMENT =======================
nModes resonances with nModes feedbac... | declare name "Chromatic Tuned Bars";
import("stdfaust.lib");
instrument = library("instruments.lib");
process = par(i, N, tunedBar(i)):> fi.lowpass(1,5000);
tunedBar(n) =
((select-1)*-1) <:
par(i,nModes,(resonance(i,freq(n),gate(n))~_)):> + :
*(4);
N = 24;
gain = 0.8;
gate(n) = position(n) : upfront;
ha... |
e4ddabc6cbab58e12149def6d65e05f0bb20b7fba0f4064d9b85815337d72e58 | RuolunWeng/ruolunweng.github.io | SPentatonicFlute.dsp | declare name "Pentatonic Flute";
declare description "Nonlinear WaveGuide Flute";
declare author "ER";// Adapted from "Flute" by Romain Michon (rmichon@ccrma.stanford.edu);
/* =============== DESCRIPTION ================= :
- Pentatonic flute
- Rocking = playing all notes from low to high frequencies
- Left = Silence... | https://raw.githubusercontent.com/RuolunWeng/ruolunweng.github.io/035564bb7e36eb4e810ca80077ffa8a9d3e5130b/faustplayground/faust-modules/generators/SPentatonicFlute.dsp | faust | Adapted from "Flute" by Romain Michon (rmichon@ccrma.stanford.edu);
=============== DESCRIPTION ================= :
- Pentatonic flute
- Rocking = playing all notes from low to high frequencies
- Left = Silence/Slow rhythm
- Right = Fast rhythm
- Front = long notes
- Back = short notes
==================== INSTRUM... | declare name "Pentatonic Flute";
declare description "Nonlinear WaveGuide Flute";
import("stdfaust.lib");
instrument = library("instruments.lib");
flute(n) = (_ <: (flow(trigger(n)) + *(feedBack1) : embouchureDelay(freq(n)): poly) + *(feedBack2) : reflexionFilter)~(boreDelay(freq(n))) : *(env2(trigger(n)))*gain:_;
... |
7cd40b90b8d9ab0c71fde62971afd9cd25e0c41a1d12548aa9795cf68d8421ca | RuolunWeng/ruolunweng.github.io | SPentatonicBlowBottle.dsp | declare name "Pentatonic BlowBottle";
declare author "ER";//Adapted from Blow Bottle by Romain Michon (rmichon@ccrma.stanford.edu);
/* =========== DESCRITPION =============
- Pentatonic Blow Bottles
- Left = Low frequencies/ Silence/ Slow rhythm
- Right = High frequencies/ Fast rhythm
- Front = Long notes
- Back = Sh... | https://raw.githubusercontent.com/RuolunWeng/ruolunweng.github.io/035564bb7e36eb4e810ca80077ffa8a9d3e5130b/faustplayground/faust-modules/generators/SPentatonicBlowBottle.dsp | faust | Adapted from Blow Bottle by Romain Michon (rmichon@ccrma.stanford.edu);
=========== DESCRITPION =============
- Pentatonic Blow Bottles
- Left = Low frequencies/ Silence/ Slow rhythm
- Right = High frequencies/ Fast rhythm
- Front = Long notes
- Back = Short notes
==================== INSTRUMENT ===================... | declare name "Pentatonic BlowBottle";
import("stdfaust.lib");
instrument = library("instruments.lib");
process = vgroup("Blowhistle Bottles", par(i, N, blow(i)) :>*(2));
blow(n)=
(-(breathPressure(trigger(n))) <:
((+(1))*randPressure((trigger(n))) : +(breathPressure(trigger(n)))) - *(instrument.jetTable),_ : b... |
0699acbdd4f7c0ab842a146fe509689c158a7d084001aea8dc0cdee1d12a2e53 | RuolunWeng/ruolunweng.github.io | Modulations.dsp | declare name "Modulations";
declare author "ER";
import("stdfaust.lib");
instrument = library("instruments.lib");
/* =========== DESCRIPTION ==============
- Non Linear Filter Modulators applied to a sinewave
- Head = Silence/Revereration/Higher Frequencies
- Bottom = Modulation n°3 = FM/ Lower Frequencies
- Rockin... | https://raw.githubusercontent.com/RuolunWeng/ruolunweng.github.io/035564bb7e36eb4e810ca80077ffa8a9d3e5130b/faustplayground/faust-modules/combined/Modulations.dsp | faust | =========== DESCRIPTION ==============
- Non Linear Filter Modulators applied to a sinewave
- Head = Silence/Revereration/Higher Frequencies
- Bottom = Modulation n°3 = FM/ Lower Frequencies
- Rocking = Modulating Frequency (low to high)
- Front = Modulation n°2
- Left = Modulation n°0 & n°1
- Upward = swing from hea... | declare name "Modulations";
declare author "ER";
import("stdfaust.lib");
instrument = library("instruments.lib");
process = vgroup("Modulations",oscil <: seq(i, 3, NLFM(i)), NLFM3 :> fi.lowpass(1,2000) *(0.6) *(vol) <: instrReverbMod:*(vool),*(vool));
NLFM(n) = _ : instrument.nonLinearModulator((nonlinearity:si.s... |
4263ce312c201946d4d65122df5a46cfc14868be3e558aa6eff2280681c43339 | RuolunWeng/ruolunweng.github.io | SPentatonicDryHarp.dsp | declare name "PentatonicDryHarp";
declare author "ER";//Adapted from Harpe by Yann Orlarey;
//Modification Grame July 2015
/* =============== DESCRIPTION ================= :
- Pentatonic dry harp
- Left = Lower frequencies/Silence when still
- Front = Resonance (longer notes)
- Back = No Resonance (dry notes)
- R... | https://raw.githubusercontent.com/RuolunWeng/ruolunweng.github.io/035564bb7e36eb4e810ca80077ffa8a9d3e5130b/faustplayground/faust-modules/generators/SPentatonicDryHarp.dsp | faust | Adapted from Harpe by Yann Orlarey;
Modification Grame July 2015
=============== DESCRIPTION ================= :
- Pentatonic dry harp
- Left = Lower frequencies/Silence when still
- Front = Resonance (longer notes)
- Back = No Resonance (dry notes)
- Right = Higher frequencies/Fast rhythm
- Rocking = plucking all st... | declare name "PentatonicDryHarp";
import("stdfaust.lib");
instrument = library("instruments.lib");
process = hgroup("harp", h : harpe(C,N,K) :> *(l),*(l))
with {
h = hslider("[1]Instrument Hand[acc:0 1 -10 0 10]", 11, 0, N, 1) : int: ba.automat(bps, 15, 0.0)
with {
bps = hslider("h:[2]Par... |
4fa3eb339e3d2c60ab0de41ace8695efc4ace6bff2d67d86145be289ed8d4e05 | RuolunWeng/ruolunweng.github.io | SCMajFlute.dsp | declare name "C Major Flute";
declare author "ER";// Adapted from "Nonlinear WaveGuide Flute" by Romain Michon (rmichon@ccrma.stanford.edu)";
import("stdfaust.lib");
instrument=library("instruments.lib");
/* =============== DESCRIPTION ================= :
- C Major flute
- Rocking = playing all notes from low to hi... | https://raw.githubusercontent.com/RuolunWeng/ruolunweng.github.io/035564bb7e36eb4e810ca80077ffa8a9d3e5130b/faustplayground/faust-modules/generators/SCMajFlute.dsp | faust | Adapted from "Nonlinear WaveGuide Flute" by Romain Michon (rmichon@ccrma.stanford.edu)";
=============== DESCRIPTION ================= :
- C Major flute
- Rocking = playing all notes from low to high frequencies
- Left = Silence/Slow rhythm
- Right = Fast rhythm
- Front = long notes
- Back = short notes
=========... | declare name "C Major Flute";
import("stdfaust.lib");
instrument=library("instruments.lib");
flute(n) = (_ <: (flow(trigger(n)) + *(feedBack1) : embouchureDelay(freq(n)): poly) + *(feedBack2) : reflexionFilter)~(boreDelay(freq(n))) : *(env2(trigger(n)))*gain:_;
process = vgroup("C Maj Flute", par(i, N, flute(i)):>_... |
3c7bb27724dbe54efe71322fbf78006aae29dcd0b5d3e844d80deb58f193bb01 | RuolunWeng/ruolunweng.github.io | STinkle.dsp | declare name "Tinkle";
declare description "Banded Waveguide Modeld Tibetan Bowl";
declare author "Romain Michon";
declare copyright "Romain Michon (rmichon@ccrma.stanford.edu)";
declare version "1.0";
declare licence "STK-4.3"; // Synthesis Tool Kit 4.3 (MIT style license);
declare description "This instrument uses ba... | https://raw.githubusercontent.com/RuolunWeng/ruolunweng.github.io/035564bb7e36eb4e810ca80077ffa8a9d3e5130b/faustplayground/faust-modules/generators/STinkle.dsp | faust | Synthesis Tool Kit 4.3 (MIT style license);
============ DESCRIPTION ==============
- Tinkling bowls
- Rocking = Ringing all bowls from low to high frequencies
==================== INSTRUMENT =======================
nModes resonances with nModes feedbacks for bow table look-up
==================== GUI SPECIFICATI... | declare name "Tinkle";
declare description "Banded Waveguide Modeld Tibetan Bowl";
declare author "Romain Michon";
declare copyright "Romain Michon (rmichon@ccrma.stanford.edu)";
declare version "1.0";
declare description "This instrument uses banded waveguide. For more information, see Essl, G. and Cook, P. Banded Wav... |
f59d1b5b3f9d328e4a2cdbbd23ce10c0c3984753f0089ceb4420fce6077bebb3 | RuolunWeng/ruolunweng.github.io | SCMajBlowBottle.dsp | declare name "C Maj BlowBottle";
declare author "ER";//Adapted from Blow Bottle by Romain Michon (rmichon@ccrma.stanford.edu);
/* =========== DESCRITPION =============
- C Major Blow Bottles
- Left = Low frequencies/ Silence/ Slow rhythm
- Right = High frequencies/ Fast rhythm
- Front = Long notes
- Back = Short note... | https://raw.githubusercontent.com/RuolunWeng/ruolunweng.github.io/035564bb7e36eb4e810ca80077ffa8a9d3e5130b/faustplayground/faust-modules/generators/SCMajBlowBottle.dsp | faust | Adapted from Blow Bottle by Romain Michon (rmichon@ccrma.stanford.edu);
=========== DESCRITPION =============
- C Major Blow Bottles
- Left = Low frequencies/ Silence/ Slow rhythm
- Right = High frequencies/ Fast rhythm
- Front = Long notes
- Back = Short notes
==================== INSTRUMENT ======================... | declare name "C Maj BlowBottle";
import("stdfaust.lib");
instrument = library("instruments.lib");
process = vgroup("Blowhistle Bottles", par(i, N, blow(i)) :>*(2));
blow(n)=
(-(breathPressure(trigger(n))) <:
((+(1))*randPressure((trigger(n))) : +(breathPressure(trigger(n)))) - *(instrument.jetTable),_ : baPaF(n... |
f069ba9b8b45689cee759d2e1ae7af0141aa3099c73f9a4a485ee521adaf1842 | RuolunWeng/ruolunweng.github.io | Kisana.dsp | declare name "Kisana";
declare author "Yann Orlarey";
//Modifications GRAME July 2015
/* ========= DESCRITPION =============
- Kisana : 3-loops string instrument (based on Karplus-Strong)
- Head = Silence
- Tilt = High frequencies
- Front = High + Medium frequencies
- Bottom = High + Medium + Low frequencies
- L... | https://raw.githubusercontent.com/RuolunWeng/ruolunweng.github.io/035564bb7e36eb4e810ca80077ffa8a9d3e5130b/faustplayground/faust-modules/generators/Kisana.dsp | faust | Modifications GRAME July 2015
========= DESCRITPION =============
- Kisana : 3-loops string instrument (based on Karplus-Strong)
- Head = Silence
- Tilt = High frequencies
- Front = High + Medium frequencies
- Bottom = High + Medium + Low frequencies
- Left = Minimum brightness
- Right = Maximum birghtness
- Front =... | declare name "Kisana";
declare author "Yann Orlarey";
import("stdfaust.lib");
process = kisana;
kisana = vgroup("Kisana", harpe(C,11,48), harpe(C,11,60), (harpe(C,11,72) : *(1.5), *(1.5))
:>*(l))
with {
C = hslider("[2]Brightness[acc:0 1 -10 0 10]", 0.2, 0, 1, 0.01) : ba.automat(BPS, CCY, 0.0);
};
... |
54ead1d05a7a380b8c70f3b0fffbf5e04e0eb9653b12c9803c36f945e1328eb1 | RuolunWeng/ruolunweng.github.io | SBrassMulti.dsp | declare name "Multiple Brass";
declare description "WaveGuide Brass instrument from STK";
declare author "ER"; //Adapted from Brass by Romain Michon (rmichon@ccrma.stanford.edu);
import("stdfaust.lib");
instrument=library("instruments.lib");
/* ========= DESCRITPION ===========
- Triple Brass
- Left = Silence
- Othe... | https://raw.githubusercontent.com/RuolunWeng/ruolunweng.github.io/035564bb7e36eb4e810ca80077ffa8a9d3e5130b/faustplayground/faust-modules/generators/SBrassMulti.dsp | faust | Adapted from Brass by Romain Michon (rmichon@ccrma.stanford.edu);
========= DESCRITPION ===========
- Triple Brass
- Left = Silence
- Other positions = interpolating brass voices
==================== INSTRUMENT =======================
==================== GUI SPECIFICATION ================
gate = checkbox(" Play");
... | declare name "Multiple Brass";
declare description "WaveGuide Brass instrument from STK";
import("stdfaust.lib");
instrument=library("instruments.lib");
process = vgroup("Brass Instrument", par(i, 3, brass(i)) :>_);
brass(n) = (borePressure <: deltaPressure(pressure(n)),_ :
(lipFilter(freq(n)) <: *(mouthPressur... |
106bf3774e84d93677d29f0e7d7478b7929a8e888810ebd95450262fee550c39 | RuolunWeng/ruolunweng.github.io | AtonalSoftHarp.dsp | declare name "Atonal Soft Harp";
declare author "ER"; //Adapted from NLFeks by Julius Smith and Romain Michon;
import("stdfaust.lib");
instrument = library("instruments.lib");
/* =============== DESCRIPTION ======================== :
- Soft Atonal Harp
- Head = High frequencies + Reverberation
- Bottom = Low freque... | https://raw.githubusercontent.com/RuolunWeng/ruolunweng.github.io/035564bb7e36eb4e810ca80077ffa8a9d3e5130b/faustplayground/faust-modules/combined/AtonalSoftHarp.dsp | faust | Adapted from NLFeks by Julius Smith and Romain Michon;
=============== DESCRIPTION ======================== :
- Soft Atonal Harp
- Head = High frequencies + Reverberation
- Bottom = Low frequencies / Silence
- Swing + Right = Plucking all the strings one by one
- Left = Slow rhythm / Silence
- Right = Fast rhythm
- F... | declare name "Atonal Soft Harp";
import("stdfaust.lib");
instrument = library("instruments.lib");
process = par(i, N, NFLeks(i)):>_<: instrReverbHarp;
NFLeks(n) = filtered_excitation(n+1,P(freq(n)),freq(n)) : stringloop(freq(n));
N = 20;
with{
bps = hslider("h:[1]/Speed[style:knob][acc:0 1 -10 0 10]", 480, 180,... |
b792313d8ad33eca0e952330494464f83c708f42206655914474d4a510e56948 | RuolunWeng/ruolunweng.github.io | PentatonicSoftHarp.dsp | declare name "Pentatonic Soft Harp";
declare author "ER";//Adapted from "Nonlinear EKS" by Julius Smith and Romain Michon;
import("stdfaust.lib");
instrument = library("instruments.lib");
/* =============== DESCRIPTION =================
- Reverberated pentatonic soft harp
- Left = Lower frequencies/Silence when s... | https://raw.githubusercontent.com/RuolunWeng/ruolunweng.github.io/035564bb7e36eb4e810ca80077ffa8a9d3e5130b/faustplayground/faust-modules/combined/PentatonicSoftHarp.dsp | faust | Adapted from "Nonlinear EKS" by Julius Smith and Romain Michon;
=============== DESCRIPTION =================
- Reverberated pentatonic soft harp
- Left = Lower frequencies/Silence when still
- Front = Resonance
- Back = No resonance
- Right = Higher frequencies/Fast rhythm
- Head = Reverberation
- Rocking = pluckin... | declare name "Pentatonic Soft Harp";
import("stdfaust.lib");
instrument = library("instruments.lib");
process = par(i, N, NFLeks(i)):>_<: instrReverbHarp;
NFLeks(n) = filtered_excitation(n,P(freq(n)),freq(n)) : stringloop(freq(n));
N = 20;
with{
bps = hslider("[2]Speed[style:knob][acc:0 1 -10 0 10]", 480, 180,... |
0b441e02bc7634ea175b0010ffca7c78508a19f1849d400e7c018766eddb9298 | RuolunWeng/ruolunweng.github.io | Brass.dsp | declare name "Brass";
declare description "WaveGuide Brass instrument from STK";
declare author "Romain Michon (rmichon@ccrma.stanford.edu)";
declare copyright "Romain Michon";
declare version "1.0";
declare licence "STK-4.3"; // Synthesis Tool Kit 4.3 (MIT style license);
declare description "A simple brass instrument... | https://raw.githubusercontent.com/RuolunWeng/ruolunweng.github.io/035564bb7e36eb4e810ca80077ffa8a9d3e5130b/faustplayground/faust-modules/combined/Brass.dsp | faust | Synthesis Tool Kit 4.3 (MIT style license);
Modification GRAME July 2015
=============== DESCRIPTION ================= :
- Brass instrument
- Head = Reverb/Silence
- Upward = Higher frequency
- Downward = Lower frequency
==================== INSTRUMENT =======================
==================== GUI SPECIFICATIO... | declare name "Brass";
declare description "WaveGuide Brass instrument from STK";
declare author "Romain Michon (rmichon@ccrma.stanford.edu)";
declare copyright "Romain Michon";
declare version "1.0";
declare description "A simple brass instrument waveguide model, a la Cook (TBone, HosePlayer).";
declare reference "http... |
fed7c24adfaa6f55ac2097fe4d68ebbea8fd1da7fa9ba73e7c027f5b4070eeaf | RuolunWeng/ruolunweng.github.io | SBlowhistleBottle.dsp | declare name "Blowhistle Bottle";
declare author "ER"; //From "Blow bottle" by Romain Michon;
declare version "1.0";
declare licence "STK-4.3"; // Synthesis Tool Kit 4.3 (MIT style license);
declare description "This object implements a helmholtz resonator (biquad filter) with a polynomial jet excitation (a la Cook).";... | https://raw.githubusercontent.com/RuolunWeng/ruolunweng.github.io/035564bb7e36eb4e810ca80077ffa8a9d3e5130b/faustplayground/faust-modules/generators/SBlowhistleBottle.dsp | faust | From "Blow bottle" by Romain Michon;
Synthesis Tool Kit 4.3 (MIT style license);
=============== DESCRIPTION ================= :
- Blow bottles with whistling echo.
- Left : silence/dying echo.
- Front : single blow bottle.
- Back : maximum whistling echo
- Bottom : bottle + whistling echo
- Rocking : changes tone ... | declare name "Blowhistle Bottle";
declare version "1.0";
declare description "This object implements a helmholtz resonator (biquad filter) with a polynomial jet excitation (a la Cook).";
import("stdfaust.lib");
instrument = library("instruments.lib");
process = vgroup("Blowhistle Bottles", par(i, N, blow(i)) :>_);
... |
66d47fb2e29d871081ac07abc88b25a1f83cbb44ed4277af3fb822eb73d406dd | RuolunWeng/ruolunweng.github.io | STunedBar6.dsp | declare name "Tuned Bar";
declare description "Nonlinear Banded Waveguide Models";
declare name "Six Rack Tuned Bars";
declare author "ER";//From "Tuned Bar" by Romain Michon (rmichon@ccrma.stanford.edu);
/* =========== DESCRIPTION =============
- Six rack tuned bars
- Head = Silence/Resonance
- Tilt = High frequenc... | https://raw.githubusercontent.com/RuolunWeng/ruolunweng.github.io/035564bb7e36eb4e810ca80077ffa8a9d3e5130b/faustplayground/faust-modules/generators/STunedBar6.dsp | faust | From "Tuned Bar" by Romain Michon (rmichon@ccrma.stanford.edu);
=========== DESCRIPTION =============
- Six rack tuned bars
- Head = Silence/Resonance
- Tilt = High frequencies
- Front = High + Medium frequencies
- Bottom = High + Medium + Low frequencies
==================== INSTRUMENT =======================
nMo... | declare name "Tuned Bar";
declare description "Nonlinear Banded Waveguide Models";
declare name "Six Rack Tuned Bars";
import("stdfaust.lib");
instrument = library("instruments.lib");
process = vgroup("tunedBars",hgroup("[1]",par(i, 6, onerack(i,i,i))):>_);
onerack(h,n,e) = hgroup("Bar %n", par(i, 5, tunedBar(h,... |
7576ff9aad06a197efb47bf379d565565bc1ac5cbf40de51455f793f3a2655bd | RuolunWeng/ruolunweng.github.io | PentatonicDryHarp.dsp | declare name "PentatonicDryHarp";
declare author "ER";//Adapted from Harpe by Yann Orlarey;
//Modification Grame July 2015
/* =============== DESCRIPTION ================= :
- Reverberated pentatonic dry harp
- Left = Lower frequencies/Silence when still
- Front = Resonance (longer notes)
- Back = No Resonance (d... | https://raw.githubusercontent.com/RuolunWeng/ruolunweng.github.io/035564bb7e36eb4e810ca80077ffa8a9d3e5130b/faustplayground/faust-modules/combined/PentatonicDryHarp.dsp | faust | Adapted from Harpe by Yann Orlarey;
Modification Grame July 2015
=============== DESCRIPTION ================= :
- Reverberated pentatonic dry harp
- Left = Lower frequencies/Silence when still
- Front = Resonance (longer notes)
- Back = No Resonance (dry notes)
- Right = Higher frequencies/Fast rhythm
- Head = Rever... | declare name "PentatonicDryHarp";
import("stdfaust.lib");
instrument = library("instruments.lib");
process = vgroup("Harp", h : harpe(C,N,K) :> instrReverbHarp : *(l),*(l))
with {
h = hslider("[1]Instrument Hand[acc:0 1 -10 0 10]", 11, 0, N, 1) : int: ba.automat(bps, 15, 0.0)
with{
bps = hslider("h:... |
cd40a914d5824b3622adbf6ed3f3f815cc55c07a623227bef88abd6ffe3ce053 | RuolunWeng/ruolunweng.github.io | CMajSoftHarp.dsp | declare name "C Major Soft Harp";
declare author "ER";//Adapted from Nonlinear EKS by Julius Smith and Romain Michon;
declare reference "http://ccrma.stanford.edu/~jos/pasp/vegf.html";
import("stdfaust.lib");
instrument = library("instruments.lib");
/* =============== DESCRIPTION ================= :
- Reverberated ... | https://raw.githubusercontent.com/RuolunWeng/ruolunweng.github.io/035564bb7e36eb4e810ca80077ffa8a9d3e5130b/faustplayground/faust-modules/combined/CMajSoftHarp.dsp | faust | Adapted from Nonlinear EKS by Julius Smith and Romain Michon;
=============== DESCRIPTION ================= :
- Reverberated C Major soft harp
- Left = Lower frequencies/Silence when still
- Front = Resonance
- Back = No resonance
- Right = Higher frequencies/Fast rhythm
- Head = Reverberation
- Rocking = plucking al... | declare name "C Major Soft Harp";
declare reference "http://ccrma.stanford.edu/~jos/pasp/vegf.html";
import("stdfaust.lib");
instrument = library("instruments.lib");
process = vgroup("Soft Harp - C Major",par(i, N, NFLeks(i)):>_<: instrReverbHarp);
NFLeks(n) = filtered_excitation(n,P(freq(n)),freq(n)) : stringloo... |
e2000a420ebf5da41ac3639f768eea4b399e80c0f970dab91b4033cd223c6dfc | RuolunWeng/ruolunweng.github.io | SCMajDryHarp.dsp | declare name "CMajDryHarp";
declare author "ER";//Adapted from Harpe by Yann Orlarey;
//Modification Grame July 2015
import("stdfaust.lib");
/* =============== DESCRIPTION ================= :
- C Major dry harp
- Left = Lower frequencies/Silence when still
- Front = Resonance (longer notes)
- Back = No Resonance... | https://raw.githubusercontent.com/RuolunWeng/ruolunweng.github.io/035564bb7e36eb4e810ca80077ffa8a9d3e5130b/faustplayground/faust-modules/generators/SCMajDryHarp.dsp | faust | Adapted from Harpe by Yann Orlarey;
Modification Grame July 2015
=============== DESCRIPTION ================= :
- C Major dry harp
- Left = Lower frequencies/Silence when still
- Front = Resonance (longer notes)
- Back = No Resonance (dry notes)
- Right = Higher frequencies/Fast rhythm
- Rocking = plucking all strin... | declare name "CMajDryHarp";
import("stdfaust.lib");
process = vgroup("harpe", h : harpe(C,N,K) :> *(l),*(l))
with {
h = hslider("[1]Instrument Hand[1] [acc:0 1 -10 0 10]", 24, 0, N, 1) : int: ba.automat(bps, 15, 0.0)
with{
bps = hslider("h:[2]Parameters/[1]Speed[style:knob][acc:0 1 -12 0 10]", 480, 1... |
ff6b8c9bc10d2bd58e0d7474c936bcaf22a22d7f538bafa4d43872784486dca6 | RuolunWeng/ruolunweng.github.io | Meow.dsp | declare name "Meow";
declare description "WaveGuide Brass instrument from STK";
declare author "ER"; //From Brass by Romain Michon (rmichon@ccrma.stanford.edu);
import("stdfaust.lib");
instrument = library("instruments.lib");
/* =============== DESCRIPTION ================= :
- Triple brass mimicking mewing cats
- ... | https://raw.githubusercontent.com/RuolunWeng/ruolunweng.github.io/035564bb7e36eb4e810ca80077ffa8a9d3e5130b/faustplayground/faust-modules/combined/Meow.dsp | faust | From Brass by Romain Michon (rmichon@ccrma.stanford.edu);
=============== DESCRIPTION ================= :
- Triple brass mimicking mewing cats
- Left = silence.
- Rocking from top Left to Front/Right : one cat mewing
- Rotation = two cats in turn
- Back/Front = Tutti
==================== INSTRUMENT ===============... | declare name "Meow";
declare description "WaveGuide Brass instrument from STK";
import("stdfaust.lib");
instrument = library("instruments.lib");
process = vgroup("MEOW", par(i, 3, brass(i)) :> crybb);
brass(n) = (borePressure <: deltaPressure(pressure(n)),_ :
(lipFilter(freq(n)) <: *(mouthPressure(pressure(n))... |
938917b089803ede9918934114b1f998e087b2815a55ce9494bc9a46f5f51cb8 | RuolunWeng/ruolunweng.github.io | PentatonicFlute.dsp | declare name "Pentatonic Flute";
declare description "Nonlinear WaveGuide Flute";
declare author "ER";// Adapted from "Flute" by Romain Michon (rmichon@ccrma.stanford.edu);
/* =============== DESCRIPTION ================= :
- Pentatonic flute
- Rocking = playing all notes from low to high frequencies
- Left = Silence... | https://raw.githubusercontent.com/RuolunWeng/ruolunweng.github.io/035564bb7e36eb4e810ca80077ffa8a9d3e5130b/faustplayground/faust-modules/combined/PentatonicFlute.dsp | faust | Adapted from "Flute" by Romain Michon (rmichon@ccrma.stanford.edu);
=============== DESCRIPTION ================= :
- Pentatonic flute
- Rocking = playing all notes from low to high frequencies
- Left = Silence/Slow rhythm
- Right = Fast rhythm
- Head = Reverberation
- Front = long notes
- Back = short notes
=====... | declare name "Pentatonic Flute";
declare description "Nonlinear WaveGuide Flute";
import("stdfaust.lib");
instrument = library("instruments.lib");
flute(n) = (_ <: (flow(trigger(n)) + *(feedBack1) : embouchureDelay(freq(n)): poly) + *(feedBack2) : reflexionFilter)~(boreDelay(freq(n))) : *(env2(trigger(n)))*gain:_... |
d30fe32cf8e4cf92e9ffca1e860104243cd08883949470a498ead7647c07d210 | RuolunWeng/ruolunweng.github.io | CMajFlute.dsp | declare name "C Major Flute";
declare author "ER";// Adapted from "Nonlinear WaveGuide Flute" by Romain Michon (rmichon@ccrma.stanford.edu)";
import("stdfaust.lib");
instrument = library("instruments.lib");
/* =============== DESCRIPTION ================= :
- C Major flute
- Rocking = playing all notes from low to... | https://raw.githubusercontent.com/RuolunWeng/ruolunweng.github.io/035564bb7e36eb4e810ca80077ffa8a9d3e5130b/faustplayground/faust-modules/combined/CMajFlute.dsp | faust | Adapted from "Nonlinear WaveGuide Flute" by Romain Michon (rmichon@ccrma.stanford.edu)";
=============== DESCRIPTION ================= :
- C Major flute
- Rocking = playing all notes from low to high frequencies
- Left = Silence/Slow rhythm
- Right = Fast rhythm
- Head = Reverberation
- Front = long notes
- Back = ... | declare name "C Major Flute";
import("stdfaust.lib");
instrument = library("instruments.lib");
flute(n) = (_ <: (flow(trigger(n)) + *(feedBack1) : embouchureDelay(freq(n)): poly) + *(feedBack2) : reflexionFilter)~(boreDelay(freq(n))) : *(env2(trigger(n)))*gain:_;
process = vgroup("C Maj Flute", par(i, N, flute(i)... |
dc9431b93dfaa663d2add99dd2b016d1a627ea5ee7bcf579443d9b454f985dbe | RuolunWeng/ruolunweng.github.io | ChromaticSoftHarp.dsp | declare name "Chromatic Soft Harp";
declare author "ER";//Adapted from Nonlinear EKS by Julius Smith and Romain Michon;
declare reference "http://ccrma.stanford.edu/~jos/pasp/vegf.html";
import("stdfaust.lib");
instrument = library("instruments.lib");
/* =============== DESCRIPTION =================
- Reverberated... | https://raw.githubusercontent.com/RuolunWeng/ruolunweng.github.io/035564bb7e36eb4e810ca80077ffa8a9d3e5130b/faustplayground/faust-modules/combined/ChromaticSoftHarp.dsp | faust | Adapted from Nonlinear EKS by Julius Smith and Romain Michon;
=============== DESCRIPTION =================
- Reverberated soft chromatic harp
- Left = Lower frequencies/Silence when still
- Front = Resonance
- Back = No resonance
- Right = Higher frequencies/Fast rhythm
- Head = Reverberation
- Rocking = plucking a... | declare name "Chromatic Soft Harp";
declare reference "http://ccrma.stanford.edu/~jos/pasp/vegf.html";
import("stdfaust.lib");
instrument = library("instruments.lib");
process = par(i, N, NFLeks(i)):>_<: instrReverbHarp : *(vol),*(vol);
NFLeks(n) = filtered_excitation(n+1,P(freq(n)),freq(n)) : stringloop(freq(n))... |
d5e406ea04e10deb4455bbb03c55f619839061abb64bcdd1adc4d8f1a267690c | RuolunWeng/ruolunweng.github.io | SFlute.dsp | declare name "Flute";
declare description "Nonlinear WaveGuide Flute";
declare author "Romain Michon (rmichon@ccrma.stanford.edu)";
declare copyright "Romain Michon";
declare version "1.0";
declare licence "STK-4.3"; // Synthesis Tool Kit 4.3 (MIT style license);
declare description "A simple flute based on Smith algor... | https://raw.githubusercontent.com/RuolunWeng/ruolunweng.github.io/035564bb7e36eb4e810ca80077ffa8a9d3e5130b/faustplayground/faust-modules/generators/SFlute.dsp | faust | Synthesis Tool Kit 4.3 (MIT style license);
Modifications GRAME July 2015
=========== DESCRITPION ===========
- Flute
- Turn ON flute (0=OFF, 1=ON)
- Head = High frequencies/ Silence
- Bottom = Low frequencies
- Left = No vibrato
- Right = Fast vibrato
- Front = Full sound
- Back = Breathy sound
==================... | declare name "Flute";
declare description "Nonlinear WaveGuide Flute";
declare author "Romain Michon (rmichon@ccrma.stanford.edu)";
declare copyright "Romain Michon";
declare version "1.0";
declare description "A simple flute based on Smith algorythm: https://ccrma.stanford.edu/~jos/pasp/Flutes_Recorders_Pipe_Organs.ht... |
b3cb562dddea4f176164b1a77c9bccc5e157fb1876aea9af320ac43621df9aa0 | RuolunWeng/ruolunweng.github.io | SRandomFlute.dsp | declare name "Random Flute";
declare author "ER";//Adapted from "Nonlinear WaveGuide Flute" by Romain Michon (rmichon@ccrma.stanford.edu);
import("stdfaust.lib");
instrument = library("instruments.lib");
/* ============== DESCRIPTION ================
- Random frequency flute
- Left = Slow rhythm/long notes/silence
... | https://raw.githubusercontent.com/RuolunWeng/ruolunweng.github.io/035564bb7e36eb4e810ca80077ffa8a9d3e5130b/faustplayground/faust-modules/generators/SRandomFlute.dsp | faust | Adapted from "Nonlinear WaveGuide Flute" by Romain Michon (rmichon@ccrma.stanford.edu);
============== DESCRIPTION ================
- Random frequency flute
- Left = Slow rhythm/long notes/silence
- Right = Fast rhythm/short note
==================== INSTRUMENT =======================
==================== GUI SPECI... | declare name "Random Flute";
import("stdfaust.lib");
instrument = library("instruments.lib");
flute = (_ <: (flow + *(feedBack1) : embouchureDelay: poly) + *(feedBack2) : reflexionFilter)~(boreDelay) : NLFM : *(env2)*gain:_;
process = flute;
pressure = 1;
breathAmp = hslider("h:[3]Parameters/Breath Noise[style:... |
85057ad282435db7046d26ef04c57ae950948691dda623d75b8feff96d685fc3 | RuolunWeng/ruolunweng.github.io | BouncyHarp.dsp | declare name "Bouncy Harp";
declare author "ER"; //From Nonlinear EKS by Julius Smith and Romain Michon;
import("stdfaust.lib");
/* =============== DESCRIPTION ================= :
Do not hesitate to make swift and abrupt gestures.
- Head : Silence/reverb.
- Swing : To pluck the strings of the harp.
- Fishing rod wi... | https://raw.githubusercontent.com/RuolunWeng/ruolunweng.github.io/035564bb7e36eb4e810ca80077ffa8a9d3e5130b/faustplayground/faust-modules/combined/BouncyHarp.dsp | faust | From Nonlinear EKS by Julius Smith and Romain Michon;
=============== DESCRIPTION ================= :
Do not hesitate to make swift and abrupt gestures.
- Head : Silence/reverb.
- Swing : To pluck the strings of the harp.
- Fishing rod with abrupt stop in Head position : bouncing string effect.
- Frying Pan and Tenn... | declare name "Bouncy Harp";
import("stdfaust.lib");
process = par(i, N, NFLeks(i)):>_<: select2(byPass,capture,_) <: instrReverbHarp;
NFLeks(n) = filtered_excitation(n,P(octave(n)),octave(n)) : stringloop(octave(n));
capture = _<:capt,_ : select2(B)
with{
capt = *(B) : (+ : de.delay(1048576, D-1)) ~ *(1.0-B... |
f8836c6be0ed718f79305e4258fe18cdf874ea7232d467ba787c0c649357bc86 | RuolunWeng/ruolunweng.github.io | StalactiteHarp.dsp | declare name "Stalactite Harp";
declare author "ER"; //From Non-linear EKS by Julius Smith and Romain Michon;
import("stdfaust.lib");
instrument = library("instruments.lib");
/* =============== DESCRIPTION ================= :
- Stalactite harp mimicking the sound of drops of water in a cave
- Head = Reverberation
-... | https://raw.githubusercontent.com/RuolunWeng/ruolunweng.github.io/035564bb7e36eb4e810ca80077ffa8a9d3e5130b/faustplayground/faust-modules/combined/StalactiteHarp.dsp | faust | From Non-linear EKS by Julius Smith and Romain Michon;
=============== DESCRIPTION ================= :
- Stalactite harp mimicking the sound of drops of water in a cave
- Head = Reverberation
- Left = Rare drops
- Right = Frequent and rapidly falling drops
- Back = Harp/Silence
==================== INSTRUMENT =====... | declare name "Stalactite Harp";
import("stdfaust.lib");
instrument = library("instruments.lib");
process = vgroup("Stalactite Harp",par(i, N, NFLeks(i)):>_<: instrReverbHarp);
NFLeks(n) = filtered_excitation(n+1,P(freq(n)),freq(n)) : stringloop(freq(n)) : fi.lowpass(1,8000);
N = 14;
gain = 1;
pickangle = 0.8... |
bad9f084d37bb26314c079e3bffd91acbcdeeb59cd0b0950f0817c4b603cf8fc | RuolunWeng/ruolunweng.github.io | SClarinet.dsp | declare name "Clarinet";
declare description "Nonlinear WaveGuide Clarinet";
declare author "Romain Michon";
declare copyright "Romain Michon (rmichon@ccrma.stanford.edu)";
declare version "1.0";
declare licence "STK-4.3"; // Synthesis Tool Kit 4.3 (MIT style license);
declare description "A simple clarinet physical mo... | https://raw.githubusercontent.com/RuolunWeng/ruolunweng.github.io/035564bb7e36eb4e810ca80077ffa8a9d3e5130b/faustplayground/faust-modules/generators/SClarinet.dsp | faust | Synthesis Tool Kit 4.3 (MIT style license);
Modification Grame July 2015
=============== DESCRIPTION ================= :
- Clarinet responding to vigorous gestures
- Turn ON clarinet (0=OFF, 1=ON)
- Head = High frequencies/Silence when hold still
- Tilt = very soft sound
- Bottom = Low frequencies
- Right = Breathy ... | declare name "Clarinet";
declare description "Nonlinear WaveGuide Clarinet";
declare author "Romain Michon";
declare copyright "Romain Michon (rmichon@ccrma.stanford.edu)";
declare version "1.0";
declare description "A simple clarinet physical model, as discussed by Smith (1986), McIntyre, Schumacher, Woodhouse (1983),... |
eaa5aff005c6a3078842a1c7693c203d6871d5f558569c54e635f84d48957ad4 | RuolunWeng/ruolunweng.github.io | STibetanBowl.dsp | declare name "Tibetan Bowl";
declare description "Banded Waveguide Modeld Tibetan Bowl";
declare author "Romain Michon";
declare copyright "Romain Michon (rmichon@ccrma.stanford.edu)";
declare version "1.0";
declare licence "STK-4.3"; // Synthesis Tool Kit 4.3 (MIT style license);
declare description "This instrument u... | https://raw.githubusercontent.com/RuolunWeng/ruolunweng.github.io/035564bb7e36eb4e810ca80077ffa8a9d3e5130b/faustplayground/faust-modules/generators/STibetanBowl.dsp | faust | Synthesis Tool Kit 4.3 (MIT style license);
Modifications GRAME July 2015
============ DESCRIPTION =============
- Tibetan Bowl
- Set the frequency manually
- Fishing rod/Front shaking = Ringing the bowl
- Right = maximum modulation
- Rocking = modulating the sound
==================== INSTRUMENT =================... | declare name "Tibetan Bowl";
declare description "Banded Waveguide Modeld Tibetan Bowl";
declare author "Romain Michon";
declare copyright "Romain Michon (rmichon@ccrma.stanford.edu)";
declare version "1.0";
declare description "This instrument uses banded waveguide. For more information, see Essl, G. and Cook, P. Band... |
a0958f65433340898ec5f3d400d44753c35da32db6d4ba72431ed598bff3b0b1 | RuolunWeng/ruolunweng.github.io | TunedBars.dsp | declare name "Tuned Bars";
declare author "ER";//From "Tuned Bar" by Romain Michon (rmichon@ccrma.stanford.edu);
import("stdfaust.lib");
instrument = library("instruments.lib");
/* =============== DESCRIPTION ================= :
- Cascading tuned bars
- Head = Reverberation / Silence
- Bottom = Chime
- Left = Low f... | https://raw.githubusercontent.com/RuolunWeng/ruolunweng.github.io/035564bb7e36eb4e810ca80077ffa8a9d3e5130b/faustplayground/faust-modules/combined/TunedBars.dsp | faust | From "Tuned Bar" by Romain Michon (rmichon@ccrma.stanford.edu);
=============== DESCRIPTION ================= :
- Cascading tuned bars
- Head = Reverberation / Silence
- Bottom = Chime
- Left = Low frequencies + slow rhythm
- Right = High frequencies + fast rhythm
- Reversed Fishing Rod = start at bottom or left or r... | declare name "Tuned Bars";
import("stdfaust.lib");
instrument = library("instruments.lib");
process = par(i, N, tunedBar(i)):>_<: drywet(_,echo) <: instrReverbChime : *(2),*(2);
tunedBar(n) =
((select-1)*-1) <:
par(i,nModes,(resonance(i,octave(n),gate(n))~_)):> + :
*(4);
N = 10;
gain = 1;
gate(n) = posi... |
92a9d58046103c011247b549e1db14da3a57dff5f2a9c8b1f4312652796cd310 | RuolunWeng/ruolunweng.github.io | BlowhistleBottle.dsp | declare name "Blowhistle Bottles";
declare author "ER"; //From "Blow bottle" by Romain Michon;
declare version "1.0";
declare licence "STK-4.3"; // Synthesis Tool Kit 4.3 (MIT style license);
declare description "This object implements a helmholtz resonator (biquad filter) with a polynomial jet excitation (a la Cook)."... | https://raw.githubusercontent.com/RuolunWeng/ruolunweng.github.io/035564bb7e36eb4e810ca80077ffa8a9d3e5130b/faustplayground/faust-modules/combined/BlowhistleBottle.dsp | faust | From "Blow bottle" by Romain Michon;
Synthesis Tool Kit 4.3 (MIT style license);
=============== DESCRIPTION ================= :
- Blow bottles with whistling echo.
- Left : silence/dying echo.
- Head : reverberation
- Front : single blow bottle.
- Back : maximum whistling echo
- Bottom : bottle + whistling echo wi... | declare name "Blowhistle Bottles";
declare version "1.0";
declare description "This object implements a helmholtz resonator (biquad filter) with a polynomial jet excitation (a la Cook).";
import("stdfaust.lib");
instrument = library("instruments.lib");
process = vgroup("Blowhistle Bottles", par(i, N, blow(i)) :>_<... |
96cbc3f8228c7189c0f660f71ecb23a07819ea580cc0db3f481577bbedb5cbbf | RuolunWeng/ruolunweng.github.io | CMajDryHarp.dsp |
declare name "CMajDryHarp";
declare author "ER";//Adapted from Harpe by Yann Orlarey;
//Modification Grame July 2015
import("stdfaust.lib");
instrument = library("instruments.lib");
/* =============== DESCRIPTION ================= :
- Reverberated C Major dry harp
- Left = Lower frequencies/Silence when still
... | https://raw.githubusercontent.com/RuolunWeng/ruolunweng.github.io/035564bb7e36eb4e810ca80077ffa8a9d3e5130b/faustplayground/faust-modules/combined/CMajDryHarp.dsp | faust | Adapted from Harpe by Yann Orlarey;
Modification Grame July 2015
=============== DESCRIPTION ================= :
- Reverberated C Major dry harp
- Left = Lower frequencies/Silence when still
- Front = Resonance (longer notes)
- Back = No Resonance (dry notes)
- Right = Higher frequencies/Fast rhythm
- Head = Reverber... |
declare name "CMajDryHarp";
import("stdfaust.lib");
instrument = library("instruments.lib");
process = vgroup("Harp", h : harpe(C,N,K) : instrReverbHarp : *(l),*(l))
with {
h = hslider("[1]Instrument Hand[1] [acc:0 1 -10 0 10]", 24, 0, N, 1) : int: ba.automat(bps, 15, 0.0)
with{
bps = hslider... |
933392d183dbe3c6272dc2cdc7a9c2b70b091e3dc35619f442f696a7cc145d77 | RuolunWeng/ruolunweng.github.io | SPulsaxophone.dsp | declare name "Solo Pulsaxophone";
declare author "ER"; //From Saxophone by Romain Michon;
/* =============== DESCRIPTION ================= :
- Pulsing saxophone
- Head = High frequencies
- Bottom = Low frequencies
- Right = Fast
- Left = Slow
- Head to Right, Head to Left = interesting transitions
*/
import("stdfa... | https://raw.githubusercontent.com/RuolunWeng/ruolunweng.github.io/035564bb7e36eb4e810ca80077ffa8a9d3e5130b/faustplayground/faust-modules/generators/SPulsaxophone.dsp | faust | From Saxophone by Romain Michon;
=============== DESCRIPTION ================= :
- Pulsing saxophone
- Head = High frequencies
- Bottom = Low frequencies
- Right = Fast
- Left = Slow
- Head to Right, Head to Left = interesting transitions
==================== INSTRUMENT =======================
====================... | declare name "Solo Pulsaxophone";
import("stdfaust.lib");
instrument = library("instruments.lib");
process = vgroup("PULSAXO",
(bodyFilter,breathPressure : instrumentBody) ~
(delay1 : NLFM) : !,_);
freq = hslider("h:Instrument/Frequency[unit:Hz][acc:1 1 -12 0 10]", 110,80,880,1):si.smooth(0.9999):min(880):max(... |
9b3efb99b60d3f1ebaef5f76a11190176dd16826ff96b8101457d521ec73b05b | RuolunWeng/ruolunweng.github.io | Clarinet.dsp | declare name "Clarinet";
declare description "Nonlinear WaveGuide Clarinet";
declare author "Romain Michon";
declare copyright "Romain Michon (rmichon@ccrma.stanford.edu)";
declare version "1.0";
declare licence "STK-4.3"; // Synthesis Tool Kit 4.3 (MIT style license);
declare description "A simple clarinet physical mo... | https://raw.githubusercontent.com/RuolunWeng/ruolunweng.github.io/035564bb7e36eb4e810ca80077ffa8a9d3e5130b/faustplayground/faust-modules/combined/Clarinet.dsp | faust | Synthesis Tool Kit 4.3 (MIT style license);
Modification Grame July 2015
=============== DESCRIPTION ================= :
- Clarinet responding to vigorous gestures
- Turn ON the Clarinet
- Head = High frequencies/Reverberation/Silence when hold still
- Tilt = very soft sound
- Bottom = Low frequencies
- Right = Brea... | declare name "Clarinet";
declare description "Nonlinear WaveGuide Clarinet";
declare author "Romain Michon";
declare copyright "Romain Michon (rmichon@ccrma.stanford.edu)";
declare version "1.0";
declare description "A simple clarinet physical model, as discussed by Smith (1986), McIntyre, Schumacher, Woodhouse (1983),... |
efc8381e3ffab53ef243bb0dad2151ae3ad488ba7a353cfa84fc26085d66a0dd | RuolunWeng/ruolunweng.github.io | Pulsaxophone.dsp | declare name "Pulsaxophone";
declare author "ER"; //From Saxophone by Romain Michon;
import("stdfaust.lib");
instrument = library("instruments.lib");
/* =============== DESCRIPTION ================= :
- Pulsing saxophone
- Head = High frequencies + Reverb
- Bottom = Low frequencies
- Right = Fast
- Left = Slow
- H... | https://raw.githubusercontent.com/RuolunWeng/ruolunweng.github.io/035564bb7e36eb4e810ca80077ffa8a9d3e5130b/faustplayground/faust-modules/combined/Pulsaxophone.dsp | faust | From Saxophone by Romain Michon;
=============== DESCRIPTION ================= :
- Pulsing saxophone
- Head = High frequencies + Reverb
- Bottom = Low frequencies
- Right = Fast
- Left = Slow
- Head to Right, Head to Left = interesting transitions
==================== INSTRUMENT =======================
Scaling Out... | declare name "Pulsaxophone";
import("stdfaust.lib");
instrument = library("instruments.lib");
process = vgroup("Pulsaxo",
(bodyFilter,breathPressure : instrumentBody) ~
(delay1 : NLFM) : !,fi.lowpass(1,1000)
*(gain) :>_<: instrReverbAccel);
freq = hslider("[1]Frequency[unit:Hz][acc:1 1 -12 0 10]", 110,... |
53b6a7e4fdcf4b39886b4fc03dbf9b0cf900e686ed072a6bec0fcc2121d58635 | RuolunWeng/ruolunweng.github.io | Flute.dsp | declare name "Flute";
declare description "Nonlinear WaveGuide Flute";
declare author "Romain Michon (rmichon@ccrma.stanford.edu)";
declare copyright "Romain Michon";
declare version "1.0";
declare licence "STK-4.3"; // Synthesis Tool Kit 4.3 (MIT style license);
declare description "A simple flute based on Smith algor... | https://raw.githubusercontent.com/RuolunWeng/ruolunweng.github.io/035564bb7e36eb4e810ca80077ffa8a9d3e5130b/faustplayground/faust-modules/combined/Flute.dsp | faust | Synthesis Tool Kit 4.3 (MIT style license);
Modifications GRAME July 2015
=========== DESCRITPION ===========
- Flute
- Turn ON flute (0=OFF, 1=ON)
- Head = High frequencies/ Reverberation/ Silence
- Bottom = Low frequencies
- Left = No vibrato
- Right = Fast vibrato
- Front = Full sound
- Back = Breathy sound
===... | declare name "Flute";
declare description "Nonlinear WaveGuide Flute";
declare author "Romain Michon (rmichon@ccrma.stanford.edu)";
declare copyright "Romain Michon";
declare version "1.0";
declare description "A simple flute based on Smith algorythm: https://ccrma.stanford.edu/~jos/pasp/Flutes_Recorders_Pipe_Organs.ht... |
50a2a649e9e081b2315e221843bf39c7ad2cf1d3f3a6af1b51cae980e14a1cea | RuolunWeng/ruolunweng.github.io | RandomFlute.dsp | declare name "Random Flute";
declare author "ER";//Adapted from "Nonlinear WaveGuide Flute" by Romain Michon (rmichon@ccrma.stanford.edu);
import("stdfaust.lib");
instrument = library("instruments.lib");
/* ============== DESCRIPTION ================
- Random frequency flute
- Left = Slow rhythm/long notes/silence... | https://raw.githubusercontent.com/RuolunWeng/ruolunweng.github.io/035564bb7e36eb4e810ca80077ffa8a9d3e5130b/faustplayground/faust-modules/combined/RandomFlute.dsp | faust | Adapted from "Nonlinear WaveGuide Flute" by Romain Michon (rmichon@ccrma.stanford.edu);
============== DESCRIPTION ================
- Random frequency flute
- Left = Slow rhythm/long notes/silence
- Right = Fast rhythm/short note
- Head = Reverberation
- Back = Echo
==================== INSTRUMENT =================... | declare name "Random Flute";
import("stdfaust.lib");
instrument = library("instruments.lib");
flute = (_ <: (flow + *(feedBack1) : embouchureDelay: poly) + *(feedBack2) : reflexionFilter)~(boreDelay) : NLFM : *(env2)*gain:_;
process = flute : echo <: instrReverbFlute;
pressure = 1;
breathAmp = hslider("h:[3]P... |
bc688dec1a8f903f1d2316b3c8ef6acd02dfb540de983a2c10633f951e037d52 | RuolunWeng/ruolunweng.github.io | TibetanBowl.dsp | declare name "Tibetan Bowl";
declare description "Banded Waveguide Modeld Tibetan Bowl";
declare author "Romain Michon";
declare copyright "Romain Michon (rmichon@ccrma.stanford.edu)";
declare version "1.0";
declare licence "STK-4.3"; // Synthesis Tool Kit 4.3 (MIT style license);
declare description "This instrument u... | https://raw.githubusercontent.com/RuolunWeng/ruolunweng.github.io/035564bb7e36eb4e810ca80077ffa8a9d3e5130b/faustplayground/faust-modules/combined/TibetanBowl.dsp | faust | Synthesis Tool Kit 4.3 (MIT style license);
Modification GRAME July 2015
============ DESCRIPTION =============
- Tibetan Bowl
- Set the frequency manually
- Fishing rod/Front shaking = Ringing the bowl
- Right = maximum modulation
- Rocking = modulating the sound
- Head = Reverb
==================== INSTRUMENT ==... | declare name "Tibetan Bowl";
declare description "Banded Waveguide Modeld Tibetan Bowl";
declare author "Romain Michon";
declare copyright "Romain Michon (rmichon@ccrma.stanford.edu)";
declare version "1.0";
declare description "This instrument uses banded waveguide. For more information, see Essl, G. and Cook, P. Band... |
ac99a90a15d053cdb7e79d388eb01b1bf76a20453074d3ebdc9945bf9f6381e2 | RuolunWeng/ruolunweng.github.io | FlappyFlute.dsp | declare name "Flappy Flute";
declare author "ER";// Adapted from "Nonlinear WaveGuide Flute" by Romain Michon (rmichon@ccrma.stanford.edu)
import("stdfaust.lib");
instrument = library("instruments.lib");
/* =============== DESCRIPTION ======================== :
- Flute turning into a flapping bird
- Head = Reverber... | https://raw.githubusercontent.com/RuolunWeng/ruolunweng.github.io/035564bb7e36eb4e810ca80077ffa8a9d3e5130b/faustplayground/faust-modules/combined/FlappyFlute.dsp | faust | Adapted from "Nonlinear WaveGuide Flute" by Romain Michon (rmichon@ccrma.stanford.edu)
=============== DESCRIPTION ======================== :
- Flute turning into a flapping bird
- Head = Reverberation / High frequencies
- Tilting and jerking = looking for different sounds around head and back
- Bottom = Low frequen... | declare name "Flappy Flute";
import("stdfaust.lib");
instrument = library("instruments.lib");
flute = (_ <: (flow + *(feedBack1) : embouchureDelay: poly) + *(feedBack2) : reflexionFilter)~(boreDelay) : NLFM : *(env2)*gain:_;
process = vgroup("Flappy Flute", flute : echo <: instrReverbFlute);
freq = hslider("[1... |
a57e71383c2493c609a81da5281d6b93fe93d0e6434ed63c0c8ff898abfa308b | RuolunWeng/ruolunweng.github.io | TibetanBowlMulti.dsp | declare name "Tibetan Bowl";
declare description "Banded Waveguide Modeld Tibetan Bowl";
declare author "Romain Michon";
declare copyright "Romain Michon (rmichon@ccrma.stanford.edu)";
declare version "1.0";
declare licence "STK-4.3"; // Synthesis Tool Kit 4.3 (MIT style license);
declare description "This instrument u... | https://raw.githubusercontent.com/RuolunWeng/ruolunweng.github.io/035564bb7e36eb4e810ca80077ffa8a9d3e5130b/faustplayground/faust-modules/combined/TibetanBowlMulti.dsp | faust | Synthesis Tool Kit 4.3 (MIT style license);
============ DESCRIPTION ==============
- Multiple Tibetan Bowls
- Head = Note Still/Reverberation
- Head + Light circling on the spot/slight rotation = reverberated rolling ball in the bowl
- Rocking = Ringing all bowls from low to high frequencies
- Back = Modulation
- B... | declare name "Tibetan Bowl";
declare description "Banded Waveguide Modeld Tibetan Bowl";
declare author "Romain Michon";
declare copyright "Romain Michon (rmichon@ccrma.stanford.edu)";
declare version "1.0";
declare description "This instrument uses banded waveguide. For more information, see Essl, G. and Cook, P. Band... |
f69fb158515df4cde82959ec3d9de1816c2f5fcaa0cf7d005f9a0daeed1cd5f3 | RuolunWeng/ruolunweng.github.io | SBird.dsp | declare name "bird";
declare author "Pierre Cochard";
//Modifications by Grame July 2014, June 2015;
/* =============== DESCRIPTION ================= :
- Bird singing generator.
- Right = maximum speed of whistles.
- Left = minimum speed/Rare birds, nearly silence.
*/
import("stdfaust.lib");
// PROCESS - - - - - ... | https://raw.githubusercontent.com/RuolunWeng/ruolunweng.github.io/035564bb7e36eb4e810ca80077ffa8a9d3e5130b/faustplayground/faust-modules/generators/SBird.dsp | faust | Modifications by Grame July 2014, June 2015;
=============== DESCRIPTION ================= :
- Bird singing generator.
- Right = maximum speed of whistles.
- Left = minimum speed/Rare birds, nearly silence.
PROCESS - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
AUTO TRIGGER
BIRD TRIGGER
OSCILL... | declare name "bird";
declare author "Pierre Cochard";
import("stdfaust.lib");
process = hgroup("Bird", mainOsc(noteTrig : rdm(72,94) : mtof , noteTrig) * envWrapper(noteTrig, ampEnv, amp_xp(2510)) : fi.lowpass(1, 2500) *(0.8) <: _,_);
autoTrig = ba.beat(t) * (abs(no.noise) <= p) : trigger(48)
with {
t = hsli... |
11787a313434864de1211d25d232336a4352243ce635d8d84669a849f6677b65 | RuolunWeng/ruolunweng.github.io | SCameleonKeyboard.dsp | declare name "Cameleon Keyboard";
declare author "ER";
import("stdfaust.lib");
//From John Chowning Turenas envelops
/* =============== DESCRIPTION ================= :
- Multiple envelope keyboard
- Pick an envelope
- Rocking = striking across the keyboard from low frequencies (Left) to high frequencies (Right)
- ... | https://raw.githubusercontent.com/RuolunWeng/ruolunweng.github.io/035564bb7e36eb4e810ca80077ffa8a9d3e5130b/faustplayground/faust-modules/generators/SCameleonKeyboard.dsp | faust | From John Chowning Turenas envelops
=============== DESCRIPTION ================= :
- Multiple envelope keyboard
- Pick an envelope
- Rocking = striking across the keyboard from low frequencies (Left) to high frequencies (Right)
- Back + Rotation = long notes
- Front + Rotation = short notes
-----------------------... | declare name "Cameleon Keyboard";
declare author "ER";
import("stdfaust.lib");
marimkey(n) = os.osc(octave(n)) * (0.1)
*(trigger(n+1) : envelope : fi.lowpass(1,500));
process = hand <: par(i, 10, marimkey(i)) :> *(3);
hand = hslider("[1]Instrument Hand[acc:1 0 -10 0 10]", 5, 0, 10, 1);
hight = hslider("[2... |
e342634dede97aeb8e5575eecd55391c902c233d674c06d4b07a4c855b791375 | RuolunWeng/ruolunweng.github.io | Whistles.dsp | declare name "Whistles";
declare author "ER";
declare version "1.0";
import("stdfaust.lib");
instrument = library("instruments.lib");
/* ============ Description ============== :
- 3 triple whistles, one per axis.
- Head = reverberation & whistles heard from far away.
- Bottom + rotation = proximity of the whistles... | https://raw.githubusercontent.com/RuolunWeng/ruolunweng.github.io/035564bb7e36eb4e810ca80077ffa8a9d3e5130b/faustplayground/faust-modules/combined/Whistles.dsp | faust | ============ Description ============== :
- 3 triple whistles, one per axis.
- Head = reverberation & whistles heard from far away.
- Bottom + rotation = proximity of the whistles.
- Rapid swings trigger volume increases (fishing rod/rocking/swing).
----------------- INSTRUMENT ------------------//
----------------... | declare name "Whistles";
declare author "ER";
declare version "1.0";
import("stdfaust.lib");
instrument = library("instruments.lib");
process = vgroup("Whistles", nOise.white * (0.5) <: par(f, 3, par(i, 3, whistle(f,i)) )):>_<: frEEvErb.fvb :>_;
whistle(f,n) = BP(f,n) : EQ(f,n) : @(10 + (12000*n)) <:Reson(f,0),... |
be50ffb5deacc0b959268a3be4e43882a9b3efd1e97d11a1c0da6e5228d43bcc | RuolunWeng/Cage | cage.dsp | import("stdfaust.lib");
switch= en.adsre(0.5,0.1,1,1,checkbox("switch"));
switch2= en.adsre(0.5,0.1,1,1,1-checkbox("switch"));
process = part_radio,part_dialog :> _,_;
part_radio = playerPad, playerVoice :> _*(switch),_*(switch);
part_dialog = Ququ , Birds :> _*(switch2),_*(switch2);
////////
selectPart(sec,offse... | https://raw.githubusercontent.com/RuolunWeng/Cage/1a3945e3327f2e4654a8b67c48cb68bf1e8ce1fb/cage/cage.dsp | faust | //////
Ququ
t=ba.pulsen(hslider("Envelope Period", 6000, 0, 44100, 1), hslider("Envelope Length", 15000, 0, 44100, 1));
t = ba.beat (hslider("Speed [style:knob]", 120, 0, 480, 0.1) );
Birdy from Grame playground
AUTO TRIGGER
tempo(2.5*t))
BIRD TRIGGER
noteTrig = autoTrig;
OSCILLATORS - - - - - - - - - - - - - - -... | import("stdfaust.lib");
switch= en.adsre(0.5,0.1,1,1,checkbox("switch"));
switch2= en.adsre(0.5,0.1,1,1,1-checkbox("switch"));
process = part_radio,part_dialog :> _,_;
part_radio = playerPad, playerVoice :> _*(switch),_*(switch);
part_dialog = Ququ , Birds :> _*(switch2),_*(switch2);
selectPart(sec,offset) =no.pi... |
bd010418c721f2647897f15f36fabc24f753a7d42d735c461349c9c4dd06f4a1 | RuolunWeng/ruolunweng.github.io | Birds.dsp | declare name "bird";
declare author "Pierre Cochard";
/* Modifications by Grame July 2014 */
import("stdfaust.lib");
/* =============== DESCRIPTION ================= :
- Bird singing generator.
- Head = Reverberation, birds heard from far away.
- Bottom = Maximum proximity of the birds.
- Right = maximum speed of w... | https://raw.githubusercontent.com/RuolunWeng/ruolunweng.github.io/035564bb7e36eb4e810ca80077ffa8a9d3e5130b/faustplayground/faust-modules/combined/Birds.dsp | faust | Modifications by Grame July 2014
=============== DESCRIPTION ================= :
- Bird singing generator.
- Head = Reverberation, birds heard from far away.
- Bottom = Maximum proximity of the birds.
- Right = maximum speed of whistles.
- Left = minimum speed, birds rarely heard.
PROCESS - - - - - - - - - - - -... | declare name "bird";
declare author "Pierre Cochard";
import("stdfaust.lib");
process = hgroup("Birds", mainOsc(noteTrig : rdm(72,94) : mtof , noteTrig) * envWrapper(noteTrig, ampEnv, amp_xp(2510)) : fi.lowpass(1, 2000) *(0.8) <: _,_, (rdmPanner : panSte) : panConnect : *,* : reverb);
with {
t = hslider("[1... |
d2c266aba9e6cb2579af44b241875e9e7e531618b9812a9aec4843250ab31025 | LSSN/2020-01-23-dsp-3a-antoniotestoni | Veri.dsp | // Sintesi sottrattiva significa analizzare attraverso strumenti come spettrogramma,
// oscilloscopio e sonogramma il suono o rumore preso in considerazione seconda vari
// aspetti.
//GS - SOTTRATTIVA, lo dice la parola stessa, significa sottrarre da qualcosa che
//GS - abbia uno spettro complesso, per ottenere un pro... | https://raw.githubusercontent.com/LSSN/2020-01-23-dsp-3a-antoniotestoni/cce97d07b807f69cbed40a82fccf08079de707de/Veri.dsp | faust | Sintesi sottrattiva significa analizzare attraverso strumenti come spettrogramma,
oscilloscopio e sonogramma il suono o rumore preso in considerazione seconda vari
aspetti.
GS - SOTTRATTIVA, lo dice la parola stessa, significa sottrarre da qualcosa che
GS - abbia uno spettro complesso, per ottenere un prodotto deriv... |
import("stdfaust.lib");
fcut = vslider("cut-off [style:knob][scale:exp]", 1000, 20, 20000, 1);
order = 8;
process = no.noise : fi.lowpass(order,fcut) : fi.highpass(order,fcut);
|
503cb9ece6ccfaf157c1ccdb7f662fefd8a46e7da66b2013a1221ca90280b371 | LSSN/2019-11-29-dsp-camillacongiu | basspand.dsp | import("stdfaust.lib");
process= no.noise :fi.bandpass(10,1000,2000) : *(vslider("gain",0,0,1,0.1));
//cicciona <3scusaaaaa<3<3<3<3<3<3<3
//i numeri che indentificano lo slider sono il valore iniziale, valore minimo, valore massimo e step incrementale.
//step incrementale è la precisione di passaggio da uno spettro all... | https://raw.githubusercontent.com/LSSN/2019-11-29-dsp-camillacongiu/4cf80dc9f2c40da1129b5dd2a0bdc3e6bed9c3b6/basspand.dsp | faust | cicciona <3scusaaaaa<3<3<3<3<3<3<3
i numeri che indentificano lo slider sono il valore iniziale, valore minimo, valore massimo e step incrementale.
step incrementale è la precisione di passaggio da uno spettro all'altro
il valore iniziale è il valore che deve assumere il controllo quando azioniamo il programma.
il valo... | import("stdfaust.lib");
process= no.noise :fi.bandpass(10,1000,2000) : *(vslider("gain",0,0,1,0.1));
|
e4fa87e6a55145431b9b59ef935ecc5b6cf0e96cd17b0ae5d302e8f2d7570c6e | LSSN/2020-01-23-2a-dsp-giulialostia1920 | verifica.dsp | //Crea un file di faust in cui esponi, in forma di commento, i principi della sintesi sottrattiva. Realizza un esempio attraverso un filtraggio passa banda.
//La sintesi sotrattiva sottrae
import("stdfaust.lib");
catof=vslider("cat-of [style:knob]",1000,20,2000,1);
process= fi. lowpass (2,catof) : fi.highpass (2,cat... | https://raw.githubusercontent.com/LSSN/2020-01-23-2a-dsp-giulialostia1920/b416f87f60b48c539f23462593f95f6ceedd9b15/verifica.dsp | faust | Crea un file di faust in cui esponi, in forma di commento, i principi della sintesi sottrattiva. Realizza un esempio attraverso un filtraggio passa banda.
La sintesi sotrattiva sottrae |
import("stdfaust.lib");
catof=vslider("cat-of [style:knob]",1000,20,2000,1);
process= fi. lowpass (2,catof) : fi.highpass (2,catof);
|
1b7e875ec11b67ecef1b26e9e58bfb537928a645418e3fda5e846b985ab023d4 | LSSN/2020-01-23-dsp-3a-AlessandraVardeu | verifica.dsp | //per sintesi sottrativa si fa rimento ad modello di sinetsi sonora ancora uitilizzata nella musica elettronica che si occupa del processo di creazione del suono e si divide in tre aspetti:
// spettrogramma, sonogramma e forma d'onda.
// questo processo si applica attraverso le sorgenti sonore coovvero gli elemnti ch... | https://raw.githubusercontent.com/LSSN/2020-01-23-dsp-3a-AlessandraVardeu/b32ea6b917e6951725f4f2f5672e4aaa3e391040/verifica.dsp | faust | per sintesi sottrativa si fa rimento ad modello di sinetsi sonora ancora uitilizzata nella musica elettronica che si occupa del processo di creazione del suono e si divide in tre aspetti:
spettrogramma, sonogramma e forma d'onda.
questo processo si applica attraverso le sorgenti sonore coovvero gli elemnti che gene... |
import ("stdfaust.lib");
fcut=vslider("[01] cut-off [scale:exp][style:knob]", 1000,20,20000,1) ;
order=128;
gain=vslider("[02] gain", -20, -96, 0, 0.1) : ba.db2linear ;
process=fi.lowpass(order,fcut) : fi.highpass(order,fcut) : *(gain) ;
|
adeabdd0084923ed5c6a16b8603077f144bb8f9e4b75baff2f7511019dd90166 | LSSN/2020-01-25-dsp-4a-camillacongiu | iubgbug.dsp | crea un file di faust in cui esponi, in forma di commento, i principi della sintesi sottrattiva.
//la sintesi sottrattiva è un modello di sintesi utilizzata nella musica elettronica dove una sorgente sonora viene filtrata da un punto di visa "spettrale", quindi sottraendo da essa le bande di frequenza. gli aspetti più ... | https://raw.githubusercontent.com/LSSN/2020-01-25-dsp-4a-camillacongiu/637fbc69ad093fe1af96f951b49f2c1216ee63e0/iubgbug.dsp | faust | la sintesi sottrattiva è un modello di sintesi utilizzata nella musica elettronica dove una sorgente sonora viene filtrata da un punto di visa "spettrale", quindi sottraendo da essa le bande di frequenza. gli aspetti più importanti vengono evidenziati attraverso il processo dinamico, ovvero quando questa operazione di ... | crea un file di faust in cui esponi, in forma di commento, i principi della sintesi sottrattiva.
il principio su cui si basa è un oscillatore che crea delle forme d'onda e attraverso un filtro alcune componenti dell'onda vengono selezionate, le altre escluse.
import("stdfaust.lib");
gain = vslider("gain",0,0,1,0.1);
p... |
a1f0a594c1b86bbdb596aee5d036732fb09c5c61a1fe63b8bc310cd5304b415b | elaforge/karya | guitar.dsp | import("stdfaust.lib");
declare description "Guitar model.";
declare control0_gate "Gate.";
declare control1_pitch "Pitch signal.";
declare control2_dyn "constant:Dynamic signal.";
declare control3_pos "constant:Pluck position.";
declare flags "impulse-gate";
process(gate, pitch, dyn, pluckPosition) =
nylonGuita... | https://raw.githubusercontent.com/elaforge/karya/471a2131f5a68b3b10b1a138e6f9ed1282980a18/Synth/Faust/dsp/guitar.dsp | faust | brightness = 0.4;
absorption = 0.5;
pm.bridgeFilter(brightness, absorption)
pluckString(stringLength, 1, 1.5, 1, gain, trigger)
: nylonGuitarModel(stringLength, pluckPosition);
| import("stdfaust.lib");
declare description "Guitar model.";
declare control0_gate "Gate.";
declare control1_pitch "Pitch signal.";
declare control2_dyn "constant:Dynamic signal.";
declare control3_pos "constant:Pluck position.";
declare flags "impulse-gate";
process(gate, pitch, dyn, pluckPosition) =
nylonGuita... |
8b2310833810d10dc46b30c6d10384892b87f98a97d0daaf91d7c43e568650dc | elaforge/karya | blow_bottle.dsp | declare name "blowBottle";
declare description "Blown Bottle Instrument";
declare author "Romain Michon (rmichon@ccrma.stanford.edu)";
declare copyright "Romain Michon";
declare version "1.0";
declare licence "STK-4.3"; // Synthesis Tool Kit 4.3 (MIT style license);
declare description "This object implements a helmhol... | https://raw.githubusercontent.com/elaforge/karya/471a2131f5a68b3b10b1a138e6f9ed1282980a18/Synth/Faust/dsp/blow_bottle.dsp | faust | Synthesis Tool Kit 4.3 (MIT style license);
==================== GUI SPECIFICATION ================
==================== SIGNAL PROCESSING ================
Nonlinear filter
nonlinearities are created by the nonlinear passive allpass ladder filter
declared in miscfilter.lib
nonlinear filter order
attack - sustain - re... | declare name "blowBottle";
declare description "Blown Bottle Instrument";
declare author "Romain Michon (rmichon@ccrma.stanford.edu)";
declare copyright "Romain Michon";
declare version "1.0";
declare description "This object implements a helmholtz resonator (biquad
filter) with a polynomial jet excitation (a la Co... |
a72a7ca3cbf87e7889760c8f4fdc81fb89a9bdb42999c23c008aa52053f4a5d0 | aravind-sadharani/puretones-music-room | tanpura-string.dsp | import("stdfaust.lib");
PureTonesString(coarsefreq,period,finetune,variance,delay) = string(freq*(1+delta)/2,gamma) + string(freq*(1-delta)/2,gamma) : *(gain)
with {
freq = coarsefreq;
delta = vslider("[04]Variance",variance,0,20,0.1)/10000;
gamma = 0.5;
gate = vgroup("[00]Play String",os.lf_pulsetra... | https://raw.githubusercontent.com/aravind-sadharani/puretones-music-room/b237ebc23b7b11d7c018716278c2ed702d374e99/src/posts/tanpuraworking-1/tanpura-string.dsp | faust | import("stdfaust.lib");
PureTonesString(coarsefreq,period,finetune,variance,delay) = string(freq*(1+delta)/2,gamma) + string(freq*(1-delta)/2,gamma) : *(gain)
with {
freq = coarsefreq;
delta = vslider("[04]Variance",variance,0,20,0.1)/10000;
gamma = 0.5;
gate = vgroup("[00]Play String",os.lf_pulsetra... | |
7ef976725e6761c7483d17e7a7455600e8292e2e5a2a22a37abc769bf5d6b39f | aravind-sadharani/puretones-music-room | Two-close-strings.dsp | import("stdfaust.lib");
commonPitch = hslider("[0][style:radio{'B':14;'A#':13;'A':12;'G#':11;'G':10;'F#':9;'F':8;'E':7;'D#':6;'D':5;'C#':4;'C':3}]Pitch",3,3,14,1);
fineTune = hslider("Fine_Tune",0,-100,100,1);
String2Tone(f,r,g) = StringModel(pm.f2l(f*r),StringPluck) : *(StringEnv)
with {
StringPluck = en.adsr(0.... | https://raw.githubusercontent.com/aravind-sadharani/puretones-music-room/b237ebc23b7b11d7c018716278c2ed702d374e99/src/posts/tanpuraworking-1/Two-close-strings.dsp | faust | length of the upper portion of the string
length of the lower portion of the string | import("stdfaust.lib");
commonPitch = hslider("[0][style:radio{'B':14;'A#':13;'A':12;'G#':11;'G':10;'F#':9;'F':8;'E':7;'D#':6;'D':5;'C#':4;'C':3}]Pitch",3,3,14,1);
fineTune = hslider("Fine_Tune",0,-100,100,1);
String2Tone(f,r,g) = StringModel(pm.f2l(f*r),StringPluck) : *(StringEnv)
with {
StringPluck = en.adsr(0.... |
20454a1c81c1343650ef67d27dab802ee47bb563188b7ae8c986fb499ca94d81 | aravind-sadharani/puretones | puretones.dsp | // _____ _ _ _ __ __ _ __ __ _
// / ____| | | | (_) | \/ | (_) \ \ / / | |
// | (___ __ _ __| | |__ __ _ _ __ __ _ _ __ _ | \ / |_ _ ___ _ ___ \ \ /\ / /__ ... | https://raw.githubusercontent.com/aravind-sadharani/puretones/e605d7e8ff393cae6fd5216888528290c0f71c33/dronewebapp/puretones.dsp | faust | _____ _ _ _ __ __ _ __ __ _
/ ____| | | | (_) | \/ | (_) \ \ / / | |
| (___ __ _ __| | |__ __ _ _ __ __ _ _ __ _ | \ / |_ _ ___ _ ___ \ \ /\ / /__ _ __|... |
import("stdfaust.lib");
PureTonesString(coarsefreq,period,finetune,ratio,variance,delay) = string(freq*(1+delta)/2,gamma) + string(freq*(1-delta)/2,gamma) : *(gain)
with {
finecent = vslider("[02]Fine Tune",finetune,-100,100,1);
fineratio = 2^(finecent/1200);
ultrafinecent = vslider("[03]Ultrafine Tune"... |
cd0e031fb807af2b6a74ab7623baffe3035a294e9295ad065ab8d1a8f36fce4e | aravind-sadharani/puretones | musicscale.dsp | // _____ _ _ _ __ __ _ __ __ _
// / ____| | | | (_) | \/ | (_) \ \ / / | |
// | (___ __ _ __| | |__ __ _ _ __ __ _ _ __ _ | \ / |_ _ ___ _ ___ \ \ /\ / /__ ... | https://raw.githubusercontent.com/aravind-sadharani/puretones/9799d01cd664fcb3b383c6559ffdf9ece8dbfba9/scalewebapp/musicscale.dsp | faust | _____ _ _ _ __ __ _ __ __ _
/ ____| | | | (_) | \/ | (_) \ \ / / | |
| (___ __ _ __| | |__ __ _ _ __ __ _ _ __ _ | \ / |_ _ ___ _ ___ \ \ /\ / /__ _ __|... |
import("stdfaust.lib");
coarseselector = vslider("[000][style:radio{'B':14;'A#':13;'A':12;'G#':11;'G':10;'F#':9;'F':8;'E':7;'D#':6;'D':5;'C#':4;'C':3}]Pitch",11,3,14,1);
coarse = 110*(2^(coarseselector/12));
octaveselector = vslider("[001][style:radio{'High':1;'Medium':0;'Low':-1;'Lowest':-2}]Octave",0,-2,1,1);
finece... |
576f2a0dd038f3f36526feb23a9b15f6c09fd1efecd9651cb4d825fce4768775 | aravind-sadharani/puretones-music-room | 16harmonics.dsp | import("stdfaust.lib");
commonPitch = hslider("[0][style:radio{'B':14;'A#':13;'A':12;'G#':11;'G':10;'F#':9;'F':8;'E':7;'D#':6;'D':5;'C#':4;'C':3}]Pitch",3,3,14,1);
fineTune = hslider("Fine_Tune",0,-100,100,1);
cperiod = 2^(vslider("[01]Motif Tempo",1.0,-2,4,0.1) - 3);
cgain = 10^(vslider("[02]Motif Gain",0,-20,20,0.1)... | https://raw.githubusercontent.com/aravind-sadharani/puretones-music-room/b237ebc23b7b11d7c018716278c2ed702d374e99/src/posts/tanpuraworking-1/16harmonics.dsp | faust | (1) * (1/2) * (2^(0/1200)); //Sa'
(1) * (1) * (2^(0/1200)); //Sa
(3/2) * (1) * (2^(0/1200)); //Pa
(1) * (2) * (2^(0/1200)); //Sa"
(81/64) * (2) * (2^(0/1200)); //Ga"
(3/2) * (2) * (2^(0/1200)); //Pa"
(16/9) * (2) * (2^(0/1200)); //ni"
(2) * (2) * (2^(0/1200)); //SA"
(9/8) * (2) * (2^(0/1200)); //Re"
(81/64) * ... | import("stdfaust.lib");
commonPitch = hslider("[0][style:radio{'B':14;'A#':13;'A':12;'G#':11;'G':10;'F#':9;'F':8;'E':7;'D#':6;'D':5;'C#':4;'C':3}]Pitch",3,3,14,1);
fineTune = hslider("Fine_Tune",0,-100,100,1);
cperiod = 2^(vslider("[01]Motif Tempo",1.0,-2,4,0.1) - 3);
cgain = 10^(vslider("[02]Motif Gain",0,-20,20,0.1)... |
875a75e92b058e24d5a30c03fa1142dbf1721be569e85d21fba8f2b0e7e5499a | aravind-sadharani/puretones-music-room | musicscale.dsp | import("stdfaust.lib");
freq = hslider("freq",200,50,1000,0.01);
bend = ba.semi2ratio(hslider("bend[midi:pitchwheel]",0,-6,6,0.01)) : si.polySmooth(gate,0.999,1);
gain = hslider("gain",0.5,0,1,0.01);
gate = button("gate") : en.adsr(0,0,1,0.01);
cperiod = hslider("Common_Parameters/Period",2,0,3,0.1);
midiKey = ba.hz2m... | https://raw.githubusercontent.com/aravind-sadharani/puretones-music-room/b237ebc23b7b11d7c018716278c2ed702d374e99/src/data/musicscale.dsp | faust | length of the upper portion of the string
length of the lower portion of the string | import("stdfaust.lib");
freq = hslider("freq",200,50,1000,0.01);
bend = ba.semi2ratio(hslider("bend[midi:pitchwheel]",0,-6,6,0.01)) : si.polySmooth(gate,0.999,1);
gain = hslider("gain",0.5,0,1,0.01);
gate = button("gate") : en.adsr(0,0,1,0.01);
cperiod = hslider("Common_Parameters/Period",2,0,3,0.1);
midiKey = ba.hz2m... |
c4ff6f577bfc05093d7a4de848871f38f03086cfebc1f349a54d5e639fdd149c | ossia/score-user-library | cryBaby.dsp | declare name "cryBaby";
declare description "Application demonstrating the CryBaby wah pedal emulation";
import("stdfaust.lib");
process = dm.crybaby_demo;
| https://raw.githubusercontent.com/ossia/score-user-library/1de4c36f179105f1728e72b02e96f68d1c9130c2/Presets/Faust/filtering/cryBaby.dsp | faust | declare name "cryBaby";
declare description "Application demonstrating the CryBaby wah pedal emulation";
import("stdfaust.lib");
process = dm.crybaby_demo;
| |
7b2210fdaa6c5c322265070cbb1f2eac0f74f5b990fdad6f78479cf5317e785c | ossia/score-user-library | parametricEqualizer.dsp | declare name "parametricEqualizer";
declare description "Exercise and compare Parametric Equalizer sections on test signals";
import("stdfaust.lib");
process = dm.parametric_eq_demo;
| https://raw.githubusercontent.com/ossia/score-user-library/1de4c36f179105f1728e72b02e96f68d1c9130c2/Presets/Faust/filtering/parametricEqualizer.dsp | faust | declare name "parametricEqualizer";
declare description "Exercise and compare Parametric Equalizer sections on test signals";
import("stdfaust.lib");
process = dm.parametric_eq_demo;
| |
e71900fc412def3651c6fc72a5528a5b34aaa4a956b45432503e210d828b16ee | hatchjaw/teensy-wfs | WFS.dsp | declare name "Distributed WFS";
declare description "Basic WFS for a distributed setup consisting of modules that each handle two output channels.";
import("stdfaust.lib");
import("WFS_Params.lib");
// Set which speakers to control.
moduleID = hslider("moduleID", 0, 0, (N_SPEAKERS / SPEAKERS_PER_MODULE) - 1, 1);
// S... | https://raw.githubusercontent.com/hatchjaw/teensy-wfs/9d3a67f5bf9d5c26f4b7a389eb912ae7f2542269/src/faust/WFS.dsp | faust | Set which speakers to control.
Simulate distance by changing gain and applying a lowpass as a function
of distance
Use inverse square law; I_2/I_1 = (d_1/d_2)^2
Assume sensible listening distance of 5 m from array.
Intensity 1...
...at distance 5 m
dGain = (MAX_Y_DIST - distance*.5)/(MAX_Y_DIST);
Create a spe... | declare name "Distributed WFS";
declare description "Basic WFS for a distributed setup consisting of modules that each handle two output channels.";
import("stdfaust.lib");
import("WFS_Params.lib");
moduleID = hslider("moduleID", 0, 0, (N_SPEAKERS / SPEAKERS_PER_MODULE) - 1, 1);
distanceSim(distance) = *(dGain) : fi.... |
ed877654488508b6aa7a418acbca4c4b88266764834728535cf9107d7feffe06 | hatchjaw/springamajig | SpringGrain.dsp | import("stdfaust.lib");
NUMGRAINS = 10;
MAXGRAINDURATION = .75;
TSIZE = 48000 * 2;
grainStart = hslider("Grain start", 754, 0, TSIZE, 1 );
grainSize = hslider("Grain length (s)", .001, .001, MAXGRAINDURATION, .001);
grainSpeed = hslider("Grain speed",1, -3, 3, 0.01);
grainDensity = hslider("Grain density", 2, .1, 25,... | https://raw.githubusercontent.com/hatchjaw/springamajig/e6e350531b7988deb7bff987d589c87c3a59513a/faust/SpringGrain.dsp | faust | Envelopes for gating grains
------------------------------------------------------------
------------------------------------------------------------
------------------------------------------------------------
------------------------------------------------------------
Modulo that handles negative numbers
---------... | import("stdfaust.lib");
NUMGRAINS = 10;
MAXGRAINDURATION = .75;
TSIZE = 48000 * 2;
grainStart = hslider("Grain start", 754, 0, TSIZE, 1 );
grainSize = hslider("Grain length (s)", .001, .001, MAXGRAINDURATION, .001);
grainSpeed = hslider("Grain speed",1, -3, 3, 0.01);
grainDensity = hslider("Grain density", 2, .1, 25,... |
d20268953ea88e5487dfe56e883f10394a205933be96177c2923bd4b275f603b | agraef/pd-remote | amp.dsp |
/* Stereo amplifier stage with bass, treble, gain and balance controls and a
dB meter. */
declare name "amp";
declare description "stereo amplifier stage";
declare author "Albert Graef";
declare version "2.0";
import("stdfaust.lib");
/* Fixed bass and treble frequencies. You might want to tune these for your
... | https://raw.githubusercontent.com/agraef/pd-remote/4fede0b70ac5f9544a783dd45ddcf4643a29bc63/examples/dsp/amp.dsp | faust | Stereo amplifier stage with bass, treble, gain and balance controls and a
dB meter.
Fixed bass and treble frequencies. You might want to tune these for your
setup.
Smoothing (lowpass) filter from signals.lib. We use this for the gain and
balance controls to avoid zipper noise.
Bass and treble gain contr... |
declare name "amp";
declare description "stereo amplifier stage";
declare author "Albert Graef";
declare version "2.0";
import("stdfaust.lib");
bass_freq = 300;
treble_freq = 1200;
smooth = si.smooth(0.99);
bass_gain = nentry("[1] bass [midi:ctrl 16] [unit:dB]", 0, -20, 20, 0.1);
treble_gain = nentry("[2] treb... |
3d597511b3ed2c80d54a2f7d684fc0560a93380b310a18a3afddd3509be66cb7 | tonal-glyph/faustus | tp0.dsp | import("stdfaust.lib");
process = 0,_~+(1):soundfile("son[url:{'tango.wav'}]",2):!,!,_,_;
| https://raw.githubusercontent.com/tonal-glyph/faustus/cc887b115aceaee202edbdb37ee0e4087bfb5a33/tests/soundfile/tp0.dsp | faust | import("stdfaust.lib");
process = 0,_~+(1):soundfile("son[url:{'tango.wav'}]",2):!,!,_,_;
| |
00492b9697017118c2edd8dfd20b50619398ae6d38e51e752a959518fc129089 | tonal-glyph/faustus | filterBank.dsp | declare name "filterBank";
declare description "Graphic Equalizer consisting of a filter-bank driving a bank of faders";
import("stdfaust.lib");
process = dm.filterbank_demo;
| https://raw.githubusercontent.com/tonal-glyph/faustus/cc887b115aceaee202edbdb37ee0e4087bfb5a33/examples/filtering/filterBank.dsp | faust | declare name "filterBank";
declare description "Graphic Equalizer consisting of a filter-bank driving a bank of faders";
import("stdfaust.lib");
process = dm.filterbank_demo;
| |
008139be97257f7bd5e555d5a4896eb1bf8e017bc1a33ec25550c91a6358ac0c | tonal-glyph/faustus | wahPedal.dsp | declare name "wahPedal";
declare description "Demonstrate the Fourth-Order Wah pedal (similar to the Moog VCF)";
import("stdfaust.lib");
process = dm.wah4_demo;
| https://raw.githubusercontent.com/tonal-glyph/faustus/cc887b115aceaee202edbdb37ee0e4087bfb5a33/examples/filtering/wahPedal.dsp | faust | declare name "wahPedal";
declare description "Demonstrate the Fourth-Order Wah pedal (similar to the Moog VCF)";
import("stdfaust.lib");
process = dm.wah4_demo;
| |
ac90eb891cfde62e2c62f07c0383dac3b17416dba0275170c19270bc571df3d9 | tonal-glyph/faustus | spectralTilt.dsp | declare name "spectralTilt";
declare description "Demonstrate the Spectral Tilt effect on test signals";
import("stdfaust.lib");
O = 2; // filter order
process = dm.spectral_tilt_demo(2);
| https://raw.githubusercontent.com/tonal-glyph/faustus/cc887b115aceaee202edbdb37ee0e4087bfb5a33/examples/filtering/spectralTilt.dsp | faust | filter order | declare name "spectralTilt";
declare description "Demonstrate the Spectral Tilt effect on test signals";
import("stdfaust.lib");
process = dm.spectral_tilt_demo(2);
|
09423aa851e966a347fcd8213828efb2f145fce8ecd4342ff4586fb1d5eba895 | tonal-glyph/faustus | effects.dsp | // All effects used by minimoog.dsp
import("stdfaust.lib");
import("layout2.dsp");
process = _,_ : +
: component("echo.dsp")
: component("flanger.dsp")
: component("chorus.dsp")
: component("freeverb.dsp");
| https://raw.githubusercontent.com/tonal-glyph/faustus/cc887b115aceaee202edbdb37ee0e4087bfb5a33/examples/SAM/effects/effects.dsp | faust | All effects used by minimoog.dsp |
import("stdfaust.lib");
import("layout2.dsp");
process = _,_ : +
: component("echo.dsp")
: component("flanger.dsp")
: component("chorus.dsp")
: component("freeverb.dsp");
|
e1bd3c704e2a49218db2dcab7f9a96a6c2bb40c7f89bba1e5f27eb2f84e8a277 | tonal-glyph/faustus | flute.dsp | declare name "Flute";
declare description "Simple flute physical model with physical parameters.";
declare license "MIT";
declare copyright "(c)Romain Michon, CCRMA (Stanford University), GRAME";
import("stdfaust.lib");
process = pm.flute_ui <: _,_;
| https://raw.githubusercontent.com/tonal-glyph/faustus/cc887b115aceaee202edbdb37ee0e4087bfb5a33/examples/physicalModeling/flute.dsp | faust | declare name "Flute";
declare description "Simple flute physical model with physical parameters.";
declare license "MIT";
declare copyright "(c)Romain Michon, CCRMA (Stanford University), GRAME";
import("stdfaust.lib");
process = pm.flute_ui <: _,_;
| |
752974d9cc112ca78663c2de3e24fb64a3846ad29b2b7222d8f665d9989acab7 | tonal-glyph/faustus | clarinet.dsp | declare name "Clarinet";
declare description "Simple clarinet physical model with physical parameters.";
declare license "MIT";
declare copyright "(c)Romain Michon, CCRMA (Stanford University), GRAME";
import("stdfaust.lib");
process = pm.clarinet_ui <: _,_;
| https://raw.githubusercontent.com/tonal-glyph/faustus/cc887b115aceaee202edbdb37ee0e4087bfb5a33/examples/physicalModeling/clarinet.dsp | faust | declare name "Clarinet";
declare description "Simple clarinet physical model with physical parameters.";
declare license "MIT";
declare copyright "(c)Romain Michon, CCRMA (Stanford University), GRAME";
import("stdfaust.lib");
process = pm.clarinet_ui <: _,_;
| |
f3f0354b24c5f289c5695f1e9082a476c9cbc5247c8c260f98349a085ea4b09a | tonal-glyph/faustus | volume.dsp | //---------------------------------------------------------
// Volume control in dB with MIDI control (CC-1, modWheel)
//---------------------------------------------------------
import("stdfaust.lib");
gain = vslider("Volume[midi:ctrl 2] [tooltip CC-1]", 0, -70, +4, 0.1) : ba.db2linear : si.smoo;
process = _,_: ... | https://raw.githubusercontent.com/tonal-glyph/faustus/cc887b115aceaee202edbdb37ee0e4087bfb5a33/examples/SAM/volume/volume.dsp | faust | ---------------------------------------------------------
Volume control in dB with MIDI control (CC-1, modWheel)
--------------------------------------------------------- |
import("stdfaust.lib");
gain = vslider("Volume[midi:ctrl 2] [tooltip CC-1]", 0, -70, +4, 0.1) : ba.db2linear : si.smoo;
process = _,_: *(gain), *(gain);
|
4809b2fe432a5d026d4f61ba8a9545ac00ab3bc5a16bb6ed3c5aa8c35f7f9e34 | tonal-glyph/faustus | sine_synth.dsp | // tosc.dsp - test simple oscillator + MIDI bindings
import("stdfaust.lib");
process = g * a * os.oscrs(f*b) <: _,_;
a = hslider("gain [midi:ctrl 7]",1,0,1,0.001);
f = hslider("freq",392.0,200.0,450.0,0.01);
b = hslider("bend [midi:pitchwheel]",1,0.1,10,0.001);
g = button("gate");
| https://raw.githubusercontent.com/tonal-glyph/faustus/cc887b115aceaee202edbdb37ee0e4087bfb5a33/examples/SAM/sine_synth/sine_synth.dsp | faust | tosc.dsp - test simple oscillator + MIDI bindings | import("stdfaust.lib");
process = g * a * os.oscrs(f*b) <: _,_;
a = hslider("gain [midi:ctrl 7]",1,0,1,0.001);
f = hslider("freq",392.0,200.0,450.0,0.01);
b = hslider("bend [midi:pitchwheel]",1,0.1,10,0.001);
g = button("gate");
|
2ac67558ab40c4efc1acf32effdedd45380fb676790bdc31e593791108332b35 | tonal-glyph/faustus | virtualAnalogLab.dsp | declare name "virtualAnalogLab";
import("stdfaust.lib");
process =
vgroup("[1]", dm.virtual_analog_oscillator_demo) :
vgroup("[2]", dm.moog_vcf_demo) :
vgroup("[3]", dm.spectral_level_demo)
// See also: vgroup("[3]", dm.fft_spectral_level_demo(32))
<: _,_;
| https://raw.githubusercontent.com/tonal-glyph/faustus/cc887b115aceaee202edbdb37ee0e4087bfb5a33/examples/generator/virtualAnalogLab.dsp | faust | See also: vgroup("[3]", dm.fft_spectral_level_demo(32)) | declare name "virtualAnalogLab";
import("stdfaust.lib");
process =
vgroup("[1]", dm.virtual_analog_oscillator_demo) :
vgroup("[2]", dm.moog_vcf_demo) :
vgroup("[3]", dm.spectral_level_demo)
<: _,_;
|
90f793ac2bdb9e9d6e9967b76ff7a4256cf19d838c1db11b805bc0f56ce717d2 | tonal-glyph/faustus | filteredSawtooth.dsp | import("stdfaust.lib");
freq = nentry("freq",50,200,1000,0.01) ;
gain = nentry("gain",0.5,0,1,0.01) : si.smoo;
gate = button("gate") : si.smoo;
cutoff = nentry("cutoff",10000,50,10000,0.01) : si.smoo;
process = os.sawtooth(freq)*gain*gate : fi.lowpass(3,cutoff) <: _,_;
| https://raw.githubusercontent.com/tonal-glyph/faustus/cc887b115aceaee202edbdb37ee0e4087bfb5a33/documentation/faust-manual/misc/juce/filteredSawtooth.dsp | faust | import("stdfaust.lib");
freq = nentry("freq",50,200,1000,0.01) ;
gain = nentry("gain",0.5,0,1,0.01) : si.smoo;
gate = button("gate") : si.smoo;
cutoff = nentry("cutoff",10000,50,10000,0.01) : si.smoo;
process = os.sawtooth(freq)*gain*gate : fi.lowpass(3,cutoff) <: _,_;
| |
a5d16294274fc10d2941c4a963a0252e740fee5080005badecd4bff431acfbc9 | tonal-glyph/faustus | reverbDesigner.dsp | declare name "reverbDesigner";
import("stdfaust.lib");
N = 16; // Feedback Delay Network (FDN) order (power of 2, 2 to 16)
NB = 5; // Number of T60-controlled frequency-bands (3 or more)
BSO = 3; // Order of each lowpass/highpass bandsplit (odd positive integer)
process = dm.fdnrev0_demo(N,NB,BSO);
| https://raw.githubusercontent.com/tonal-glyph/faustus/cc887b115aceaee202edbdb37ee0e4087bfb5a33/examples/reverb/reverbDesigner.dsp | faust | Feedback Delay Network (FDN) order (power of 2, 2 to 16)
Number of T60-controlled frequency-bands (3 or more)
Order of each lowpass/highpass bandsplit (odd positive integer) | declare name "reverbDesigner";
import("stdfaust.lib");
process = dm.fdnrev0_demo(N,NB,BSO);
|
781e9af137503075b79bdbe210e5b44cb0f17c5b009bc7a88a09403a68268fb5 | tonal-glyph/faustus | graphicEqLab.dsp | declare name "graphicEqLab";
declare description "Signal generators through a filter bank with spectrum analysis display";
import("stdfaust.lib");
process =
// ol.sawtooth_demo : fl.filterbank_demo : fl.spectral_level_demo <: _,_;
vgroup("[1]",dm.sawtooth_demo) :
vgroup("[2]",dm.filterbank_demo) :
vgroup("[3]",... | https://raw.githubusercontent.com/tonal-glyph/faustus/cc887b115aceaee202edbdb37ee0e4087bfb5a33/examples/filtering/graphicEqLab.dsp | faust | ol.sawtooth_demo : fl.filterbank_demo : fl.spectral_level_demo <: _,_; | declare name "graphicEqLab";
declare description "Signal generators through a filter bank with spectrum analysis display";
import("stdfaust.lib");
process =
vgroup("[1]",dm.sawtooth_demo) :
vgroup("[2]",dm.filterbank_demo) :
vgroup("[3]",dm.spectral_level_demo) <:
_,_;
|
d37f31515cf4cb46e8cb4957a00ca5b7943634932ef198a4eb85712ae5e2cc49 | tonal-glyph/faustus | sawtooth_synth.dsp |
import("stdfaust.lib");
normMIDI(mv) = mv/127.0;
vol = normMIDI(hslider("Ctrl Value IN (Ctrl 1) [midi:ctrl 1]", 60, 0, 127, 1)) ;
f = nentry("freq",200,40,2000,0.01);
bend = nentry("bend",1,0,10,0.01) : si.polySmooth(t,0.999,1);
g = nentry("gain",1,0,1,0.01);
t = button("gate");
freq = f*bend;
envelope = t*g*vo... | https://raw.githubusercontent.com/tonal-glyph/faustus/cc887b115aceaee202edbdb37ee0e4087bfb5a33/examples/SAM/sawtooth_synth/sawtooth_synth.dsp | faust |
import("stdfaust.lib");
normMIDI(mv) = mv/127.0;
vol = normMIDI(hslider("Ctrl Value IN (Ctrl 1) [midi:ctrl 1]", 60, 0, 127, 1)) ;
f = nentry("freq",200,40,2000,0.01);
bend = nentry("bend",1,0,10,0.01) : si.polySmooth(t,0.999,1);
g = nentry("gain",1,0,1,0.01);
t = button("gate");
freq = f*bend;
envelope = t*g*vo... | |
9a811666c849d5057ad5f51f8e743d6237469d6641717b656d2154490ee6677a | tonal-glyph/faustus | parametricEqLab.dsp | declare name "parametricEqLab";
declare description "Demonstrate the Parametric Equalizer sections on test signals with spectrum analysis display";
import("stdfaust.lib");
//process = ol.sawtooth_demo : fl.parametric_eq_demo :
// fl.mth_octave_spectral_level_demo(2) <: _,_;
process =
vgroup("[1]", dm.sawto... | https://raw.githubusercontent.com/tonal-glyph/faustus/cc887b115aceaee202edbdb37ee0e4087bfb5a33/examples/filtering/parametricEqLab.dsp | faust | process = ol.sawtooth_demo : fl.parametric_eq_demo :
fl.mth_octave_spectral_level_demo(2) <: _,_; | declare name "parametricEqLab";
declare description "Demonstrate the Parametric Equalizer sections on test signals with spectrum analysis display";
import("stdfaust.lib");
process =
vgroup("[1]", dm.sawtooth_demo) :
vgroup("[2]", dm.parametric_eq_demo) :
vgroup("[3]", dm.mth_octave_spectral_level_demo(2))
<: ... |
796fb0888ad0640692cca2b624ba966caa62d5fe5b23320ecc322b40d7740eb2 | tonal-glyph/faustus | rain.dsp | //----------------------`rain`--------------------------
// A very simple rain simulator
//
// #### Usage
//
// ```
// rain(d,l) : _,_
// ```
//
// Where:
//
// * `d`: is the density of the rain: between 0 and 1
// * `l`: is the level (volume) of the rain: between 0 and 1
//
//-----------------------------------------... | https://raw.githubusercontent.com/tonal-glyph/faustus/cc887b115aceaee202edbdb37ee0e4087bfb5a33/examples/gameaudio/rain.dsp | faust | ----------------------`rain`--------------------------
A very simple rain simulator
#### Usage
```
rain(d,l) : _,_
```
Where:
* `d`: is the density of the rain: between 0 and 1
* `l`: is the level (volume) of the rain: between 0 and 1
---------------------------------------------------------- |
import("stdfaust.lib");
rain(density,level) = no.multinoise(2) : par(i, 2, drop) : par(i, 2, *(level))
with {
drop = _ <: @(1), (abs < density) : *;
};
process = rain (
hslider("v:rain/density", 300, 0, 1000, 1) / 1000,
hslider("v:rain/volume", 0.5, 0, 1, 0.01)
);
|
f7b0f9d346cc946fe8b7ac920d2d87155e7b9fd9d25b253242f9c2265189259a | tonal-glyph/faustus | vcfWahLab.dsp | import("stdfaust.lib");
declare description "Demonstrate competing variable-lowpass-filter effects on test signals with spectrum analysis display";
declare name "vcfWahLab";
// process = ol.sawtooth_demo :
// el.crybaby_demo : el.moog_vcf_demo : el.wah4_demo :
// fl.spectral_level_demo <: _,_;
process =
vgr... | https://raw.githubusercontent.com/tonal-glyph/faustus/cc887b115aceaee202edbdb37ee0e4087bfb5a33/examples/filtering/vcfWahLab.dsp | faust | process = ol.sawtooth_demo :
el.crybaby_demo : el.moog_vcf_demo : el.wah4_demo :
fl.spectral_level_demo <: _,_; | import("stdfaust.lib");
declare description "Demonstrate competing variable-lowpass-filter effects on test signals with spectrum analysis display";
declare name "vcfWahLab";
process =
vgroup("[1]", dm.sawtooth_demo) :
vgroup("[2]", dm.crybaby_demo) :
vgroup("[3]", dm.wah4_demo) :
vgroup("[4]", dm.moog_vcf_dem... |
dc5fd39dc3615f6e083c77796759c94191b3bc9dfe4d1969b8c601f75a3a72c3 | tonal-glyph/faustus | sound.dsp |
import("stdfaust.lib");
so_loop_speed(s, part, speed) = (part, reader(s)) : outs(s)
with {
length(s) = part,0 : s : _,si.block(outputs(s)-1);
srate(s) = part,0 : s : !,_,si.block(outputs(s)-2);
outs(s) = s : si.block(2), si.bus(outputs(s)-2);
reader(s) = float(speed*srate(s))/ma.SR : (+,length(s):fmod)~_ : i... | https://raw.githubusercontent.com/tonal-glyph/faustus/cc887b115aceaee202edbdb37ee0e4087bfb5a33/tests/architecture-tests/sound.dsp | faust |
import("stdfaust.lib");
so_loop_speed(s, part, speed) = (part, reader(s)) : outs(s)
with {
length(s) = part,0 : s : _,si.block(outputs(s)-1);
srate(s) = part,0 : s : !,_,si.block(outputs(s)-2);
outs(s) = s : si.block(2), si.bus(outputs(s)-2);
reader(s) = float(speed*srate(s))/ma.SR : (+,length(s):fmod)~_ : i... | |
e15bf34652b4d0ec016cdd1b45d22a2dd51a54c95368d4c9f9ef020435dfe72d | tonal-glyph/faustus | organ.dsp | // Simple Organ
declare nvoices "8";
import("stdfaust.lib");
// Midi interface
midigate = button ("gate"); // MIDI keyon-keyoff
midifreq = hslider("freq[unit:Hz]", 440, 20, 20000, 1); // MIDI keyon key
midigain = hslider("gain", 0.5, 0, 10, 0.01); // MIDI keyon velocity
process ... | https://raw.githubusercontent.com/tonal-glyph/faustus/cc887b115aceaee202edbdb37ee0e4087bfb5a33/tests/architecture-tests/organ.dsp | faust | Simple Organ
Midi interface
MIDI keyon-keyoff
MIDI keyon key
MIDI keyon velocity
Implementation | declare nvoices "8";
import("stdfaust.lib");
process = voice(midigate, midigain, midifreq) * hslider("volume", 0.5, 0, 1, 0.01);
phasor(f) = f/ma.SR : (+,1.0:fmod) ~ _ ;
osc(f) = phasor(f) * 6.28318530718 : sin;
timbre(freq) = osc(freq) + 0.5 * osc(2.0*freq) + 0.25 * osc(3.0*freq);
envelop(gate, gain)... |
71074380f21a6ccddd9bd33d944ee0adaaf558d485a25d91bdd92d2048c90da9 | tonal-glyph/faustus | tp1.dsp | import("stdfaust.lib");
part = nentry("file", 0, 0, 10, 1);
speed = hslider("speed", 1, 0, 4, 0.01);
level = hslider("level", 0.5, 0, 1, 0.01);
//process = (part, +(1)~_) : soundfile("files [url: {'RnB.wav';'tango.wav';'levot.wav'}]",2) :(!,!,_,_);
//process = so.loop(soundfile("files [url: {'/Documents/faust-github... | https://raw.githubusercontent.com/tonal-glyph/faustus/cc887b115aceaee202edbdb37ee0e4087bfb5a33/tests/soundfile/tp1.dsp | faust | process = (part, +(1)~_) : soundfile("files [url: {'RnB.wav';'tango.wav';'levot.wav'}]",2) :(!,!,_,_);
process = so.loop(soundfile("files [url: {'/Documents/faust-github-faust2/tests/soundfile/RnB.wav';'/Documents/faust-github-faust2/tests/soundfile/tango.wav';'/Documents/faust-github-faust2/tests/soundfile/levot.wav'}... | import("stdfaust.lib");
part = nentry("file", 0, 0, 10, 1);
speed = hslider("speed", 1, 0, 4, 0.01);
level = hslider("level", 0.5, 0, 1, 0.01);
process = so.loop_speed_level(soundfile("files [url: {'RnB.wav';'tango.wav';'levot.wav'}]",2), part, speed, level);
|
dd7c13304e8396454e80133294aa64693b86194ddbb312b00b71f911b1eb07f5 | tonal-glyph/faustus | harpe.dsp | //-----------------------------------------------
// Basic harpe simulation with OSC control
// (based on Karplus-Strong)
//
//-----------------------------------------------
declare name "harpe";
declare author "Grame";
import("stdfaust.lib");
process = harpe(11); // an 11 strings harpe
//------------------... | https://raw.githubusercontent.com/tonal-glyph/faustus/cc887b115aceaee202edbdb37ee0e4087bfb5a33/examples/physicalModeling/old/harpe.dsp | faust | -----------------------------------------------
Basic harpe simulation with OSC control
(based on Karplus-Strong)
-----------------------------------------------
an 11 strings harpe
-----------------------------------------------
String simulation
-----------------------------------------------
--------------... |
declare name "harpe";
declare author "Grame";
import("stdfaust.lib");
string(freq, att, level, trig) = no.noise*level
: *(trig : trigger(freq2samples(freq)))
: resonator(freq2samples(freq), att)
with {
resonator(d, a) = (+ : @(d-1)) ~ (average : *(1.0-a));
average(x) = (x+x')/2;
trigger(n) ... |
b33c51e76a6d267e235caa47c1af6dac18ec722c9ba98aee6649150b3183c4ea | tonal-glyph/faustus | AdditiveSynth.dsp | import("stdfaust.lib");
///////////////////////////////////////////////////////////////////////////////////////////////////
//
// Additive synthesizer, must be used with OSC message to program sound.
// It as 8 harmonics. Each have it's own volume envelope.
//
//////////////////////////////////////////////////////////... | https://raw.githubusercontent.com/tonal-glyph/faustus/cc887b115aceaee202edbdb37ee0e4087bfb5a33/examples/bela/AdditiveSynth.dsp | faust | /////////////////////////////////////////////////////////////////////////////////////////////////
Additive synthesizer, must be used with OSC message to program sound.
It as 8 harmonics. Each have it's own volume envelope.
/////////////////////////////////////////////////////////////////////////////////////////////... | import("stdfaust.lib");
midigate = button("gate");
midifreq = nentry("freq[unit:Hz]", 440, 20, 20000, 1);
midigain = nentry("gain", 0.5, 0, 10, 0.01);
pitchwheel = hslider("bend [midi:pitchwheel]",1,0.001,10,0.01);
gFreq = midifreq * pitchwheel;
partiel(rang) = os.oscrs(gFreq*(rang+1))*volume
with {
vo... |
7ef7f76dbf84659fbee18748855df1e00f395518866446105a21c70a70406f9d | tonal-glyph/faustus | AdditiveSynth_Analog.dsp | import("stdfaust.lib");
///////////////////////////////////////////////////////////////////////////////////////////////////
//
// Additive synthesizer, must be used with OSC message to program sound.
// It as 8 harmonics. Each have it's own volume envelope.
//
//////////////////////////////////////////////////////////... | https://raw.githubusercontent.com/tonal-glyph/faustus/cc887b115aceaee202edbdb37ee0e4087bfb5a33/examples/bela/AdditiveSynth_Analog.dsp | faust | /////////////////////////////////////////////////////////////////////////////////////////////////
Additive synthesizer, must be used with OSC message to program sound.
It as 8 harmonics. Each have it's own volume envelope.
/////////////////////////////////////////////////////////////////////////////////////////////... | import("stdfaust.lib");
midigate = button("gate");
midifreq = nentry("freq[unit:Hz]", 440, 20, 20000, 1);
midigain = nentry("gain", 0.5, 0, 10, 0.01);
pitchwheel = hslider("bend [midi:pitchwheel]",1,0.001,10,0.01);
gFreq = midifreq * pitchwheel;
partiel(rang) = os.oscrs(gFreq*(rang+1))*volume
with {
vo... |
4e90a725d62a7be47d6398e5da457b856699e4f19a94ad75de555af15a80978c | tonal-glyph/faustus | chorus.dsp | import("stdfaust.lib");
import("layout2.dsp");
voices = 8; // MUST BE EVEN
process = ba.bypass1to2(cbp,chorus_mono(dmax,curdel,rate,sigma,do2,voices));
dmax = 8192;
curdel = dmax * ckg(vslider("[0] Delay [midi:ctrl 55] [style:knob]", 0.5, 0, 1, 1)) : si.smooth(0.999);
rateMax = 7.0; // Hz
rateMin = 0.01;
rateT60 = 0... | https://raw.githubusercontent.com/tonal-glyph/faustus/cc887b115aceaee202edbdb37ee0e4087bfb5a33/examples/SAM/effects/chorus.dsp | faust | MUST BE EVEN
Hz
use when depth=1 means "multivibrato" effect (no original => all are modulated) | import("stdfaust.lib");
import("layout2.dsp");
process = ba.bypass1to2(cbp,chorus_mono(dmax,curdel,rate,sigma,do2,voices));
dmax = 8192;
curdel = dmax * ckg(vslider("[0] Delay [midi:ctrl 55] [style:knob]", 0.5, 0, 1, 1)) : si.smooth(0.999);
rateMin = 0.01;
rateT60 = 0.15661;
rate = ckg(vslider("[1] Rate [midi:ctrl 5... |
6688003c78a23f044d494ab5b0ca3ca6908beb2d10c67ba1d17d0049f3ad7df0 | tonal-glyph/faustus | chorus.dsp | import("stdfaust.lib");
import("layout2.dsp");
voices = 8; // MUST BE EVEN
process = ba.bypass1to2(cbp,chorus_mono(dmax,curdel,rate,sigma,do2,voices));
dmax = 8192;
curdel = dmax * ckg(vslider("[0] Delay [midi:ctrl 4] [style:knob]", 0.5, 0, 1, 1)) : si.smooth(0.999);
rateMax = 7.0; // Hz
rateMin = 0.01;
rateT60 = 0.... | https://raw.githubusercontent.com/tonal-glyph/faustus/cc887b115aceaee202edbdb37ee0e4087bfb5a33/examples/SAM/chorus/chorus.dsp | faust | MUST BE EVEN
Hz
use when depth=1 means "multivibrato" effect (no original => all are modulated) | import("stdfaust.lib");
import("layout2.dsp");
process = ba.bypass1to2(cbp,chorus_mono(dmax,curdel,rate,sigma,do2,voices));
dmax = 8192;
curdel = dmax * ckg(vslider("[0] Delay [midi:ctrl 4] [style:knob]", 0.5, 0, 1, 1)) : si.smooth(0.999);
rateMin = 0.01;
rateT60 = 0.15661;
rate = ckg(vslider("[1] Rate [midi:ctrl 2]... |
99446d214604d52e4bd98b1da99d37f4b0b293ef28f2a574d3318b2f8292bbf4 | tonal-glyph/faustus | trumpet.dsp | //################################### trumpet.dsp #####################################
// A simple trumpet app... (for large screens).
//
// ## Compilation Instructions
//
// This Faust code will compile fine with any of the standard Faust targets. However
// it was specifically designed to be used with `faust2smartke... | https://raw.githubusercontent.com/tonal-glyph/faustus/cc887b115aceaee202edbdb37ee0e4087bfb5a33/examples/smartKeyboard/trumpet.dsp | faust | ################################### trumpet.dsp #####################################
A simple trumpet app... (for large screens).
## Compilation Instructions
This Faust code will compile fine with any of the standard Faust targets. However
it was specifically designed to be used with `faust2smartkeyb`. For best ... |
import("stdfaust.lib");
declare interface "SmartKeyboard{
'Number of Keyboards':'5',
'Max Keyboard Polyphony':'1',
'Mono Mode':'1',
'Keyboard 0 - Number of Keys':'13',
'Keyboard 1 - Number of Keys':'13',
'Keyboard 2 - Number of Keys':'13',
'Keyboard 3 - Number of Keys':'13',
'Keyboard 4 - Number of Keys':'13'... |
859230cb58be7636f486769bbba2f9d9f2c4353f1ca18579ed90d677230d62e0 | tonal-glyph/faustus | flanger.dsp | // Created from flange.dsp 2015/06/21
import("stdfaust.lib");
import("layout2.dsp");
flanger_mono(dmax,curdel,depth,fb,invert,lfoshape)
= _ <: _, (-:de.fdelay(dmax,curdel)) ~ *(fb) : _,
*(select2(invert,depth,0-depth))
: + : *(1/(1+depth)); // ideal for dc and reinforced sinusoids (in-phase summed sig... | https://raw.githubusercontent.com/tonal-glyph/faustus/cc887b115aceaee202edbdb37ee0e4087bfb5a33/examples/SAM/flanger/flanger.dsp | faust | Created from flange.dsp 2015/06/21
ideal for dc and reinforced sinusoids (in-phase summed signals)
Kill the groups to save vertical space:
~1 ms at 44.1 kHz = min delay |
import("stdfaust.lib");
import("layout2.dsp");
flanger_mono(dmax,curdel,depth,fb,invert,lfoshape)
= _ <: _, (-:de.fdelay(dmax,curdel)) ~ *(fb) : _,
*(select2(invert,depth,0-depth))
process = ba.bypass1(fbp,flanger_mono_gui);
meter_group(x) = flsg(x);
ctl_group(x) = flkg(x);
del_group(x) = flkg(x);
... |
ae7ab641ed7e9e8549d7409c1a121d43c996aaea2fa8189a729a52989b42f6a2 | tonal-glyph/faustus | granulator.dsp | // FROM FAUST DEMO
// Designed to use the Analog Input for parameters contrôles.
//
///////////////////////////////////////////////////////////////////////////////////////////////////
//
// ANALOG IN:
// ANALOG 0 : Grain Size
// ANALOG 1 : Speed
// ANALOG 2 : Probability
// (others analog inputs are not used)
//
//////... | https://raw.githubusercontent.com/tonal-glyph/faustus/cc887b115aceaee202edbdb37ee0e4087bfb5a33/examples/bela/granulator.dsp | faust | FROM FAUST DEMO
Designed to use the Analog Input for parameters contrôles.
/////////////////////////////////////////////////////////////////////////////////////////////////
ANALOG IN:
ANALOG 0 : Grain Size
ANALOG 1 : Speed
ANALOG 2 : Probability
(others analog inputs are not used)
////////////////////////////... |
process = vgroup("Granulator", environment {
declare name "Granulator";
declare author "Adapted from sfIter by Christophe Lebreton";
import("stdfaust.lib");
process = hgroup("Granulator", *(excitation : ampf));
excitation = noiseburst(gate,P) * (gain);
ampf = an.amp_follower_ud(duree_env,du... |
f9847c4cdf74a9566e90701febd338bb5d35ffdb9c30f93c97747f2386a23c24 | tonal-glyph/faustus | WaveSynth_Analog.dsp | import("stdfaust.lib");
///////////////////////////////////////////////////////////////////////////////////////////////////
//
// Simple demo of wavetable synthesis. A LFO modulate the interpolation between 4 tables.
// It's possible to add more tables step.
//
/////////////////////////////////////////////////////////... | https://raw.githubusercontent.com/tonal-glyph/faustus/cc887b115aceaee202edbdb37ee0e4087bfb5a33/examples/bela/WaveSynth_Analog.dsp | faust | /////////////////////////////////////////////////////////////////////////////////////////////////
Simple demo of wavetable synthesis. A LFO modulate the interpolation between 4 tables.
It's possible to add more tables step.
////////////////////////////////////////////////////////////////////////////////////////////... | import("stdfaust.lib");
midigate = button ("gate");
midifreq = nentry("freq[unit:Hz]", 440, 20, 20000, 1);
midigain = nentry("gain", 0.5, 0, 1, 0.01);
waveTravel = hslider("waveTravel[BELA: ANALOG_0]",0,0,1,0.01);
pitchwheel = hslider("bend [midi:pitchwheel]",1,0.001,10,0.01);
gFreq = midifreq * pitchwheel;
lfoDe... |
1484a867ae6ccb43b580d12ade65f11fd83be63bf04313dee3734daa5a58afca | tonal-glyph/faustus | flanger.dsp | // Created from flange.dsp 2015/06/21
import("stdfaust.lib");
import("layout2.dsp");
flanger_mono(dmax,curdel,depth,fb,invert,lfoshape)
= _ <: _, (-:de.fdelay(dmax,curdel)) ~ *(fb) : _,
*(select2(invert,depth,0-depth))
: + : *(1/(1+depth)); // ideal for dc and reinforced sinusoids (in-phase summed sig... | https://raw.githubusercontent.com/tonal-glyph/faustus/cc887b115aceaee202edbdb37ee0e4087bfb5a33/examples/SAM/effects/flanger.dsp | faust | Created from flange.dsp 2015/06/21
ideal for dc and reinforced sinusoids (in-phase summed signals)
Kill the groups to save vertical space:
~1 ms at 44.1 kHz = min delay |
import("stdfaust.lib");
import("layout2.dsp");
flanger_mono(dmax,curdel,depth,fb,invert,lfoshape)
= _ <: _, (-:de.fdelay(dmax,curdel)) ~ *(fb) : _,
*(select2(invert,depth,0-depth))
process = ba.bypass1(fbp,flanger_mono_gui);
meter_group(x) = flsg(x);
ctl_group(x) = flkg(x);
del_group(x) = flkg(x);
... |
7dd062317e9c78f008804bb296ac26e1190fe3269c2852c8b526f1bd30496622 | tonal-glyph/faustus | simpleFX.dsp | import("stdfaust.lib");
//
///////////////////////////////////////////////////////////////////////////////////////////////////
//
// Simple FX chaine build for a mono synthesizer.
// It controle general volume and pan.
// FX Chaine is:
// Drive
// Flanger
// Reverberation
//
/////////////////////////////////////////... | https://raw.githubusercontent.com/tonal-glyph/faustus/cc887b115aceaee202edbdb37ee0e4087bfb5a33/examples/bela/simpleFX.dsp | faust |
/////////////////////////////////////////////////////////////////////////////////////////////////
Simple FX chaine build for a mono synthesizer.
It controle general volume and pan.
FX Chaine is:
Drive
Flanger
Reverberation
/////////////////////////////////////////////////////////////////////////////////////... | import("stdfaust.lib");
drive = hslider ("drive[midi:ctrl 92]",0.3,0,1,0.001);
curdel = hslider ("flangDel[midi:ctrl 13]",4,0.001,10,0.001);
fb = hslider ("flangFeedback[midi:ctrl 94]",0.7,0,1,0.001);
fldw = hslider ("dryWetFlang[midi:ctrl 93]",0.5,0,1,0.001);
flanger = efx
with {
fldel = (curdel + (os.lf_triangl... |
ed79d37b0bac3a0f18c44173772d7f9c369d22f17a2647357bd337bb04dea146 | tonal-glyph/faustus | WaveSynth.dsp | import("stdfaust.lib");
///////////////////////////////////////////////////////////////////////////////////////////////////
//
// Simple demo of wavetable synthesis. A LFO modulate the interpolation between 4 tables.
// It's possible to add more tables step.
//
/////////////////////////////////////////////////////////... | https://raw.githubusercontent.com/tonal-glyph/faustus/cc887b115aceaee202edbdb37ee0e4087bfb5a33/examples/bela/WaveSynth.dsp | faust | /////////////////////////////////////////////////////////////////////////////////////////////////
Simple demo of wavetable synthesis. A LFO modulate the interpolation between 4 tables.
It's possible to add more tables step.
////////////////////////////////////////////////////////////////////////////////////////////... | import("stdfaust.lib");
midigate = button ("gate");
midifreq = nentry("freq[unit:Hz]", 440, 20, 20000, 1);
midigain = nentry("gain", 0.5, 0, 1, 0.01);
waveTravel = hslider("waveTravel [midi:ctrl ]",0,0,1,0.01);
pitchwheel = hslider("bend [midi:pitchwheel]",1,0.001,10,0.01);
gFreq = midifreq * pitchwheel;
lfoDepth ... |
da2f7bfb69ad975035f8135cd7c98684be8834cbaca9c127f69afd0e7d022be8 | tonal-glyph/faustus | frog.dsp | //################################### frog.dsp #####################################
// A simple smart phone abstract instrument than can be controlled using the touch
// screen and the accelerometers of the device.
//
// ## `SmartKeyboard` Use Strategy
//
// The idea here is to use the `SmartKeyboard` interface as an ... | https://raw.githubusercontent.com/tonal-glyph/faustus/cc887b115aceaee202edbdb37ee0e4087bfb5a33/examples/smartKeyboard/frog.dsp | faust | ################################### frog.dsp #####################################
A simple smart phone abstract instrument than can be controlled using the touch
screen and the accelerometers of the device.
## `SmartKeyboard` Use Strategy
The idea here is to use the `SmartKeyboard` interface as an X/Y control pa... |
declare name "frog";
import("stdfaust.lib");
declare interface "SmartKeyboard{
'Number of Keyboards':'1',
'Keyboard 0 - Number of Keys':'1',
'Keyboard 0 - Piano Keyboard':'0',
'Keyboard 0 - Static Mode':'1',
'Keyboard 0 - Send X':'1',
'Keyboard 0 - Send Y':'1'
}";
x = hslider("x",0,0,1,0.01);
y = hslider("y... |
91a750d46aaf1669029d0959fba254836e436a3095d20ca8f95f8de4b7cb5dce | tonal-glyph/faustus | simpleFX_Analog.dsp | import("stdfaust.lib");
//
///////////////////////////////////////////////////////////////////////////////////////////////////
//
// Simple FX chaine build for a mono synthesizer.
// It controle general volume and pan.
// FX Chaine is:
// Drive
// Flanger
// Reverberation
//
// This version use ANALOG IN to controle... | https://raw.githubusercontent.com/tonal-glyph/faustus/cc887b115aceaee202edbdb37ee0e4087bfb5a33/examples/bela/simpleFX_Analog.dsp | faust |
/////////////////////////////////////////////////////////////////////////////////////////////////
Simple FX chaine build for a mono synthesizer.
It controle general volume and pan.
FX Chaine is:
Drive
Flanger
Reverberation
This version use ANALOG IN to controle some of the parameters.
Other parameters con... | import("stdfaust.lib");
drive = hslider ("drive[BELA: ANALOG_4]",0.3,0,1,0.001);
curdel = hslider("flangDel[midi:ctrl 13]",4,0.001,10,0.001);
fb = hslider("flangFeedback[midi:ctrl 94]",0.7,0,1,0.001);
fldw = hslider("dryWetFlang[BELA: ANALOG_5]",0.5,0,1,0.001);
flanger = efx
with {
fldel = (curdel + (os.lf_t... |
2cfbf0390befc308c125b8943cc4b3be1525dd15a555f0d105584024fd47a343 | tonal-glyph/faustus | 16_channel_volume.dsp | //-----------------------------------------------
// MIDI controlled 16 channel volume control in db
//-----------------------------------------------
import("stdfaust.lib");
import("layout.dsp");
channel01 = v01(vslider("Volume-01 [midi:ctrl 1] [tooltip CC-1]", 0, -70, +4, 0.1) : ba.db2linear : si.smoo);
channel0... | https://raw.githubusercontent.com/tonal-glyph/faustus/cc887b115aceaee202edbdb37ee0e4087bfb5a33/examples/SAM/16_channel_volume/16_channel_volume.dsp | faust | -----------------------------------------------
MIDI controlled 16 channel volume control in db
----------------------------------------------- |
import("stdfaust.lib");
import("layout.dsp");
channel01 = v01(vslider("Volume-01 [midi:ctrl 1] [tooltip CC-1]", 0, -70, +4, 0.1) : ba.db2linear : si.smoo);
channel02 = v02(vslider("Volume-02 [midi:ctrl 2] [tooltip CC-2]", 0, -70, +4, 0.1) : ba.db2linear : si.smoo);
channel03 = v03(vslider("Volume-03 [midi:ctrl... |
a8bedcfc17eec147a52fad6ba38e07bb6926c09656335d717a73ff5ce602a095 | tonal-glyph/faustus | crossDelay2.dsp | import("stdfaust.lib");
///////////////////////////////////////////////////////////////////////////////////////////////////
//
// Stereo Delay with feedback and crossfeedback (L to R and R to L feedback).
// And pitch shifting on feedback.
// A pre-delay without feedback is added for a wider stereo effect.
//
// Desig... | https://raw.githubusercontent.com/tonal-glyph/faustus/cc887b115aceaee202edbdb37ee0e4087bfb5a33/examples/bela/crossDelay2.dsp | faust | /////////////////////////////////////////////////////////////////////////////////////////////////
Stereo Delay with feedback and crossfeedback (L to R and R to L feedback).
And pitch shifting on feedback.
A pre-delay without feedback is added for a wider stereo effect.
Designed to use the Analog Input for paramet... | import("stdfaust.lib");
preDelL = ba.sec2samp(hslider("delR[BELA: ANALOG_0]", 1,0,2,0.001)):si.smoo;
preDelR = ba.sec2samp(hslider("delR[BELA: ANALOG_1]", 1,0,2,0.001)):si.smoo;
delL = ba.sec2samp(hslider("delL[BELA: ANALOG_2]", 1,0,2,0.001)):si.smoo;
delR = ba.sec2samp(hslider("delR[BELA: ANALOG_3]", 1,0,2,0.001)):s... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.