_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 |
|---|---|---|---|---|---|---|---|
01c08298d416e641eb915fc5d191998816e9d3450bc896fdf8e64033b51feae5 | theyoogle/Faust-DSP | 04 Composition Operations.dsp | // Audio circuits composing to build more complex ones
// Wiring/soldering operations
// Composition Operations
// Split (priority 1)
A <: B
// Merge (priority 1)
A :> B
// Sequencial (priority 2)
A : B
// Parallel (priority 3)
A , B
// Recursion (priority 4)
A ~ B | https://raw.githubusercontent.com/theyoogle/Faust-DSP/373f0b309ad84906043b0b53e02129cd9ce45d59/session%2002/01%20Basic%20Primitives/04%20Composition%20Operations.dsp | faust | Audio circuits composing to build more complex ones
Wiring/soldering operations
Composition Operations
Split (priority 1)
Merge (priority 1)
Sequencial (priority 2)
Parallel (priority 3)
Recursion (priority 4) |
A <: B
A :> B
A : B
A , B
A ~ B |
eb871ab9522b887656f10596bb34cfcb19324ed0cb643b12ed42babc21295387 | theyoogle/Faust-DSP | 07 Trigonometric Functions.dsp | // Trigonometric Functions
Arc cosine acos y(t) = acos(x(t))
Arc sine asin y(t) = asin(x(t))
Arc tangent atan y(t) = atan(x(t))
Arc tangent of 2 signals atan2 y(t) = atan2(x0(t), x1(t))
Cosine cos y(t) = cos(x(t))... | https://raw.githubusercontent.com/theyoogle/Faust-DSP/373f0b309ad84906043b0b53e02129cd9ce45d59/session%2002/02%20Additional%20Primitives/07%20Trigonometric%20Functions.dsp | faust | Trigonometric Functions |
Arc cosine acos y(t) = acos(x(t))
Arc sine asin y(t) = asin(x(t))
Arc tangent atan y(t) = atan(x(t))
Arc tangent of 2 signals atan2 y(t) = atan2(x0(t), x1(t))
Cosine cos y(t) = cos(x(t))
Sine ... |
ed412e5dfaec7c173557ce5fdd5a007806c98a083e4a5fe61591033bb95a72a7 | theyoogle/Faust-DSP | 06 Bitwise Operators.dsp | // Bitwise Operators
// Bitwise AND
process = &;
// x0(t) -> |-----|
// | & | -> y(t)
// x1(t) -> |-----|
// Semantics
// y(t) = x0(t) & x1(t)
//=============================================
// Bitwise OR
process = |;
// x0(t) -> |-----|
// | | | -> y(t)
// x1(t) -> |-----|
// Semantics
// y(... | https://raw.githubusercontent.com/theyoogle/Faust-DSP/373f0b309ad84906043b0b53e02129cd9ce45d59/session%2002/02%20Additional%20Primitives/06%20Bitwise%20Operators.dsp | faust | Bitwise Operators
Bitwise AND
x0(t) -> |-----|
| & | -> y(t)
x1(t) -> |-----|
Semantics
y(t) = x0(t) & x1(t)
=============================================
Bitwise OR
x0(t) -> |-----|
| | | -> y(t)
x1(t) -> |-----|
Semantics
y(t) = x0(t) | x1(t)
========================================... |
process = &;
process = |;
process = xor;
process = <<;
process = >>;
|
e71e559f525a98f8eddfe3c5b6d381268195d249155e7ed6bcd0174c45011ef0 | theyoogle/Faust-DSP | 06 Cut Primitive.dsp | // Cut Primitive
process = !;
// _____
// | |
// x(t) -> |--| |
// |_____|
// Semantics
// x(t) ignored
process = !,_;
// _____
// | |
// x0(t) -> |--| |
// |_____|
// _____
// | |
// x1(t) -> |-----| -> y(t)
// |_____|... | https://raw.githubusercontent.com/theyoogle/Faust-DSP/373f0b309ad84906043b0b53e02129cd9ce45d59/session%2002/01%20Basic%20Primitives/06%20Cut%20Primitive.dsp | faust | Cut Primitive
_____
| |
x(t) -> |--| |
|_____|
Semantics
x(t) ignored
_____
| |
x0(t) -> |--| |
|_____|
_____
| |
x1(t) -> |-----| -> y(t)
|_____|
Semantics
y(t) = x1(t)
x0(t) ignored |
process = !;
process = !,_;
|
a4a6ad5a8145c0dd7643820a72f2119a74509166060466d22a1e5488b585a60a | theyoogle/Faust-DSP | 15 Casting Functions.dsp | // Casting Functions
int y(t) = int(x(t))
float y(t) = float(x(t)) | https://raw.githubusercontent.com/theyoogle/Faust-DSP/373f0b309ad84906043b0b53e02129cd9ce45d59/session%2002/02%20Additional%20Primitives/15%20Casting%20Functions.dsp | faust | Casting Functions |
int y(t) = int(x(t))
float y(t) = float(x(t)) |
0faaa198d7dbd9cc3a8d0d20f2084c084385b0c5bdc54bea70b8dce8be877b9e | theyoogle/Faust-DSP | 01 Delay Functions.dsp | // Delay Functions
// Note: faust signal samples will always be zero before t<0
//=============================================
// Output signal will be delayed by 1 sample
mem 1-sample delay y(t) = x(t-1)
// |-----|
// x(t) -> | mem | -> y(t) y(t) = x(t-1)
// |-----|
x(t)... | https://raw.githubusercontent.com/theyoogle/Faust-DSP/373f0b309ad84906043b0b53e02129cd9ce45d59/session%2002/03%20Delays%20and%20Tables/01%20Delay%20Functions.dsp | faust | Delay Functions
Note: faust signal samples will always be zero before t<0
=============================================
Output signal will be delayed by 1 sample
|-----|
x(t) -> | mem | -> y(t) y(t) = x(t-1)
|-----|
=============================================
x(t) -> |-----|
|... |
mem 1-sample delay y(t) = x(t-1)
x(t) = 1,2,3,4,5,1,2,3,4,5,...
y(t) = 0,1,2,3,4,5,1,2,3,4,...
@ n-samples delay y(t) = x(t - d(t))
x(t) = 1,2,3,4,5,1,2,3,4,5,...
t = 0,1,2,3,4,5,6,7,8,9,...
d(t) = 0,1,2,0,1,2,0,1,2,0,...
t-d(t) = 0,0,0,3,3,3,6,6,6,9,...
... |
dd344848446ced1a058c0746f28199d4842e0cff0cb65a8036b6a72134ad9de3 | theyoogle/Faust-DSP | 01 Primitives.dsp | // Primitives (Register, Transistors etc)
// 60 Primitives predefined
// Addition
process = +;
// x0(t) -> |-----|
// | + | -> y(t)
// x1(t) -> |-----|
// Semantics
// y(t) = x0(t) + x1(t)
//=============================================
// Absolute
process = abs;
// |-----|
// x(t) -> | abs | -> ... | https://raw.githubusercontent.com/theyoogle/Faust-DSP/373f0b309ad84906043b0b53e02129cd9ce45d59/session%2002/01%20Basic%20Primitives/01%20Primitives.dsp | faust | Primitives (Register, Transistors etc)
60 Primitives predefined
Addition
x0(t) -> |-----|
| + | -> y(t)
x1(t) -> |-----|
Semantics
y(t) = x0(t) + x1(t)
=============================================
Absolute
|-----|
x(t) -> | abs | -> y(t)
|-----|
Semantics
y(t) = |x(t)|
========... |
process = +;
process = abs;
process = sin;
|
0b022378ec72713c2277e3bda3cebc31d86c3226457331e1a7370c3eef0a3b47 | theyoogle/Faust-DSP | 02 Simple Volume Control.dsp | // Simple Volume Control
process = _, vslider("level", 0, 0, 1, 0.01) : *;
// _____
// | | |-----|
// x(t) ->|-----| --->| |
// |_____| | |
// | * | -> y(t)
// |-------| | |
// |hslider| --->| |
// |-------| |-----|
// Sema... | https://raw.githubusercontent.com/theyoogle/Faust-DSP/373f0b309ad84906043b0b53e02129cd9ce45d59/session%2002/02%20Additional%20Primitives/02%20Simple%20Volume%20Control.dsp | faust | Simple Volume Control
_____
| | |-----|
x(t) ->|-----| --->| |
|_____| | |
| * | -> y(t)
|-------| | |
|hslider| --->| |
|-------| |-----|
Semantics
y(t) = x(t) * hslider
===========================================... |
process = _, vslider("level", 0, 0, 1, 0.01) : *;
process = _, (vslider("level", 0, 0, 100, 0.01), 100 : /) : *;
process = _, vslider("level", 0, 0, 100, 0.01)/100 : *;
process = _ * vslider("level", 0, 0, 100, 0.01)/100; |
7458635a220d6be3320fd790e7dc727c372b7050f48f90246077dce2774a1aea | theyoogle/Faust-DSP | 03 Wire Primitive.dsp | // Wire Premitive
// Identity - Output is same as Input
// No modification to input signal
process = _;
// _____
// | |
// x(t) -> |-----| -> y(t)
// |_____|
// Semantics
// y(t) = x(t) | https://raw.githubusercontent.com/theyoogle/Faust-DSP/373f0b309ad84906043b0b53e02129cd9ce45d59/session%2002/01%20Basic%20Primitives/03%20Wire%20Primitive.dsp | faust | Wire Premitive
Identity - Output is same as Input
No modification to input signal
_____
| |
x(t) -> |-----| -> y(t)
|_____|
Semantics
y(t) = x(t) |
process = _;
|
81fe41d27aa46a09cc58434e244c015440bbde7ce83f49646b1fbfcadb101be3 | theyoogle/Faust-DSP | 04 Read Only Table.dsp | // Read only table
x0,x1,x2 : rdtable : y;
// x0(t) -> |---------|
// | |
// x1(t) -> | rdtable | -> y(t)
// | |
// x2(t) -> |---------|
x0(t) - size of table (constant signal)
x1(t) - initial content of table
x2(t) - read index of table | https://raw.githubusercontent.com/theyoogle/Faust-DSP/373f0b309ad84906043b0b53e02129cd9ce45d59/session%2002/03%20Delays%20and%20Tables/04%20Read%20Only%20Table.dsp | faust | Read only table
x0(t) -> |---------|
| |
x1(t) -> | rdtable | -> y(t)
| |
x2(t) -> |---------| |
x0,x1,x2 : rdtable : y;
x0(t) - size of table (constant signal)
x1(t) - initial content of table
x2(t) - read index of table |
3e7399f597846d94da48a8c41a10d409aae8ec39f646f1dfc132a6f69ef26f35 | elk-community/faust-plugins | glassHarmonica.dsp | declare name "glassHarmonica";
declare description "Nonlinear Banded Waveguide Modeled Glass Harmonica";
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 "T... | https://raw.githubusercontent.com/elk-community/faust-plugins/79096404d4b4334dba512a3e3a8104afefb9db8d/faust-stk/glassHarmonica.dsp | faust | Synthesis Tool Kit 4.3 (MIT style license);
==================== GUI SPECIFICATION ================
==================== MODAL PARAMETERS ================
==================== SIGNAL PROCESSING ================
----------------------- Nonlinear filter ----------------------------
nonlinearities are created by the nonl... | declare name "glassHarmonica";
declare description "Nonlinear Banded Waveguide Modeled Glass Harmonica";
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. a... |
4d903cba5374c2c7fa08c42f0f2ed90c71ab1bc8342cf8aafa3e2ab9ade95dbb | elk-community/faust-plugins | blowBottle.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/elk-community/faust-plugins/79096404d4b4334dba512a3e3a8104afefb9db8d/faust-stk/blowBottle.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 miscfil... | 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 Cook).... |
356af414c08d4a1078b196b243086c123bdc9e5bd3c255f26597fa8f3b8342f3 | elk-community/faust-plugins | 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/elk-community/faust-plugins/79096404d4b4334dba512a3e3a8104afefb9db8d/faust-stk/flute.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 miscfil... | 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 algorithm: https://ccrma.stanford.edu/~jos/pasp/Flutes_Recorders_Pipe_Organs.ht... |
62dff17f145c8c1a6960347a4c3fafa02e847b907146ae02225d2095adec7203 | elk-community/faust-plugins | tibetanBowl.dsp | declare name "tibetanBowl";
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 us... | https://raw.githubusercontent.com/elk-community/faust-plugins/79096404d4b4334dba512a3e3a8104afefb9db8d/faust-stk/tibetanBowl.dsp | faust | Synthesis Tool Kit 4.3 (MIT style license);
==================== GUI SPECIFICATION ================
==================== MODAL PARAMETERS ================
==================== SIGNAL PROCESSING ================
----------------------- Nonlinear filter ----------------------------
nonlinearities are created by the nonl... | declare name "tibetanBowl";
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. Bande... |
376e36c75ed9f870692bebfc4052128741717b12c775d8984ea487cb41e2dc00 | elk-community/faust-plugins | modalBar.dsp | declare name "modalBar";
declare description "Nonlinear Modal percussive instruments";
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 number of differe... | https://raw.githubusercontent.com/elk-community/faust-plugins/79096404d4b4334dba512a3e3a8104afefb9db8d/faust-stk/modalBar.dsp | faust | Synthesis Tool Kit 4.3 (MIT style license);
========================= WAVE TABLES ===============================
----------------------- STICK IMPACT ----------------------------
Stick impact table.
USAGE:
index : readMarmstk1 : _
==================== GUI SPECIFICATION ================
==================== SIGN... | declare name "modalBar";
declare description "Nonlinear Modal percussive instruments";
declare author "Romain Michon (rmichon@ccrma.stanford.edu)";
declare copyright "Romain Michon";
declare version "1.0";
declare description "A number of different struck bar instruments. Presets numbers: 0->Marimba, 1->Vibraphone, 2->... |
bdde0d96f0ef1b37ffb14c569d359d6491c5319cf6ce2f30b07af41958bb0713 | elk-community/faust-plugins | NLFeks.dsp | declare name "NLFeks";
declare author "Julius Smith and Romain Michon";
declare version "1.0";
declare license "STK-4.3";
declare copyright "Julius Smith";
declare reference "http://ccrma.stanford.edu/~jos/pasp/vegf.html";
// -> Virtual\_Electric\_Guitars\_Faust.html";
import("instruments.lib");
//===================... | https://raw.githubusercontent.com/elk-community/faust-plugins/79096404d4b4334dba512a3e3a8104afefb9db8d/faust-stk/NLFeks.dsp | faust | -> Virtual\_Electric\_Guitars\_Faust.html";
==================== GUI SPECIFICATION ================
standard MIDI voice parameters:
NOTE: The labels MUST be "freq", "gain", and "gate" for faust2pd
Hz
0 to 1
0 or 1
Additional parameters (MIDI "controllers"):
Pick angle in [0,0.9]:
Normalized pick-position in [0... | declare name "NLFeks";
declare author "Julius Smith and Romain Michon";
declare version "1.0";
declare license "STK-4.3";
declare copyright "Julius Smith";
declare reference "http://ccrma.stanford.edu/~jos/pasp/vegf.html";
import("instruments.lib");
pickangle = 0.9 * hslider("pick_angle",0,0,0.9,0.1);
beta = hsli... |
4931b4828811082a013ce38ea297a3e3cfa82c669cfd4fe1e2dbea4e76445c1e | elk-community/faust-plugins | uniBar.dsp | declare name "UniBar";
declare description "Nonlinear Banded Waveguide Models";
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 bande... | https://raw.githubusercontent.com/elk-community/faust-plugins/79096404d4b4334dba512a3e3a8104afefb9db8d/faust-stk/uniBar.dsp | faust | Synthesis Tool Kit 4.3 (MIT style license);
==================== GUI SPECIFICATION ================
==================== MODAL PARAMETERS ================
==================== SIGNAL PROCESSING ================
----------------------- Synthesis parameters computing and functions declaration ---------------------------... | declare name "UniBar";
declare description "Nonlinear Banded Waveguide Models";
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 Wavegu... |
53330798eaa84212aa2612e0d14ca72b2e9364f987f2d46b4ee636112be7e527 | elk-community/faust-plugins | saxophony.dsp | declare name "saxophony";
declare description "Nonlinear WaveGuide Saxophone";
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 class implements a hyb... | https://raw.githubusercontent.com/elk-community/faust-plugins/79096404d4b4334dba512a3e3a8104afefb9db8d/faust-stk/saxophony.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 miscfil... | declare name "saxophony";
declare description "Nonlinear WaveGuide Saxophone";
declare author "Romain Michon";
declare copyright "Romain Michon (rmichon@ccrma.stanford.edu)";
declare version "1.0";
declare description "This class implements a hybrid digital waveguide instrument that can generate a variety of wind-like ... |
c1932ab74deb0c0ff97c1daadfda23dea43c167d894a9a60d0f2e29327c964b6 | elk-community/faust-plugins | bowed.dsp | declare name "bowed";
declare description "Nonlinear WaveGuide Bowed Instrument";
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 bowed string model, a ... | https://raw.githubusercontent.com/elk-community/faust-plugins/79096404d4b4334dba512a3e3a8104afefb9db8d/faust-stk/bowed.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 miscfil... | declare name "bowed";
declare description "Nonlinear WaveGuide Bowed Instrument";
declare author "Romain Michon";
declare copyright "Romain Michon (rmichon@ccrma.stanford.edu)";
declare version "1.0";
declare description "A bowed string model, a la Smith (1986), after McIntyre, Schumacher, Woodhouse (1983).";
declare r... |
ff87eecdbbf873d9081905bacda23beac1421a7d8dd5002a16a0b8d908d7a196 | elk-community/faust-plugins | fluteStk.dsp | declare name "fluteStk";
declare description "Nonlinear WaveGuide Flute from STK";
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 flute physical... | https://raw.githubusercontent.com/elk-community/faust-plugins/79096404d4b4334dba512a3e3a8104afefb9db8d/faust-stk/fluteStk.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 miscfil... | declare name "fluteStk";
declare description "Nonlinear WaveGuide Flute from STK";
declare author "Romain Michon";
declare copyright "Romain Michon (rmichon@ccrma.stanford.edu)";
declare version "1.0";
declare description "A simple flute physical model, as discussed by Karjalainen, Smith, Waryznyk, etc. The jet model ... |
5b8b114b49d14e933ca9905c7e2039b3751170ad7c62b7335eedaa769076f3df | elk-community/faust-plugins | voiceForm.dsp | declare name "voiceForm";
declare description "Voice Formant 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 instrument contains an exci... | https://raw.githubusercontent.com/elk-community/faust-plugins/79096404d4b4334dba512a3e3a8104afefb9db8d/faust-stk/voiceForm.dsp | faust | Synthesis Tool Kit 4.3 (MIT style license);
==================== GUI SPECIFICATION ================
==================== SIGNAL PROCESSING ================
----------------------- Synthesis parameters computing and functions declaration ----------------------------
stereoizer is declared in instruments.lib and impleme... | declare name "voiceForm";
declare description "Voice Formant Instrument";
declare author "Romain Michon (rmichon@ccrma.stanford.edu)";
declare copyright "Romain Michon";
declare version "1.0";
declare description "This instrument contains an excitation singing wavetable (looping wave with random and periodic vibrato, s... |
39e1182d94a8bb293572f95a4a0151f8d342b9645b9efa5cd1a95b55ca5575fd | elk-community/faust-plugins | NLFfm.dsp | declare name "NLFfm";
declare description "FM synthesizer implemented with a nonlinear passive allpass filter";
declare author "Romain Michon";
declare copyright "Romain Michon (rmichon@ccrma.stanford.edu)";
declare version "1.0";
import("instruments.lib");
//==================== GUI SPECIFICATION ================
f... | https://raw.githubusercontent.com/elk-community/faust-plugins/79096404d4b4334dba512a3e3a8104afefb9db8d/faust-stk/NLFfm.dsp | faust | ==================== GUI SPECIFICATION ================
----------------------- Nonlinear filter ----------------------------
nonlinearities are created by the nonlinear passive allpass ladder filter declared in miscfilter.lib
nonlinear filter order
attack - sustain - release envelope for nonlinearity (declared in inst... | declare name "NLFfm";
declare description "FM synthesizer implemented with a nonlinear passive allpass filter";
declare author "Romain Michon";
declare copyright "Romain Michon (rmichon@ccrma.stanford.edu)";
declare version "1.0";
import("instruments.lib");
freq = nentry("h:Basic_Parameters/freq [1][unit:Hz] [toolti... |
df8780e8de9db159e8238fe498efbf6a1ab8501ac6d9d873a30ee779d50f79f1 | elk-community/faust-plugins | harpsi.dsp | declare name "harpsi";
declare description "Nonlinear WaveGuide Commuted Harpsichord";
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 commuted WaveGuid... | https://raw.githubusercontent.com/elk-community/faust-plugins/79096404d4b4334dba512a3e3a8104afefb9db8d/faust-stk/harpsi.dsp | faust | Synthesis Tool Kit 4.3 (MIT style license);
==================== GUI SPECIFICATION ================
==================== PROCESSING ================
----------------------- Nonlinear filter ----------------------------
nonlinearities are created by the nonlinear passive allpass ladder filter declared in miscfilter.lib... | declare name "harpsi";
declare description "Nonlinear WaveGuide Commuted Harpsichord";
declare author "Romain Michon (rmichon@ccrma.stanford.edu)";
declare copyright "Romain Michon";
declare version "1.0";
declare description "A commuted WaveGuide Harpsichord.";
import("instruments.lib");
freq = nentry("h:Basic_Par... |
e7b7a56a71c74d61e649cdb26505e04baef3f22bcebde735ccb6726f64311336 | elk-community/faust-plugins | 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/elk-community/faust-plugins/79096404d4b4334dba512a3e3a8104afefb9db8d/faust-stk/clarinet.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 m... | 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),... |
5edec547bd96aa5efb13282f91802bb00a41bf3ce8e06b9808434f8855964a14 | elk-community/faust-plugins | 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/elk-community/faust-plugins/79096404d4b4334dba512a3e3a8104afefb9db8d/faust-stk/brass.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 miscfil... | 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... |
c08a3f72ee086420e0e1b8276022970c8b85b27645f1cd5a5079124b15ae7b9b | elk-community/faust-plugins | piano.dsp | declare name "piano";
declare description "WaveGuide Commuted Piano";
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 commuted WaveGuide piano.";
impo... | https://raw.githubusercontent.com/elk-community/faust-plugins/79096404d4b4334dba512a3e3a8104afefb9db8d/faust-stk/piano.dsp | faust | Synthesis Tool Kit 4.3 (MIT style license);
==================== GUI SPECIFICATION ================
==================== COMMUTED PIANO PARAMETERS ================
variables to set keybord splitting zone
convert an amplitude in db
convert a frequency in a midi note number
a counter that restart a every note-on
=======... | declare name "piano";
declare description "WaveGuide Commuted Piano";
declare author "Romain Michon (rmichon@ccrma.stanford.edu)";
declare copyright "Romain Michon";
declare version "1.0";
declare description "A commuted WaveGuide piano.";
import("instruments.lib");
freq = nentry("h:Basic_Parameters/freq [1][unit:H... |
44f95b29973d09e36a1770879dacfdc2330d2bd8f505eb39d0821fe9adb846df | elk-community/faust-plugins | bass.dsp | declare name "Bass";
declare description "Nonlinear WaveGuide Acoustic Bass";
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);
import("instruments.lib");
//==================... | https://raw.githubusercontent.com/elk-community/faust-plugins/79096404d4b4334dba512a3e3a8104afefb9db8d/faust-stk/bass.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 m... | declare name "Bass";
declare description "Nonlinear WaveGuide Acoustic Bass";
declare author "Romain Michon";
declare copyright "Romain Michon (rmichon@ccrma.stanford.edu)";
declare version "1.0";
import("instruments.lib");
freq = nentry("h:Basic_Parameters/freq [1][unit:Hz] [tooltip:Tone frequency]",120,20,20000,1)... |
2f19c2e6a2036b27a0a6be39c5d326f767e8c8d93cdcf04f184dc7c74fdddd24 | elk-community/faust-plugins | tunedBar.dsp | declare name "tunedBar";
declare description "Nonlinear Banded Waveguide Models";
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 ban... | https://raw.githubusercontent.com/elk-community/faust-plugins/79096404d4b4334dba512a3e3a8104afefb9db8d/faust-stk/tunedBar.dsp | faust | Synthesis Tool Kit 4.3 (MIT style license);
==================== GUI SPECIFICATION ================
==================== MODAL PARAMETERS ================
==================== SIGNAL PROCESSING ================
----------------------- Nonlinear filter ----------------------------
nonlinearities are created by the nonl... | declare name "tunedBar";
declare description "Nonlinear Banded Waveguide Models";
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 Wave... |
ea2473dc811195ddbc88a56cf6dcd677032225a8cd01a5bad2a2dce5cf841662 | elk-community/faust-plugins | sitar.dsp | declare name "Sitar";
declare description "WaveGuide Sitar";
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 instrument implements a sitar plucked st... | https://raw.githubusercontent.com/elk-community/faust-plugins/79096404d4b4334dba512a3e3a8104afefb9db8d/faust-stk/sitar.dsp | faust | Synthesis Tool Kit 4.3 (MIT style license);
==================== GUI SPECIFICATION ================
==================== SIGNAL PROCESSING ================
stereoizer is declared in instruments.lib and implement a stereo spacialisation in function of
the frequency period in number of samples
excitation envelope (ads... | declare name "Sitar";
declare description "WaveGuide Sitar";
declare author "Romain Michon (rmichon@ccrma.stanford.edu)";
declare copyright "Romain Michon";
declare version "1.0";
declare description "This instrument implements a sitar plucked string physical model based on the Karplus-Strong algorithm using a randomly... |
4d28c41ffed2727bd8d0aa45d8dddb1985ecd7eeef3091760309798c4c7a67e3 | LucaSpanedda/Musical_Studies_of_Dynamical_and_Complex_Systems | LCG.dsp | // pseudo-random noise with linear congruential generator (LCG)
noise(initSeed) = LCG ~ _ : (_ / m)
with{
// variables
// initSeed = an initial seed value
a = 18446744073709551557; // a large prime number, such as 18446744073709551557
c = 12345; // a small prime number, such as 12345
m = 2 ... | https://raw.githubusercontent.com/LucaSpanedda/Musical_Studies_of_Dynamical_and_Complex_Systems/f410256d3fef6d50f560e273aa4682153d4ffa1b/LCG.dsp | faust | pseudo-random noise with linear congruential generator (LCG)
variables
initSeed = an initial seed value
a large prime number, such as 18446744073709551557
a small prime number, such as 12345
2.1 billion
linear_congruential_generator
In a linear congruential generator (LCG),
the seed value is an intege... |
noise(initSeed) = LCG ~ _ : (_ / m)
with{
LCG(seed) = ((a * seed + c) + (initSeed-initSeed') % m);
};
process = par(i, 10, noise( (i+1) * 469762049 ) ); |
b8f7953b7c30e1907e66a39f0db3dcd44031218de36556f4630bebadf62fa08f | s-e-a-m/faust-libraries | VCS3.dsp | import("seam.lib");
process = svc.vcs3osc1(svc.freq1,svc.shape1,svc.samp1,svc.pamp1),
svc.vcs3osc2(svc.freq2,svc.shape2,svc.sqamp2,svc.tramp2),
svc.vcs3osc3(svc.freq3,svc.shape3,svc.sqamp3,svc.tramp3);
| https://raw.githubusercontent.com/s-e-a-m/faust-libraries/8410e0e15fceb3f2fd15f606539c0c149d266b09/examples/VCS3.dsp | faust | import("seam.lib");
process = svc.vcs3osc1(svc.freq1,svc.shape1,svc.samp1,svc.pamp1),
svc.vcs3osc2(svc.freq2,svc.shape2,svc.sqamp2,svc.tramp2),
svc.vcs3osc3(svc.freq3,svc.shape3,svc.sqamp3,svc.tramp3);
| |
a671ba37a1d8f3e2208ce56e6626746e70c9fd28a78ba1c2188f3ab7c024c10b | s-e-a-m/faust-libraries | nextprimeverb.dsp | import("../../seam.lib");
// ------ comb
dflc(t, g) = (+ : de.delay(ma.SR, int(t-1)))~*(max(0, min(0.999, g))) : mem;
// ------ allpass
alp(t, g) = _<:(_*(ma.neg(max(0.5, min(0.9, g)))))+(dflc(t, g)*(1-(g*g)));
t = hslider("Largest T",2,2,24000,1);
fbk = hslider("FeedBack", 0.708, 0, 0.99, 0.01) : si.smoo;
np = ffunc... | https://raw.githubusercontent.com/s-e-a-m/faust-libraries/43a6eca55e14fd9f8fbadcfffef21960f8a9c872/examples/cfunctions/nextprimeverb.dsp | faust | ------ comb
------ allpass | import("../../seam.lib");
dflc(t, g) = (+ : de.delay(ma.SR, int(t-1)))~*(max(0, min(0.999, g))) : mem;
alp(t, g) = _<:(_*(ma.neg(max(0.5, min(0.9, g)))))+(dflc(t, g)*(1-(g*g)));
t = hslider("Largest T",2,2,24000,1);
fbk = hslider("FeedBack", 0.708, 0, 0.99, 0.01) : si.smoo;
np = ffunction(int next_pr(int), "nextprime... |
4f685235c9882fa440b581423de8efa3c0241c0760cde79e3a1e6812967baead | s-e-a-m/faust-libraries | example.dsp | import("../seam.lib");
process = ma.PI*2, sma.twopi;
| https://raw.githubusercontent.com/s-e-a-m/faust-libraries/7b72b51656b4b1163a65578753e824428b2fcdc1/examples/example.dsp | faust | import("../seam.lib");
process = ma.PI*2, sma.twopi;
| |
82f0510a3f77036812e6979315f8d19283e342dd0bcfbfa7c3982ecaa2a78534 | s-e-a-m/faust-libraries | bfmt2uhj.dsp | declare name "MICHAEL GERZON BFORMAT TO UHJ ENCODER";
declare version "001";
declare author "Giuseppe Silvi";
declare license "GNU-GPL-v3";
declare copyright "(c)SEAM 2019";
declare description "MICHAEL GERZON BFORMAT TO UHJ ENCODER";
import("../../seam.lib");
process = bfmt2uhj;
| https://raw.githubusercontent.com/s-e-a-m/faust-libraries/9120cccb9335f42407062eb4bf149188d8018b07/examples/vst/bfmt2uhj.dsp | faust | declare name "MICHAEL GERZON BFORMAT TO UHJ ENCODER";
declare version "001";
declare author "Giuseppe Silvi";
declare license "GNU-GPL-v3";
declare copyright "(c)SEAM 2019";
declare description "MICHAEL GERZON BFORMAT TO UHJ ENCODER";
import("../../seam.lib");
process = bfmt2uhj;
| |
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 | s-e-a-m/faust-libraries | webphaser.dsp | https://raw.githubusercontent.com/s-e-a-m/faust-libraries/9120cccb9335f42407062eb4bf149188d8018b07/examples/nono/webphaser.dsp | faust | |||
6aeaf68c12f75ff1f8552a632a26908470bf4db37e3081ddbbfcfb0426158acd | s-e-a-m/faust-libraries | bs1770.dsp | declare name "BS1770 METERING";
declare version "001";
declare author "Giuseppe Silvi";
declare license "GNU-GPL-v3";
declare copyright "(c)SEAM 2019";
declare description "BS1770 METERING";
import("../seam.lib");
// signal = no.noise;
//
// process = signal <: abs(_), RMS(1000), bs1770 : hbargraph("peak", 0, 1), hba... | https://raw.githubusercontent.com/s-e-a-m/faust-libraries/9120cccb9335f42407062eb4bf149188d8018b07/examples/bs1770.dsp | faust | signal = no.noise;
process = signal <: abs(_), RMS(1000), bs1770 : hbargraph("peak", 0, 1), hbargraph("RMS", 0, 1), hbargraph("BS1770", 0, 1); | declare name "BS1770 METERING";
declare version "001";
declare author "Giuseppe Silvi";
declare license "GNU-GPL-v3";
declare copyright "(c)SEAM 2019";
declare description "BS1770 METERING";
import("../seam.lib");
process = sba.gsweep(23,23);
|
da6a01d84a4288fec03ced3d94bae7dc476dbd82784afc55ae092fd6cc4df2c7 | jcelerier/guitarixlib | AntiAlias.dsp | import("guitarix.lib");
faas1 = vgroup("anti_aliase", vslider("feedback[name:Feedback]", 0.3, 0.3, 0.9, 0.01));
process = add_dc : +~_''*faas1;
| https://raw.githubusercontent.com/jcelerier/guitarixlib/9c2947507cd13b82554020e669a85244e867d584/guitarix/AntiAlias.dsp | faust | import("guitarix.lib");
faas1 = vgroup("anti_aliase", vslider("feedback[name:Feedback]", 0.3, 0.3, 0.9, 0.01));
process = add_dc : +~_''*faas1;
| |
4f8dd3105beba9606ca300e393905ddc74d93806ea9880d469bcc526c9544f58 | jcelerier/guitarixlib | tonestack_fender_deville.dsp | declare id "Deville"; // in tonestack ba.selector
declare name "Deville Style";
tstack = component("tonestack.dsp");
process = tstack[tse=tstack.ts.fender_deville;];
| https://raw.githubusercontent.com/jcelerier/guitarixlib/9c2947507cd13b82554020e669a85244e867d584/guitarix/tonestack_fender_deville.dsp | faust | in tonestack ba.selector | declare name "Deville Style";
tstack = component("tonestack.dsp");
process = tstack[tse=tstack.ts.fender_deville;];
|
a5191039b192d62a705e88c738938f1854e00a904b4d441c99a03a51fecd79f9 | jcelerier/guitarixlib | tonestack_default.dsp | declare id "default"; // in tonestack ba.selector
declare name "default";
tstack = component("tonestack.dsp");
tone_controll = component("tone.dsp").tone(((tstack.l-0.5)*20),((tstack.m-0.5)*10),((tstack.t-0.5)*20));
process = tone_controll;
| https://raw.githubusercontent.com/jcelerier/guitarixlib/9c2947507cd13b82554020e669a85244e867d584/guitarix/tonestack_default.dsp | faust | in tonestack ba.selector | declare name "default";
tstack = component("tonestack.dsp");
tone_controll = component("tone.dsp").tone(((tstack.l-0.5)*20),((tstack.m-0.5)*10),((tstack.t-0.5)*20));
process = tone_controll;
|
b1a7154ba92a55f35720e00d27c7b1fbe1234fe0c4fbb198daffd321a6b05650 | jcelerier/guitarixlib | tonestack_jcm800.dsp | declare id "JCM-800"; // in tonestack ba.selector
declare name "JCM-800 Style";
tstack = component("tonestack.dsp");
process = tstack[tse=tstack.ts.jcm800;];
| https://raw.githubusercontent.com/jcelerier/guitarixlib/9c2947507cd13b82554020e669a85244e867d584/guitarix/tonestack_jcm800.dsp | faust | in tonestack ba.selector | declare name "JCM-800 Style";
tstack = component("tonestack.dsp");
process = tstack[tse=tstack.ts.jcm800;];
|
807d511bed6a1014ab224bb7510c3153a9f2c11827cfc7216994e6dca160369f | jcelerier/guitarixlib | tonestack_bassman.dsp | declare id "Bassman"; // in tonestack ba.selector
declare name "Bassman Style";
tstack = component("tonestack.dsp");
process = tstack[tse=tstack.ts.bassman;];
| https://raw.githubusercontent.com/jcelerier/guitarixlib/9c2947507cd13b82554020e669a85244e867d584/guitarix/tonestack_bassman.dsp | faust | in tonestack ba.selector | declare name "Bassman Style";
tstack = component("tonestack.dsp");
process = tstack[tse=tstack.ts.bassman;];
|
2f58b2355013ac2d9d260c73134c1208c1f8b3eccf9fe0ee62bd5e75b2d0dda4 | jcelerier/guitarixlib | tonestack_ac30.dsp | declare id "AC-30"; // in tonestack ba.selector
declare name "AC-30 Style";
tstack = component("tonestack.dsp");
process = tstack[tse=tstack.ts.ac30;];
| https://raw.githubusercontent.com/jcelerier/guitarixlib/9c2947507cd13b82554020e669a85244e867d584/guitarix/tonestack_ac30.dsp | faust | in tonestack ba.selector | declare name "AC-30 Style";
tstack = component("tonestack.dsp");
process = tstack[tse=tstack.ts.ac30;];
|
09cbb4543f022fe692a7b8057561c20d0495444dabf46c1c4280ded44da20056 | jcelerier/guitarixlib | HighShelf.dsp | declare id "HighShelf";
import("maxmsp.lib");
import("guitarix.lib");
hs(x) = highShelf(x,F,G,Q)
with {
G = -20.;
F = ma.SR/2 -100.;
Q = 100.;
};
process = +(anti_denormal_ac) : hs;
| https://raw.githubusercontent.com/jcelerier/guitarixlib/9c2947507cd13b82554020e669a85244e867d584/guitarix/HighShelf.dsp | faust | declare id "HighShelf";
import("maxmsp.lib");
import("guitarix.lib");
hs(x) = highShelf(x,F,G,Q)
with {
G = -20.;
F = ma.SR/2 -100.;
Q = 100.;
};
process = +(anti_denormal_ac) : hs;
| |
55e346a7a68890b6de16b6a1a981e15b84e8d4749c7234100893dd8b4ad04f76 | jcelerier/guitarixlib | tonestack_crunch.dsp | declare id "Hughes&Kettner"; // in tonestack ba.selector
declare name "Hughes&Kettner Style";
tstack = component("tonestack.dsp");
process = tstack[tse=tstack.ts.crunch;];
| https://raw.githubusercontent.com/jcelerier/guitarixlib/9c2947507cd13b82554020e669a85244e867d584/guitarix/tonestack_crunch.dsp | faust | in tonestack ba.selector | declare name "Hughes&Kettner Style";
tstack = component("tonestack.dsp");
process = tstack[tse=tstack.ts.crunch;];
|
0b73415c252dab7d22337c88f444fd0001c0875c33a12ed2d7a61b06e9858382 | jcelerier/guitarixlib | tonestack_engl.dsp | declare id "Engl"; // in tonestack ba.selector
declare name "Engl Style";
tstack = component("tonestack.dsp");
process = tstack[tse=tstack.ts.engl;];
| https://raw.githubusercontent.com/jcelerier/guitarixlib/9c2947507cd13b82554020e669a85244e867d584/guitarix/tonestack_engl.dsp | faust | in tonestack ba.selector | declare name "Engl Style";
tstack = component("tonestack.dsp");
process = tstack[tse=tstack.ts.engl;];
|
7c43a3dafaa2b3ce0f8c3d342e0629c41711f45b4c0a6a56beef228e21af75e8 | jcelerier/guitarixlib | tonestack_ibanez.dsp | declare id "Ibanez"; // in tonestack ba.selector
declare name "Ibanez Style";
tstack = component("tonestack.dsp");
process = tstack[tse=tstack.ts.ibanez;];
| https://raw.githubusercontent.com/jcelerier/guitarixlib/9c2947507cd13b82554020e669a85244e867d584/guitarix/tonestack_ibanez.dsp | faust | in tonestack ba.selector | declare name "Ibanez Style";
tstack = component("tonestack.dsp");
process = tstack[tse=tstack.ts.ibanez;];
|
3d275980d4f63067b45c57c2e3a43273380583d8a6ee44ea3244a0a6246ba591 | jcelerier/guitarixlib | tonestack_bogner.dsp | declare id "Triple Giant"; // in tonestack ba.selector
declare name "Triple Giant Style";
tstack = component("tonestack.dsp");
process = tstack[tse=tstack.ts.bogner;];
| https://raw.githubusercontent.com/jcelerier/guitarixlib/9c2947507cd13b82554020e669a85244e867d584/guitarix/tonestack_bogner.dsp | faust | in tonestack ba.selector | declare name "Triple Giant Style";
tstack = component("tonestack.dsp");
process = tstack[tse=tstack.ts.bogner;];
|
7412d13ef417b8d4364a532b00f1aab4e9a4043e2e3fc3f8752706b8d82684e9 | jcelerier/guitarixlib | fuzzfacerm.dsp | /// generated automatically
// DO NOT MODIFY!
declare id "fuzzfacerm";
declare name "Fuzz Face Mayer";
declare category "Fuzz";
declare shortname "FF Mayer";
declare description "Roger Mayer Fuzz Face simulation";
declare insert_p "tranyclipper3";
import("filter.lib");
import("trany.lib");
process = iir((b0/a0,b1/a0,... | https://raw.githubusercontent.com/jcelerier/guitarixlib/9c2947507cd13b82554020e669a85244e867d584/guitarix/fuzzfacerm.dsp | faust | / generated automatically
DO NOT MODIFY!
clip = tranystage(TB_KT88_68k,86.0,2700.0,5.562895) : tranystage(TB_KT88_68k,86.0,2700.0,5.562895) ; | declare id "fuzzfacerm";
declare name "Fuzz Face Mayer";
declare category "Fuzz";
declare shortname "FF Mayer";
declare description "Roger Mayer Fuzz Face simulation";
declare insert_p "tranyclipper3";
import("filter.lib");
import("trany.lib");
process = iir((b0/a0,b1/a0,b2/a0,b3/a0),(a1/a0,a2/a0,a3/a0)) with {
... |
0871deeec2c1f7b1af4bd07ba5f778b214ba5e136d09bd62770170e15ea55122 | jcelerier/guitarixlib | tonestack_ac15.dsp | declare id "AC-15"; // in tonestack ba.selector
declare name "AC-15 Style";
tstack = component("tonestack.dsp");
process = tstack[tse=tstack.ts.ac15;];
| https://raw.githubusercontent.com/jcelerier/guitarixlib/9c2947507cd13b82554020e669a85244e867d584/guitarix/tonestack_ac15.dsp | faust | in tonestack ba.selector | declare name "AC-15 Style";
tstack = component("tonestack.dsp");
process = tstack[tse=tstack.ts.ac15;];
|
b86ede94e9c4cf6e747e9579fb51599a0baaf42d565aa726a09f9c4a38fe44c4 | jcelerier/guitarixlib | tonestack_fender_blues.dsp | declare id "Junior"; // in tonestack ba.selector
declare name "Junior Style";
tstack = component("tonestack.dsp");
process = tstack[tse=tstack.ts.fender_blues;];
| https://raw.githubusercontent.com/jcelerier/guitarixlib/9c2947507cd13b82554020e669a85244e867d584/guitarix/tonestack_fender_blues.dsp | faust | in tonestack ba.selector | declare name "Junior Style";
tstack = component("tonestack.dsp");
process = tstack[tse=tstack.ts.fender_blues;];
|
e95f98d0bdc0708d4367d58633e8a69b60dfa57908b3acb1e475fabe3e263d43 | jcelerier/guitarixlib | tonestack_ampeg.dsp | declare id "Ampeg"; // in tonestack ba.selector
declare name "Ampeg Style";
tstack = component("tonestack.dsp");
process = tstack[tse=tstack.ts.ampeg;];
| https://raw.githubusercontent.com/jcelerier/guitarixlib/9c2947507cd13b82554020e669a85244e867d584/guitarix/tonestack_ampeg.dsp | faust | in tonestack ba.selector | declare name "Ampeg Style";
tstack = component("tonestack.dsp");
process = tstack[tse=tstack.ts.ampeg;];
|
5c992ea868ec31a8bf5cb8cea2fcaa75b81b77d5af19d6b53e065448771aa438 | jcelerier/guitarixlib | digital_delay_st.dsp | declare id "didest";
declare name "Digital Stereo Delay";
declare shortname "Digi Delay S";
declare category "Echo / Delay";
declare description "Digital Delay Stereo Version";
dds = component("digital_delay.dsp");
process = dds,dds;
| https://raw.githubusercontent.com/jcelerier/guitarixlib/9c2947507cd13b82554020e669a85244e867d584/guitarix/digital_delay_st.dsp | faust | declare id "didest";
declare name "Digital Stereo Delay";
declare shortname "Digi Delay S";
declare category "Echo / Delay";
declare description "Digital Delay Stereo Version";
dds = component("digital_delay.dsp");
process = dds,dds;
| |
0ef782f762fc3f2136dc6ee76053f91d62368f618ac17bf62811b37203e393c2 | jcelerier/guitarixlib | drive.dsp | import("guitarix.lib");
fuzzy = vslider("value[name:drive]", 1, 1, 10, 1);
process = fuzzy_tube(a,b,c,fuzzy)
with {
a = 4;
b = 4;
c = 0.125;
};
| https://raw.githubusercontent.com/jcelerier/guitarixlib/9c2947507cd13b82554020e669a85244e867d584/guitarix/drive.dsp | faust | import("guitarix.lib");
fuzzy = vslider("value[name:drive]", 1, 1, 10, 1);
process = fuzzy_tube(a,b,c,fuzzy)
with {
a = 4;
b = 4;
c = 0.125;
};
| |
188c898f7f770fc68f0b190ba3fd80399d9df6b0538907503703b8360342c966 | jcelerier/guitarixlib | tonestack_roland.dsp | declare id "Roland"; // in tonestack ba.selector
declare name "Roland Style";
tstack = component("tonestack.dsp");
process = tstack[tse=tstack.ts.roland;];
| https://raw.githubusercontent.com/jcelerier/guitarixlib/9c2947507cd13b82554020e669a85244e867d584/guitarix/tonestack_roland.dsp | faust | in tonestack ba.selector | declare name "Roland Style";
tstack = component("tonestack.dsp");
process = tstack[tse=tstack.ts.roland;];
|
4340b400e34bc607d6c6fc74d4a64471ae7a85acba3c9acfda7ba2b8d96be1ed | jcelerier/guitarixlib | tonestack_mlead.dsp | declare id "M-Lead"; // in tonestack ba.selector
declare name "M-Lead Style";
tstack = component("tonestack.dsp");
process = tstack[tse=tstack.ts.mlead;];
| https://raw.githubusercontent.com/jcelerier/guitarixlib/9c2947507cd13b82554020e669a85244e867d584/guitarix/tonestack_mlead.dsp | faust | in tonestack ba.selector | declare name "M-Lead Style";
tstack = component("tonestack.dsp");
process = tstack[tse=tstack.ts.mlead;];
|
efc3a493849e45d344ca46d3df79f8d26c294b25513f53e8497f0d8d9657978f | jcelerier/guitarixlib | tonestack_jcm2000.dsp | declare id "JCM-2000"; // in tonestack ba.selector
declare name "JCM-2000 Style";
tstack = component("tonestack.dsp");
process = tstack[tse=tstack.ts.jcm2000;];
| https://raw.githubusercontent.com/jcelerier/guitarixlib/9c2947507cd13b82554020e669a85244e867d584/guitarix/tonestack_jcm2000.dsp | faust | in tonestack ba.selector | declare name "JCM-2000 Style";
tstack = component("tonestack.dsp");
process = tstack[tse=tstack.ts.jcm2000;];
|
0ead48237850aba744124fe7e231057aae358902caf8571806fab7f2ae1c43e5 | jcelerier/guitarixlib | balance.dsp | import("guitarix.lib");
process = balance(balance_ctrl.bal);
| https://raw.githubusercontent.com/jcelerier/guitarixlib/9c2947507cd13b82554020e669a85244e867d584/guitarix/balance.dsp | faust | import("guitarix.lib");
process = balance(balance_ctrl.bal);
| |
2d4e5dee1b2e3a55e7cf890e8e72105f5b510298e23a79b3d8ac94549661c89c | jcelerier/guitarixlib | tonestack_twin.dsp | declare id "Twin Reverb"; // in tonestack ba.selector
declare name "Twin Reverb Style";
tstack = component("tonestack.dsp");
process = tstack[tse=tstack.ts.twin;];
| https://raw.githubusercontent.com/jcelerier/guitarixlib/9c2947507cd13b82554020e669a85244e867d584/guitarix/tonestack_twin.dsp | faust | in tonestack ba.selector | declare name "Twin Reverb Style";
tstack = component("tonestack.dsp");
process = tstack[tse=tstack.ts.twin;];
|
f8052893d514ace49120800c2cedabf995e8d8f6bf0610d9d1a79d858c17fbb3 | jcelerier/guitarixlib | balance1.dsp | import("guitarix.lib");
process = _ <: balance(balance_ctrl.bal);
| https://raw.githubusercontent.com/jcelerier/guitarixlib/9c2947507cd13b82554020e669a85244e867d584/guitarix/balance1.dsp | faust | import("guitarix.lib");
process = _ <: balance(balance_ctrl.bal);
| |
d91e557252134d93a49ec2bde30eb02eacb55b2055783fb53f7174b8fe1c2aa1 | jcelerier/guitarixlib | tonestack_peavey.dsp | declare id "Peavey"; // in tonestack ba.selector
declare name "Peavey Style";
tstack = component("tonestack.dsp");
process = tstack[tse=tstack.ts.peavey;];
| https://raw.githubusercontent.com/jcelerier/guitarixlib/9c2947507cd13b82554020e669a85244e867d584/guitarix/tonestack_peavey.dsp | faust | in tonestack ba.selector | declare name "Peavey Style";
tstack = component("tonestack.dsp");
process = tstack[tse=tstack.ts.peavey;];
|
e5786c106dd503437c2389eef457a959e0f05cb7f459fc707dd04d8ab0890bff | jcelerier/guitarixlib | tonestack_groove.dsp | declare id "Trio Preamp"; // in tonestack ba.selector
declare name "Trio Preamp Style";
tstack = component("tonestack.dsp");
process = tstack[tse=tstack.ts.groove;];
| https://raw.githubusercontent.com/jcelerier/guitarixlib/9c2947507cd13b82554020e669a85244e867d584/guitarix/tonestack_groove.dsp | faust | in tonestack ba.selector | declare name "Trio Preamp Style";
tstack = component("tonestack.dsp");
process = tstack[tse=tstack.ts.groove;];
|
94415c55bdbedc232eeee935e9b93938984023053a8a3da4ffbdb5e3c2ebd995 | jcelerier/guitarixlib | tonestack_ampeg_rev.dsp | declare id "rev_rocket"; // in tonestack ba.selector
declare name "Rev.Rocket Style";
tstack = component("tonestack.dsp");
process = tstack[tse=tstack.ts.ampeg_rev;];
| https://raw.githubusercontent.com/jcelerier/guitarixlib/9c2947507cd13b82554020e669a85244e867d584/guitarix/tonestack_ampeg_rev.dsp | faust | in tonestack ba.selector | declare name "Rev.Rocket Style";
tstack = component("tonestack.dsp");
process = tstack[tse=tstack.ts.ampeg_rev;];
|
b9cddd9ae19b9c36a36dee3a4e6fe105910d529bb3d2faeec21092368bbba864 | jcelerier/guitarixlib | tonestack_m2199.dsp | declare id "M2199"; // in tonestack ba.selector
declare name "M2199 Style";
tstack = component("tonestack.dsp");
process = tstack[tse=tstack.ts.m2199;];
| https://raw.githubusercontent.com/jcelerier/guitarixlib/9c2947507cd13b82554020e669a85244e867d584/guitarix/tonestack_m2199.dsp | faust | in tonestack ba.selector | declare name "M2199 Style";
tstack = component("tonestack.dsp");
process = tstack[tse=tstack.ts.m2199;];
|
4687583d37c4e8389c1326a411bc8d44ad65f4c2f915d4b13452e61f5becc337 | jcelerier/guitarixlib | tonestack_fender_default.dsp | declare id "Fender"; // in tonestack ba.selector
declare name "Fender Style";
tstack = component("tonestack.dsp");
process = tstack[tse=tstack.ts.fender_default;];
| https://raw.githubusercontent.com/jcelerier/guitarixlib/9c2947507cd13b82554020e669a85244e867d584/guitarix/tonestack_fender_default.dsp | faust | in tonestack ba.selector | declare name "Fender Style";
tstack = component("tonestack.dsp");
process = tstack[tse=tstack.ts.fender_default;];
|
bdcbd8ff0fd0d11049581257a54833c43eb683cbe4af76610592bd9dcc10fb7a | jcelerier/guitarixlib | tonestack_sovtek.dsp | declare id "MIG 100 H"; // in tonestack ba.selector
declare name "MIG 100 H Style";
tstack = component("tonestack.dsp");
process = tstack[tse=tstack.ts.sovtek;];
| https://raw.githubusercontent.com/jcelerier/guitarixlib/9c2947507cd13b82554020e669a85244e867d584/guitarix/tonestack_sovtek.dsp | faust | in tonestack ba.selector | declare name "MIG 100 H Style";
tstack = component("tonestack.dsp");
process = tstack[tse=tstack.ts.sovtek;];
|
e6bef5c64a58fc82c1217f2ed48bfa17b5db669c84f8ea5d3f8abc54a8c273f7 | jcelerier/guitarixlib | tonestack_soldano.dsp | declare id "SOL 100"; // in tonestack ba.selector
declare name "SOL 100 Style";
tstack = component("tonestack.dsp");
process = tstack[tse=tstack.ts.soldano;];
| https://raw.githubusercontent.com/jcelerier/guitarixlib/9c2947507cd13b82554020e669a85244e867d584/guitarix/tonestack_soldano.dsp | faust | in tonestack ba.selector | declare name "SOL 100 Style";
tstack = component("tonestack.dsp");
process = tstack[tse=tstack.ts.soldano;];
|
24bbbfa6598784dd1dcc4d73970290e8fd47047633a70d04e4e543d0de2a53ae | jcelerier/guitarixlib | tonestack_mesa.dsp | declare id "Mesa Boogie"; // in tonestack ba.selector
declare name "Mesa Boogie Style";
tstack = component("tonestack.dsp");
process = tstack[tse=tstack.ts.mesa;];
| https://raw.githubusercontent.com/jcelerier/guitarixlib/9c2947507cd13b82554020e669a85244e867d584/guitarix/tonestack_mesa.dsp | faust | in tonestack ba.selector | declare name "Mesa Boogie Style";
tstack = component("tonestack.dsp");
process = tstack[tse=tstack.ts.mesa;];
|
3c49679a479a467c1020f5ccda608fac104181a3da9cb2974493432f679d58be | jcelerier/guitarixlib | tonestack_princeton.dsp | declare id "Princeton"; // in tonestack ba.selector
declare name "Princeton Style";
tstack = component("tonestack.dsp");
process = tstack[tse=tstack.ts.princeton;];
| https://raw.githubusercontent.com/jcelerier/guitarixlib/9c2947507cd13b82554020e669a85244e867d584/guitarix/tonestack_princeton.dsp | faust | in tonestack ba.selector | declare name "Princeton Style";
tstack = component("tonestack.dsp");
process = tstack[tse=tstack.ts.princeton;];
|
49ea045191f70244d1cca9b46f6dd9e637a837afc2c68041336fa451477f8c40 | jcelerier/guitarixlib | ring_modulator_st.dsp | declare id "ringModulatorSt";
declare name "Ring Modulator";
declare category "Modulation";
declare description "Ring Modulator Stereo Version";
rm = component("ring_modulator.dsp");
process = rm,rm;
| https://raw.githubusercontent.com/jcelerier/guitarixlib/9c2947507cd13b82554020e669a85244e867d584/guitarix/ring_modulator_st.dsp | faust | declare id "ringModulatorSt";
declare name "Ring Modulator";
declare category "Modulation";
declare description "Ring Modulator Stereo Version";
rm = component("ring_modulator.dsp");
process = rm,rm;
| |
34a59599246b3938d2513b00ab928a8b917db4a482d1b5ea20b3bf146172cd74 | jcelerier/guitarixlib | tonestack_gibsen.dsp | declare id "Gibsen"; // in tonestack ba.selector
declare name "Gibsen Style";
tstack = component("tonestack.dsp");
process = tstack[tse=tstack.ts.gibsen;];
| https://raw.githubusercontent.com/jcelerier/guitarixlib/9c2947507cd13b82554020e669a85244e867d584/guitarix/tonestack_gibsen.dsp | faust | in tonestack ba.selector | declare name "Gibsen Style";
tstack = component("tonestack.dsp");
process = tstack[tse=tstack.ts.gibsen;];
|
1d9d57ddfb1a233b0ff3c0deedd9288969318b651241db1bed27877deda7bd19 | jcelerier/guitarixlib | tonestack_jtm45.dsp | declare id "JTM-45"; // in tonestack ba.selector
declare name "JTM-45 Style";
tstack = component("tonestack.dsp");
process = tstack[tse=tstack.ts.jtm45;];
| https://raw.githubusercontent.com/jcelerier/guitarixlib/9c2947507cd13b82554020e669a85244e867d584/guitarix/tonestack_jtm45.dsp | faust | in tonestack ba.selector | declare name "JTM-45 Style";
tstack = component("tonestack.dsp");
process = tstack[tse=tstack.ts.jtm45;];
|
ac2efa3b90e56b5b652acac21cef931c9ceeb1441aa5cc1338697d5c87637ec4 | jcelerier/abclib | abc_2d_squaretrajectory.dsp | //--------------------------------------------------------------------------------------//
//----------------------------------------abclib----------------------------------------//
//
//-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
//
//-----------------------BY ALAIN BONARDI... | https://raw.githubusercontent.com/jcelerier/abclib/0857a9dbe88eafece0772c5701a56d2552fc9a9b/abc/abc_2d_squaretrajectory.dsp | faust | --------------------------------------------------------------------------------------//
----------------------------------------abclib----------------------------------------//
-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
-----------------------BY ALAIN BONARDI & PAUL GOUT... | declare author "Alain Bonardi & Paul Goutmann";
declare licence "LGPLv3";
declare name "abc_2d_squaretrajectory";
process = library("abc.lib").abc_2d_squareTrajectory_ui;
|
c066d996e4a5ede08d7d09d19d4b1bdcab5d59caffa3f9c128132d6d1b3194b9 | jcelerier/abclib | abc_2d_decoder6_12.dsp | //--------------------------------------------------------------------------------------//
//----------------------------------------abclib----------------------------------------//
//
//-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
//
//-----------------------BY ALAIN BONARDI... | https://raw.githubusercontent.com/jcelerier/abclib/0857a9dbe88eafece0772c5701a56d2552fc9a9b/abc/abc_2d_decoder6_12.dsp | faust | --------------------------------------------------------------------------------------//
----------------------------------------abclib----------------------------------------//
-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
-----------------------BY ALAIN BONARDI & PAUL GOUT... | declare author "Alain Bonardi & Paul Goutmann";
declare licence "LGPLv3";
declare name "abc_2d_decoder6_12";
process = library("abc.lib").abc_2d_decoder_ui(6, 12);
|
c611dc62d30f44804038e1d1792667cc7a2f4c3c7269eb15c7ba1dfdb5070030 | jcelerier/abclib | abc_flanger4.dsp | //--------------------------------------------------------------------------------------//
//----------------------------------------abclib----------------------------------------//
//
//-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
//
//-----------------------BY ALAIN BONARDI... | https://raw.githubusercontent.com/jcelerier/abclib/0857a9dbe88eafece0772c5701a56d2552fc9a9b/abc/abc_flanger4.dsp | faust | --------------------------------------------------------------------------------------//
----------------------------------------abclib----------------------------------------//
-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
-----------------------BY ALAIN BONARDI & PAUL GOUT... | declare author "Alain Bonardi & Paul Goutmann";
declare licence "LGPLv3";
declare name "abc_flanger4";
process = library("abc.lib").abc_multiflanger_ui(4);
|
ce78f83138791e4f8a6218655addef4631627cab12f6c62777243b4684286db6 | jcelerier/abclib | abc_2d_decoder5_4.dsp | //--------------------------------------------------------------------------------------//
//----------------------------------------abclib----------------------------------------//
//
//-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
//
//-----------------------BY ALAIN BONARDI... | https://raw.githubusercontent.com/jcelerier/abclib/0857a9dbe88eafece0772c5701a56d2552fc9a9b/abc/abc_2d_decoder5_4.dsp | faust | --------------------------------------------------------------------------------------//
----------------------------------------abclib----------------------------------------//
-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
-----------------------BY ALAIN BONARDI & PAUL GOUT... | declare author "Alain Bonardi & Paul Goutmann";
declare licence "LGPLv3";
declare name "abc_2d_decoder5_4";
process = library("abc.lib").abc_2d_decoder_ui(5, 4);
|
5dd61e1f58a74f3c5d0f47256cdf940f9338fbe3571de886e4377d5e7d791d07 | jcelerier/abclib | abc_2d_map4_2.dsp | //--------------------------------------------------------------------------------------//
//----------------------------------------abclib----------------------------------------//
//
//-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
//
//-----------------------BY ALAIN BONARDI... | https://raw.githubusercontent.com/jcelerier/abclib/0857a9dbe88eafece0772c5701a56d2552fc9a9b/abc/abc_2d_map4_2.dsp | faust | --------------------------------------------------------------------------------------//
----------------------------------------abclib----------------------------------------//
-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
-----------------------BY ALAIN BONARDI & PAUL GOUT... | declare author "Alain Bonardi & Paul Goutmann";
declare licence "LGPLv3";
declare name "abc_2d_map4_2";
process = library("abc.lib").abc_2d_multiMap_ui(4, 2);
|
1fc4a78b7c1c1d23385b823d900b258991a9e0612045813db3243e8b3033fb58 | jcelerier/abclib | abc_2d_decoder3_13.dsp | //--------------------------------------------------------------------------------------//
//----------------------------------------abclib----------------------------------------//
//
//-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
//
//-----------------------BY ALAIN BONARDI... | https://raw.githubusercontent.com/jcelerier/abclib/0857a9dbe88eafece0772c5701a56d2552fc9a9b/abc/abc_2d_decoder3_13.dsp | faust | --------------------------------------------------------------------------------------//
----------------------------------------abclib----------------------------------------//
-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
-----------------------BY ALAIN BONARDI & PAUL GOUT... | declare author "Alain Bonardi & Paul Goutmann";
declare licence "LGPLv3";
declare name "abc_2d_decoder3_13";
process = library("abc.lib").abc_2d_decoder_ui(3, 13);
|
b69552153741c5413773c1e6cf689a200f4d2b96f52802e09da6356b8473c0c4 | jcelerier/abclib | abc_delay3.dsp | //--------------------------------------------------------------------------------------//
//----------------------------------------abclib----------------------------------------//
//
//-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
//
//-----------------------BY ALAIN BONARDI... | https://raw.githubusercontent.com/jcelerier/abclib/0857a9dbe88eafece0772c5701a56d2552fc9a9b/abc/abc_delay3.dsp | faust | --------------------------------------------------------------------------------------//
----------------------------------------abclib----------------------------------------//
-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
-----------------------BY ALAIN BONARDI & PAUL GOUT... | declare author "Alain Bonardi & Paul Goutmann";
declare licence "LGPLv3";
declare name "abc_delay3";
process = library("abc.lib").abc_pardelset_ui(3);
|
195259b288ae0fbe8c84af395bbf6eedec0c25aa9ab1729eec1eca0094187d31 | jcelerier/abclib | abc_2d_decoder1_10.dsp | //--------------------------------------------------------------------------------------//
//----------------------------------------abclib----------------------------------------//
//
//-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
//
//-----------------------BY ALAIN BONARDI... | https://raw.githubusercontent.com/jcelerier/abclib/0857a9dbe88eafece0772c5701a56d2552fc9a9b/abc/abc_2d_decoder1_10.dsp | faust | --------------------------------------------------------------------------------------//
----------------------------------------abclib----------------------------------------//
-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
-----------------------BY ALAIN BONARDI & PAUL GOUT... | declare author "Alain Bonardi & Paul Goutmann";
declare licence "LGPLv3";
declare name "abc_2d_decoder1_10";
process = library("abc.lib").abc_2d_decoder_ui(1, 10);
|
0c0d4a330bc4030eb7ad91a8632601591164d8a13db0cefee8f46e3ce8370d78 | jcelerier/abclib | abc_2d_multiencoder4_2.dsp | //--------------------------------------------------------------------------------------//
//----------------------------------------abclib----------------------------------------//
//
//-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
//
//-----------------------BY ALAIN BONARDI... | https://raw.githubusercontent.com/jcelerier/abclib/0857a9dbe88eafece0772c5701a56d2552fc9a9b/abc/abc_2d_multiencoder4_2.dsp | faust | --------------------------------------------------------------------------------------//
----------------------------------------abclib----------------------------------------//
-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
-----------------------BY ALAIN BONARDI & PAUL GOUT... | declare author "Alain Bonardi & Paul Goutmann";
declare licence "LGPLv3";
declare name "abc_2d_multiencoder4_2";
process = library("abc.lib").abc_2d_multiEncoder_ui(4, 2);
|
780af35ccef1d2107b7da5f5a8c3d10e7b98848e2aed89db83ca5056de8f1a83 | jcelerier/abclib | abc_2d_fx_decorrelation7.dsp | //--------------------------------------------------------------------------------------//
//----------------------------------------abclib----------------------------------------//
//
//-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
//
//-----------------------BY ALAIN BONARDI... | https://raw.githubusercontent.com/jcelerier/abclib/0857a9dbe88eafece0772c5701a56d2552fc9a9b/abc/abc_2d_fx_decorrelation7.dsp | faust | --------------------------------------------------------------------------------------//
----------------------------------------abclib----------------------------------------//
-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
-----------------------BY ALAIN BONARDI & PAUL GOUT... | declare author "Alain Bonardi & Paul Goutmann";
declare licence "LGPLv3";
declare name "abc_2d_fx_decorrelation7";
process = library("abc.lib").abc_2d_fx_decorrelation_ui(7);
|
3a852bd035a56a0eee65fb7ab39cff0b2cfa2ef5d9c52dbcd53379773e200d3f | jcelerier/abclib | abc_2d_multiencoder2_8.dsp | //--------------------------------------------------------------------------------------//
//----------------------------------------abclib----------------------------------------//
//
//-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
//
//-----------------------BY ALAIN BONARDI... | https://raw.githubusercontent.com/jcelerier/abclib/0857a9dbe88eafece0772c5701a56d2552fc9a9b/abc/abc_2d_multiencoder2_8.dsp | faust | --------------------------------------------------------------------------------------//
----------------------------------------abclib----------------------------------------//
-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
-----------------------BY ALAIN BONARDI & PAUL GOUT... | declare author "Alain Bonardi & Paul Goutmann";
declare licence "LGPLv3";
declare name "abc_2d_multiencoder2_8";
process = library("abc.lib").abc_2d_multiEncoder_ui(2, 8);
|
5ada356509b98e822ee980082f3da54b9e638adc538401f7478e9d6ccada4aaa | jcelerier/abclib | abc_grain11.dsp | //--------------------------------------------------------------------------------------//
//----------------------------------------abclib----------------------------------------//
//
//-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
//
//-----------------------BY ALAIN BONARDI... | https://raw.githubusercontent.com/jcelerier/abclib/0857a9dbe88eafece0772c5701a56d2552fc9a9b/abc/abc_grain11.dsp | faust | --------------------------------------------------------------------------------------//
----------------------------------------abclib----------------------------------------//
-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
-----------------------BY ALAIN BONARDI & PAUL GOUT... | declare author "Alain Bonardi & Paul Goutmann";
declare licence "LGPLv3";
declare name "abc_grain11";
process = library("abc.lib").abc_multigrain_ui(11);
|
a8c601933629e0d1270f4bc173afe14a4423dabe6abd4af5db638e20b5be26ee | jcelerier/abclib | abc_2d_decoder1_12.dsp | //--------------------------------------------------------------------------------------//
//----------------------------------------abclib----------------------------------------//
//
//-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
//
//-----------------------BY ALAIN BONARDI... | https://raw.githubusercontent.com/jcelerier/abclib/0857a9dbe88eafece0772c5701a56d2552fc9a9b/abc/abc_2d_decoder1_12.dsp | faust | --------------------------------------------------------------------------------------//
----------------------------------------abclib----------------------------------------//
-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
-----------------------BY ALAIN BONARDI & PAUL GOUT... | declare author "Alain Bonardi & Paul Goutmann";
declare licence "LGPLv3";
declare name "abc_2d_decoder1_12";
process = library("abc.lib").abc_2d_decoder_ui(1, 12);
|
c87d89a9bec6a22d30a0ac1494b047bd896359249b2ec6097585844a6c90bc4e | jcelerier/abclib | abc_2d_stereodecoder3.dsp | //--------------------------------------------------------------------------------------//
//----------------------------------------abclib----------------------------------------//
//
//-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
//
//-----------------------BY ALAIN BONARDI... | https://raw.githubusercontent.com/jcelerier/abclib/0857a9dbe88eafece0772c5701a56d2552fc9a9b/abc/abc_2d_stereodecoder3.dsp | faust | --------------------------------------------------------------------------------------//
----------------------------------------abclib----------------------------------------//
-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
-----------------------BY ALAIN BONARDI & PAUL GOUT... | declare author "Alain Bonardi & Paul Goutmann";
declare licence "LGPLv3";
declare name "abc_2d_stereodecoder3";
process = library("abc.lib").abc_2d_stereodecoder_ui(3);
|
febff8e84981fd179785401e1cd7a081c109f2e353b4f999fba0e3e51c35ab55 | jcelerier/abclib | abc_2d_multiencoder6_5.dsp | //--------------------------------------------------------------------------------------//
//----------------------------------------abclib----------------------------------------//
//
//-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
//
//-----------------------BY ALAIN BONARDI... | https://raw.githubusercontent.com/jcelerier/abclib/0857a9dbe88eafece0772c5701a56d2552fc9a9b/abc/abc_2d_multiencoder6_5.dsp | faust | --------------------------------------------------------------------------------------//
----------------------------------------abclib----------------------------------------//
-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
-----------------------BY ALAIN BONARDI & PAUL GOUT... | declare author "Alain Bonardi & Paul Goutmann";
declare licence "LGPLv3";
declare name "abc_2d_multiencoder6_5";
process = library("abc.lib").abc_2d_multiEncoder_ui(6, 5);
|
bd160f780238935b44eee72e6115a4fc4fe76881877f0eed7a6df2363d8d6f39 | jcelerier/abclib | abc_2d_decoder3_6.dsp | //--------------------------------------------------------------------------------------//
//----------------------------------------abclib----------------------------------------//
//
//-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
//
//-----------------------BY ALAIN BONARDI... | https://raw.githubusercontent.com/jcelerier/abclib/0857a9dbe88eafece0772c5701a56d2552fc9a9b/abc/abc_2d_decoder3_6.dsp | faust | --------------------------------------------------------------------------------------//
----------------------------------------abclib----------------------------------------//
-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
-----------------------BY ALAIN BONARDI & PAUL GOUT... | declare author "Alain Bonardi & Paul Goutmann";
declare licence "LGPLv3";
declare name "abc_2d_decoder3_6";
process = library("abc.lib").abc_2d_decoder_ui(3, 6);
|
22cee22a7dcb66a38465ee4a6e0d7c236eee62dec78020c5eaeda9ef7f89a088 | jcelerier/abclib | abc_2d_map3_2.dsp | //--------------------------------------------------------------------------------------//
//----------------------------------------abclib----------------------------------------//
//
//-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
//
//-----------------------BY ALAIN BONARDI... | https://raw.githubusercontent.com/jcelerier/abclib/0857a9dbe88eafece0772c5701a56d2552fc9a9b/abc/abc_2d_map3_2.dsp | faust | --------------------------------------------------------------------------------------//
----------------------------------------abclib----------------------------------------//
-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
-----------------------BY ALAIN BONARDI & PAUL GOUT... | declare author "Alain Bonardi & Paul Goutmann";
declare licence "LGPLv3";
declare name "abc_2d_map3_2";
process = library("abc.lib").abc_2d_multiMap_ui(3, 2);
|
50e5fa9e1252fa90ccfb412d670eb91b6fa0cb1480f69a4698e8a29ff159e515 | jcelerier/abclib | abc_2d_decoder4_15.dsp | //--------------------------------------------------------------------------------------//
//----------------------------------------abclib----------------------------------------//
//
//-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
//
//-----------------------BY ALAIN BONARDI... | https://raw.githubusercontent.com/jcelerier/abclib/0857a9dbe88eafece0772c5701a56d2552fc9a9b/abc/abc_2d_decoder4_15.dsp | faust | --------------------------------------------------------------------------------------//
----------------------------------------abclib----------------------------------------//
-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
-----------------------BY ALAIN BONARDI & PAUL GOUT... | declare author "Alain Bonardi & Paul Goutmann";
declare licence "LGPLv3";
declare name "abc_2d_decoder4_15";
process = library("abc.lib").abc_2d_decoder_ui(4, 15);
|
139f769c29225eba8815696ae472e1684ce50233f0f482de6ce852b10b8e1652 | jcelerier/abclib | abc_2d_decoder1_6.dsp | //--------------------------------------------------------------------------------------//
//----------------------------------------abclib----------------------------------------//
//
//-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
//
//-----------------------BY ALAIN BONARDI... | https://raw.githubusercontent.com/jcelerier/abclib/0857a9dbe88eafece0772c5701a56d2552fc9a9b/abc/abc_2d_decoder1_6.dsp | faust | --------------------------------------------------------------------------------------//
----------------------------------------abclib----------------------------------------//
-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
-----------------------BY ALAIN BONARDI & PAUL GOUT... | declare author "Alain Bonardi & Paul Goutmann";
declare licence "LGPLv3";
declare name "abc_2d_decoder1_6";
process = library("abc.lib").abc_2d_decoder_ui(1, 6);
|
f7b83e28638d5134badc3da28edff50d985d9a0cc289e394153598be1cec2187 | jcelerier/abclib | abc_freqshift10.dsp | //--------------------------------------------------------------------------------------//
//----------------------------------------abclib----------------------------------------//
//
//-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
//
//-----------------------BY ALAIN BONARDI... | https://raw.githubusercontent.com/jcelerier/abclib/0857a9dbe88eafece0772c5701a56d2552fc9a9b/abc/abc_freqshift10.dsp | faust | --------------------------------------------------------------------------------------//
----------------------------------------abclib----------------------------------------//
-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
-----------------------BY ALAIN BONARDI & PAUL GOUT... | declare author "Alain Bonardi & Paul Goutmann";
declare licence "LGPLv3";
declare name "abc_freqshift10";
process = library("abc.lib").abc_multifreqshift_ui(10);
|
1e5d16e978063b2e495a1fbbe4e46eac52a88345f76fb3a24f77cca3bc791d81 | jcelerier/abclib | abc_poltocar.dsp | //--------------------------------------------------------------------------------------//
//----------------------------------------abclib----------------------------------------//
//
//-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
//
//-----------------------BY ALAIN BONARDI... | https://raw.githubusercontent.com/jcelerier/abclib/0857a9dbe88eafece0772c5701a56d2552fc9a9b/abc/abc_poltocar.dsp | faust | --------------------------------------------------------------------------------------//
----------------------------------------abclib----------------------------------------//
-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
-----------------------BY ALAIN BONARDI & PAUL GOUT... | declare author "Alain Bonardi & Paul Goutmann";
declare licence "LGPLv3";
declare name "abc_poltocar";
process = library("abc.lib").abc_polar2cartesian;
|
da4aa1137a36665fcda28ae90a8dc0a6e23907ffe8551333dc25d20c1711641b | jcelerier/abclib | abc_2d_syn_grain6.dsp | //--------------------------------------------------------------------------------------//
//----------------------------------------abclib----------------------------------------//
//
//-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
//
//-----------------------BY ALAIN BONARDI... | https://raw.githubusercontent.com/jcelerier/abclib/0857a9dbe88eafece0772c5701a56d2552fc9a9b/abc/abc_2d_syn_grain6.dsp | faust | --------------------------------------------------------------------------------------//
----------------------------------------abclib----------------------------------------//
-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
-----------------------BY ALAIN BONARDI & PAUL GOUT... | declare author "Alain Bonardi & Paul Goutmann";
declare licence "LGPLv3";
declare name "abc_2d_syn_grain6";
process = library("abc.lib").abc_2d_syn_grain_ui(13);
|
c86334be0c40dcda54cb17b6282615847a49bc85c72ffb682a3149be540a039f | jcelerier/abclib | abc_linrandenv14.dsp | //--------------------------------------------------------------------------------------//
//----------------------------------------abclib----------------------------------------//
//
//-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
//
//-----------------------BY ALAIN BONARDI... | https://raw.githubusercontent.com/jcelerier/abclib/0857a9dbe88eafece0772c5701a56d2552fc9a9b/abc/abc_linrandenv14.dsp | faust | --------------------------------------------------------------------------------------//
----------------------------------------abclib----------------------------------------//
-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
-----------------------BY ALAIN BONARDI & PAUL GOUT... | declare author "Alain Bonardi & Paul Goutmann";
declare licence "LGPLv3";
declare name "abc_linrandenv14";
process = library("abc.lib").abc_multilinrandenv_ui(14);
|
f8be99a7019f2e3cc06843d3e2ec62c6a27197e1ca4fe42b18c11d8dbbed649a | jcelerier/abclib | abc_substractsynth4.dsp | //--------------------------------------------------------------------------------------//
//----------------------------------------abclib----------------------------------------//
//
//-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
//
//-----------------------BY ALAIN BONARDI... | https://raw.githubusercontent.com/jcelerier/abclib/0857a9dbe88eafece0772c5701a56d2552fc9a9b/abc/abc_substractsynth4.dsp | faust | --------------------------------------------------------------------------------------//
----------------------------------------abclib----------------------------------------//
-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
-----------------------BY ALAIN BONARDI & PAUL GOUT... | declare author "Alain Bonardi & Paul Goutmann";
declare licence "LGPLv3";
declare name "abc_substractsynth4";
process = library("abc.lib").abc_substractsynth_ui(4);
|
df7f958b7a45281b2d40623b1fc77714de203457677c154834e01b466046fb58 | jcelerier/abclib | abc_2d_decoder2_5.dsp | //--------------------------------------------------------------------------------------//
//----------------------------------------abclib----------------------------------------//
//
//-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
//
//-----------------------BY ALAIN BONARDI... | https://raw.githubusercontent.com/jcelerier/abclib/0857a9dbe88eafece0772c5701a56d2552fc9a9b/abc/abc_2d_decoder2_5.dsp | faust | --------------------------------------------------------------------------------------//
----------------------------------------abclib----------------------------------------//
-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
-----------------------BY ALAIN BONARDI & PAUL GOUT... | declare author "Alain Bonardi & Paul Goutmann";
declare licence "LGPLv3";
declare name "abc_2d_decoder2_5";
process = library("abc.lib").abc_2d_decoder_ui(2, 5);
|
b5c884d81775815e48b25a8b15b9bcb0b7597d64898d4054067fbb14b4a4e1cb | jcelerier/abclib | abc_2d_map5_2.dsp | //--------------------------------------------------------------------------------------//
//----------------------------------------abclib----------------------------------------//
//
//-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
//
//-----------------------BY ALAIN BONARDI... | https://raw.githubusercontent.com/jcelerier/abclib/0857a9dbe88eafece0772c5701a56d2552fc9a9b/abc/abc_2d_map5_2.dsp | faust | --------------------------------------------------------------------------------------//
----------------------------------------abclib----------------------------------------//
-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
-----------------------BY ALAIN BONARDI & PAUL GOUT... | declare author "Alain Bonardi & Paul Goutmann";
declare licence "LGPLv3";
declare name "abc_2d_map5_2";
process = library("abc.lib").abc_2d_multiMap_ui(5, 2);
|
31c0068c207a349e11490fec99acd85a4d10321ae0b1b303cb2fd11b05789203 | jcelerier/abclib | abc_envfollower.dsp | //--------------------------------------------------------------------------------------//
//----------------------------------------abclib----------------------------------------//
//
//-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
//
//-----------------------BY ALAIN BONARDI... | https://raw.githubusercontent.com/jcelerier/abclib/0857a9dbe88eafece0772c5701a56d2552fc9a9b/abc/abc_envfollower.dsp | faust | --------------------------------------------------------------------------------------//
----------------------------------------abclib----------------------------------------//
-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
-----------------------BY ALAIN BONARDI & PAUL GOUT... | declare author "Alain Bonardi & Paul Goutmann";
declare licence "LGPLv3";
declare name "abc_envfollower";
process = library("abc.lib").abc_envFollower_ui;
|
f450a309fb275175b6eb11788fd8009a00c66ca631b80b705e4c01b1637194c9 | jcelerier/abclib | abc_matrix5.dsp | //--------------------------------------------------------------------------------------//
//----------------------------------------abclib----------------------------------------//
//
//-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
//
//-----------------------BY ALAIN BONARDI... | https://raw.githubusercontent.com/jcelerier/abclib/0857a9dbe88eafece0772c5701a56d2552fc9a9b/abc/abc_matrix5.dsp | faust | --------------------------------------------------------------------------------------//
----------------------------------------abclib----------------------------------------//
-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
-----------------------BY ALAIN BONARDI & PAUL GOUT... | declare author "Alain Bonardi & Paul Goutmann";
declare licence "LGPLv3";
declare name "abc_matrix5";
process = library("abc.lib").abc_matrix_ui(5, 5);
|
92997821bebf437893d1a4199baef60a5d98900147b995c676cdc730302c4d24 | jcelerier/abclib | abc_2d_vbap5.dsp | //--------------------------------------------------------------------------------------//
//----------------------------------------abclib----------------------------------------//
//
//-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
//
//-----------------------BY ALAIN BONARDI... | https://raw.githubusercontent.com/jcelerier/abclib/0857a9dbe88eafece0772c5701a56d2552fc9a9b/abc/abc_2d_vbap5.dsp | faust | --------------------------------------------------------------------------------------//
----------------------------------------abclib----------------------------------------//
-------------------------FAUST CODE AND UTILITIES FOR MIXED MUSIC---------------------//
-----------------------BY ALAIN BONARDI & PAUL GOUT... | declare author "Alain Bonardi & Paul Goutmann";
declare licence "LGPLv3";
declare name "abc_2d_vbap5";
process = library("abc.lib").abc_2d_vbap_ui(5);
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.