-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVPhaserM.effect
More file actions
353 lines (345 loc) · 15.1 KB
/
VPhaserM.effect
File metadata and controls
353 lines (345 loc) · 15.1 KB
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
<effect>
<name>VPhaserM</name>
<enabled>true</enabled>
<numIns>2</numIns>
<numOuts>2</numOuts>
<code>if (<VPhaserON> == 1) then
klfo1 lfo 1, <VPhaser_FM>
klfo1 *= <VPhaser_FM Depth>
klfo2 lfo 1, <VPhaser_Seperation Modulate>
klfo2 *= <VPhaser_Seperation Modulation Depth>
aout1 phaser2 ain1, <VPhaser_Frequency> + klfo1, <VPhaser_Q>, <VPhaser_notches>, 1, <VPhaser_Separation> + klfo2, <VPhaser_Feedback>
aout2 phaser2 ain2, <VPhaser_Frequency> + klfo1, <VPhaser_Q>, <VPhaser_notches>, 1, <VPhaser_Separation> + klfo2, <VPhaser_Feedback>
aout1 ntrpol aout1, ain1, <VPhaser_mix>
aout2 ntrpol aout2, ain2, <VPhaser_mix>
else
aout1 = ain1
aout2 = ain2
endif
</code>
<comments>
DESCRIPTION:
FLFO controls frequency of the phaser. SLFO controls separation of the peaks.
CONTROLLERS:
ON/OFF - bypass
frequency - frequency (in Hz) of the filter(s)
LFO freq - speed of LFO (sinewave)
LFO Depth - amount of LFO amplitude
Notch - the number of allpass stages in series
Q Notch - Q of each notch. Higher Q values result in narrow notches
Feedback - amount of feedback
Separation - scaling factor used to determine the frequencies of the additional notches in the output spectrum
Modulate - LFO speed of LFO for Separation
Depth - gain of LFO for Separation
mix - mix direct signal with effect
--
version 1.11, May 2020
- added comments on controllers
version 1.1, February 2019
- new GUI and small code adaptations by Menno Knevel
version 1.0, 2008?
- initial version by bucket_brigade</comments>
<opcodeList/>
<graphicInterface editEnabled='true'>
<gridSettings>
<width>5</width>
<height>5</height>
<gridStyle>LINE</gridStyle>
<snapGridEnabled>true</snapGridEnabled>
</gridSettings>
<bsbObject type='blue.orchestra.blueSynthBuilder.BSBGroup'>
<objectName></objectName>
<x>0</x>
<y>0</y>
<groupName>Group</groupName>
<backgroundColor>0x00000033</backgroundColor>
<borderColor>0x000000ff</borderColor>
<labelTextColor>0xffffffff</labelTextColor>
<titleEnabled>true</titleEnabled>
<width>20</width>
<height>20</height>
<bsbObject type='blue.orchestra.blueSynthBuilder.BSBCheckBox'>
<objectName>VPhaserON</objectName>
<x>0</x>
<y>0</y>
<automationAllowed>true</automationAllowed>
<label/>
<selected>true</selected>
<randomizable>true</randomizable>
</bsbObject>
<bsbObject type='blue.orchestra.blueSynthBuilder.BSBGroup'>
<objectName></objectName>
<x>10</x>
<y>10</y>
<groupName>Group</groupName>
<backgroundColor>0x4d8080ff</backgroundColor>
<borderColor>0x000000ff</borderColor>
<labelTextColor>0xffffffff</labelTextColor>
<titleEnabled>false</titleEnabled>
<width>20</width>
<height>20</height>
<bsbObject type='blue.orchestra.blueSynthBuilder.BSBGroup'>
<objectName></objectName>
<x>10</x>
<y>10</y>
<groupName>frequency</groupName>
<backgroundColor>0x4d8080ff</backgroundColor>
<borderColor>0x1a4d4dff</borderColor>
<labelTextColor>0xffffffff</labelTextColor>
<titleEnabled>true</titleEnabled>
<width>20</width>
<height>20</height>
<bsbObject type='blue.orchestra.blueSynthBuilder.BSBKnob' version='2'>
<objectName>VPhaser_FM Depth</objectName>
<x>70</x>
<y>30</y>
<automationAllowed>true</automationAllowed>
<minimum>0.0</minimum>
<maximum>1000.0</maximum>
<value>280.0</value>
<knobWidth>40</knobWidth>
<randomizable>true</randomizable>
<valueDisplayEnabled>true</valueDisplayEnabled>
<label>Depth</label>
<labelEnabled>true</labelEnabled>
<font>
<name>System Regular</name>
<size>12.0</size>
</font>
</bsbObject>
<bsbObject type='blue.orchestra.blueSynthBuilder.BSBKnob' version='2'>
<objectName>VPhaser_FM</objectName>
<x>10</x>
<y>30</y>
<automationAllowed>true</automationAllowed>
<minimum>0.0</minimum>
<maximum>1.0</maximum>
<value>0.19</value>
<knobWidth>40</knobWidth>
<randomizable>true</randomizable>
<valueDisplayEnabled>true</valueDisplayEnabled>
<label>LFO freq</label>
<labelEnabled>true</labelEnabled>
<font>
<name>System Regular</name>
<size>12.0</size>
</font>
</bsbObject>
<bsbObject type='blue.orchestra.blueSynthBuilder.BSBKnob' version='2'>
<objectName>VPhaser_Q</objectName>
<x>190</x>
<y>30</y>
<automationAllowed>true</automationAllowed>
<minimum>0.0</minimum>
<maximum>1.0</maximum>
<value>0.42</value>
<knobWidth>40</knobWidth>
<randomizable>true</randomizable>
<valueDisplayEnabled>true</valueDisplayEnabled>
<label>Q notch</label>
<labelEnabled>true</labelEnabled>
<font>
<name>System Regular</name>
<size>12.0</size>
</font>
</bsbObject>
<bsbObject type='blue.orchestra.blueSynthBuilder.BSBKnob' version='2'>
<objectName>VPhaser_notches</objectName>
<x>140</x>
<y>30</y>
<automationAllowed>true</automationAllowed>
<minimum>1.0</minimum>
<maximum>200.0</maximum>
<value>30.849999999999998</value>
<knobWidth>40</knobWidth>
<randomizable>true</randomizable>
<valueDisplayEnabled>true</valueDisplayEnabled>
<label>Notch</label>
<labelEnabled>true</labelEnabled>
<font>
<name>System Regular</name>
<size>12.0</size>
</font>
</bsbObject>
<bsbObject type='blue.orchestra.blueSynthBuilder.BSBHSlider' version='2'>
<objectName>VPhaser_Frequency</objectName>
<x>10</x>
<y>0</y>
<automationAllowed>true</automationAllowed>
<minimum>0.0</minimum>
<maximum>8000.0</maximum>
<bdresolution>1</bdresolution>
<value>576.0</value>
<sliderWidth>250</sliderWidth>
<randomizable>true</randomizable>
<valueDisplayEnabled>true</valueDisplayEnabled>
</bsbObject>
<bsbObject type='blue.orchestra.blueSynthBuilder.BSBKnob' version='2'>
<objectName>VPhaser_Feedback</objectName>
<x>240</x>
<y>30</y>
<automationAllowed>true</automationAllowed>
<minimum>0.0</minimum>
<maximum>1.0</maximum>
<value>0.49</value>
<knobWidth>40</knobWidth>
<randomizable>true</randomizable>
<valueDisplayEnabled>true</valueDisplayEnabled>
<label>Feedback</label>
<labelEnabled>true</labelEnabled>
<font>
<name>System Regular</name>
<size>12.0</size>
</font>
</bsbObject>
</bsbObject>
<bsbObject type='blue.orchestra.blueSynthBuilder.BSBLabel' version='2'>
<objectName></objectName>
<x>535</x>
<y>15</y>
<label>mix</label>
<font>
<name>System Regular</name>
<size>12.0</size>
</font>
</bsbObject>
<bsbObject type='blue.orchestra.blueSynthBuilder.BSBVSlider' version='2'>
<objectName>VPhaser_mix</objectName>
<x>530</x>
<y>35</y>
<automationAllowed>true</automationAllowed>
<minimum>0.0</minimum>
<maximum>1.0</maximum>
<bdresolution>0.1</bdresolution>
<value>0.6</value>
<sliderHeight>90</sliderHeight>
<randomizable>true</randomizable>
<valueDisplayEnabled>false</valueDisplayEnabled>
</bsbObject>
<bsbObject type='blue.orchestra.blueSynthBuilder.BSBGroup'>
<objectName></objectName>
<x>330</x>
<y>10</y>
<groupName>Separation</groupName>
<backgroundColor>0x4d8080ff</backgroundColor>
<borderColor>0x1a4d4dff</borderColor>
<labelTextColor>0xffffffff</labelTextColor>
<titleEnabled>true</titleEnabled>
<width>20</width>
<height>20</height>
<bsbObject type='blue.orchestra.blueSynthBuilder.BSBKnob' version='2'>
<objectName>VPhaser_Seperation Modulate</objectName>
<x>80</x>
<y>30</y>
<automationAllowed>true</automationAllowed>
<minimum>0.0</minimum>
<maximum>10.0</maximum>
<value>0.4</value>
<knobWidth>40</knobWidth>
<randomizable>true</randomizable>
<valueDisplayEnabled>true</valueDisplayEnabled>
<label>Modulate</label>
<labelEnabled>true</labelEnabled>
<font>
<name>System Regular</name>
<size>12.0</size>
</font>
</bsbObject>
<bsbObject type='blue.orchestra.blueSynthBuilder.BSBKnob' version='2'>
<objectName>VPhaser_Seperation Modulation Depth</objectName>
<x>150</x>
<y>30</y>
<automationAllowed>true</automationAllowed>
<minimum>0.0</minimum>
<maximum>4.0</maximum>
<value>2.52</value>
<knobWidth>40</knobWidth>
<randomizable>true</randomizable>
<valueDisplayEnabled>true</valueDisplayEnabled>
<label>Depth</label>
<labelEnabled>true</labelEnabled>
<font>
<name>System Regular</name>
<size>12.0</size>
</font>
</bsbObject>
<bsbObject type='blue.orchestra.blueSynthBuilder.BSBKnob' version='2'>
<objectName>VPhaser_Separation</objectName>
<x>6</x>
<y>30</y>
<automationAllowed>true</automationAllowed>
<minimum>0.0</minimum>
<maximum>1.0</maximum>
<value>0.09</value>
<knobWidth>40</knobWidth>
<randomizable>true</randomizable>
<valueDisplayEnabled>true</valueDisplayEnabled>
<label>Separation</label>
<labelEnabled>true</labelEnabled>
<font>
<name>System Regular</name>
<size>12.0</size>
</font>
</bsbObject>
</bsbObject>
</bsbObject>
</bsbObject>
</graphicInterface>
<parameterList>
<parameter uniqueId='-134332852' name='VPhaser_Frequency' label='' min='0.0' max='8000.0' bdresolution='1' automationEnabled='false' value='576.0'>
<line name='' version='2' max='8000.0' min='0.0' bdresolution='1' color='-8355712' rightBound='false' endPointsLinked='false'>
<linePoint x='0.0' y='576.0'/>
</line>
</parameter>
<parameter uniqueId='-1453799094' name='VPhaser_FM Depth' label='' min='0.0' max='1000.0' bdresolution='-1' automationEnabled='false' value='280.0'>
<line name='' version='2' max='1000.0' min='0.0' bdresolution='-1' color='-8355712' rightBound='false' endPointsLinked='false'>
<linePoint x='0.0' y='280.0'/>
</line>
</parameter>
<parameter uniqueId='-1453799092' name='VPhaser_FM' label='' min='0.0' max='1.0' bdresolution='-1' automationEnabled='false' value='0.19'>
<line name='' version='2' max='1.0' min='0.0' bdresolution='-1' color='-8355712' rightBound='false' endPointsLinked='false'>
<linePoint x='0.0' y='0.19'/>
</line>
</parameter>
<parameter uniqueId='-1453799084' name='VPhaser_notches' label='' min='1.0' max='200.0' bdresolution='-1' automationEnabled='false' value='30.849999999999998'>
<line name='' version='2' max='200.0' min='1.0' bdresolution='-1' color='-8355712' rightBound='false' endPointsLinked='false'>
<linePoint x='0.0' y='30.849999999999998'/>
</line>
</parameter>
<parameter uniqueId='-1453799082' name='VPhaser_Feedback' label='' min='0.0' max='1.0' bdresolution='-1' automationEnabled='false' value='0.49'>
<line name='' version='2' max='1.0' min='0.0' bdresolution='-1' color='-8355712' rightBound='false' endPointsLinked='false'>
<linePoint x='0.0' y='0.49'/>
</line>
</parameter>
<parameter uniqueId='-1453799080' name='VPhaser_Q' label='' min='0.0' max='1.0' bdresolution='-1' automationEnabled='false' value='0.42'>
<line name='' version='2' max='1.0' min='0.0' bdresolution='-1' color='-8355712' rightBound='false' endPointsLinked='false'>
<linePoint x='0.0' y='0.42'/>
</line>
</parameter>
<parameter uniqueId='-1453799078' name='VPhaser_Seperation Modulate' label='' min='0.0' max='10.0' bdresolution='-1' automationEnabled='false' value='0.4'>
<line name='' version='2' max='10.0' min='0.0' bdresolution='-1' color='-8355712' rightBound='false' endPointsLinked='false'>
<linePoint x='0.0' y='0.4'/>
</line>
</parameter>
<parameter uniqueId='-1453799076' name='VPhaser_Separation' label='' min='0.0' max='1.0' bdresolution='-1' automationEnabled='false' value='0.09'>
<line name='' version='2' max='1.0' min='0.0' bdresolution='-1' color='-8355712' rightBound='false' endPointsLinked='false'>
<linePoint x='0.0' y='0.09'/>
</line>
</parameter>
<parameter uniqueId='-1453799074' name='VPhaser_Seperation Modulation Depth' label='' min='0.0' max='4.0' bdresolution='-1' automationEnabled='false' value='2.52'>
<line name='' version='2' max='4.0' min='0.0' bdresolution='-1' color='-8355712' rightBound='false' endPointsLinked='false'>
<linePoint x='0.0' y='2.52'/>
</line>
</parameter>
<parameter uniqueId='-208538264' name='VPhaser_mix' label='' min='0.0' max='1.0' bdresolution='0.1' automationEnabled='false' value='0.6'>
<line name='' version='2' max='1.0' min='0.0' bdresolution='0.1' color='-8355712' rightBound='false' endPointsLinked='false'>
<linePoint x='0.0' y='0.6'/>
</line>
</parameter>
<parameter uniqueId='-104104193' name='VPhaserON' label='' min='0.0' max='1.0' bdresolution='1' automationEnabled='false' value='1.0'>
<line name='' version='2' max='1.0' min='0.0' bdresolution='1' color='-8355712' rightBound='false' endPointsLinked='false'>
<linePoint x='0.0' y='1.0'/>
</line>
</parameter>
</parameterList>
</effect>