-
Notifications
You must be signed in to change notification settings - Fork 0
/
nodes.ag
122 lines (109 loc) · 1.39 KB
/
nodes.ag
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
n1 =
{
kind : "osc",
in: 0,
out : 1,
freq : "@pick{20,440,1000,2500,6000}",
volume : "@pick[0,1]",
wcet: 3.5,
};
n1 =
{
kind : "mod",
in: 1,
out : 1,
freq : "@pick{20,440,1000,2500,6000}",
volume : "@pick[0,1]",
wcet: 3.5,
};
resampler =
{
kind : "resampler",
in:1,
out:1,
ratio : "2.0",
wcet: 2.0,
};
mix_1_1 =
{
kind: "mix",
in:1,
out:1,
wcet: 0.244,
};
mix_2_1 =
{
kind: "mix",
in:2,
out:1,
wcet: 0.282,
};
mix_1_2 =
{
kind: "mix",
in:1,
out:2,
wcet: 0.418,
};
cubicnl =
{
kind: "cubicnl",
drive: "@pick[0,1]",
offset: "@pick[0,5]",
in: 1,
out: 1,
wcet: 0.795,
};
guitar =
{
kind: "guitar",
length: "@pick[0.2,1]",
in: 0,
out: 1,
wcet: 6.98,
};
transpose = {
kind: "transpose",
semitones: @pick{-3,-2,-1,1,2,3}",
in:1,
out:1,
wcet: 4.83,
};
zita = {
kind: "zita_reverb",
in: 2,
out: 2,
rdel: "@pick[0,30]",
f1: "@pick{300, 590, 1000, 5000}",
f2: "@pick{5500, 6000, 10000, 15000}",
t60dc: "@pick[0,30]",
t60m: "@pick[0,30]",
wcet: 27.038,
};
freeverb = {
kind: "freeverb",
in: 1,
out: 1,
fb1: "@pick[0,1]",
fb2: "@pick[0,1]",
damp: "@pick[0,1]",
spread: "@pick[0,1]",
wcet: 9.267,
};
comp = {
kind: "compressor",
in: 1,
out: 1,
ratio: "@pick[1,100]",
thresh: "@pick{0, 1, 5, 10}",
att: "@pick[0,30]",
att: "@pick[0,30]",
wcet: 4.46,
};
wah = {
kind: "autowah",
in:1,
out:1,
level: "@pick[0,1]",
wcet: 9.78,
};