@effetune/dsp 0.4.0 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +114 -11
- package/dist/assets/effetune-dsp.meta.json +110 -37
- package/dist/assets/effetune-dsp.simd.wasm +0 -0
- package/dist/assets/effetune-dsp.wasm +0 -0
- package/dist/assets.js +23 -0
- package/dist/catalog/effects-v1.json +1041 -87
- package/dist/denormal-noise.js +15 -0
- package/dist/effect.js +1 -0
- package/dist/errors.js +21 -0
- package/dist/generated-effects.d.ts +201 -5
- package/dist/generated-effects.js +120 -3
- package/dist/generated-graph-contract.js +8 -0
- package/dist/graph-document.js +644 -0
- package/dist/graph-engine.js +493 -0
- package/dist/graph.js +467 -0
- package/dist/index.d.ts +253 -1
- package/dist/index.js +26 -0
- package/dist/internal/dsp-engine-binding.js +142 -1
- package/dist/internal/dsp-params.generated.js +438 -16
- package/dist/preset.js +29 -0
- package/dist/runtime.js +73 -5
- package/dist/schemas/chain-v1.schema.json +1109 -48
- package/dist/schemas/graph-v1.schema.json +8416 -0
- package/dist/semantics.js +89 -30
- package/dist/worklet-processor.js +8 -1
- package/dist/worklet.d.ts +1 -0
- package/dist/worklet.js +15 -0
- package/package.json +2 -1
|
@@ -158,6 +158,9 @@
|
|
|
158
158
|
{
|
|
159
159
|
"$ref": "#/$defs/GroupDelayEQ"
|
|
160
160
|
},
|
|
161
|
+
{
|
|
162
|
+
"$ref": "#/$defs/GroupDelayPEQ"
|
|
163
|
+
},
|
|
161
164
|
{
|
|
162
165
|
"$ref": "#/$defs/HiPassFilter"
|
|
163
166
|
},
|
|
@@ -209,6 +212,9 @@
|
|
|
209
212
|
{
|
|
210
213
|
"$ref": "#/$defs/HumGenerator"
|
|
211
214
|
},
|
|
215
|
+
{
|
|
216
|
+
"$ref": "#/$defs/MDSimulator"
|
|
217
|
+
},
|
|
212
218
|
{
|
|
213
219
|
"$ref": "#/$defs/MP3CodecSimulator"
|
|
214
220
|
},
|
|
@@ -230,12 +236,30 @@
|
|
|
230
236
|
{
|
|
231
237
|
"$ref": "#/$defs/VinylSimulator"
|
|
232
238
|
},
|
|
239
|
+
{
|
|
240
|
+
"$ref": "#/$defs/AutoFilter"
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
"$ref": "#/$defs/AutoPan"
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"$ref": "#/$defs/Chorus"
|
|
247
|
+
},
|
|
233
248
|
{
|
|
234
249
|
"$ref": "#/$defs/DopplerDistortion"
|
|
235
250
|
},
|
|
251
|
+
{
|
|
252
|
+
"$ref": "#/$defs/FrequencyShifter"
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
"$ref": "#/$defs/Phaser"
|
|
256
|
+
},
|
|
236
257
|
{
|
|
237
258
|
"$ref": "#/$defs/PitchShifter"
|
|
238
259
|
},
|
|
260
|
+
{
|
|
261
|
+
"$ref": "#/$defs/RotarySpeaker"
|
|
262
|
+
},
|
|
239
263
|
{
|
|
240
264
|
"$ref": "#/$defs/Tremolo"
|
|
241
265
|
},
|
|
@@ -299,6 +323,9 @@
|
|
|
299
323
|
{
|
|
300
324
|
"$ref": "#/$defs/MultibandBalance"
|
|
301
325
|
},
|
|
326
|
+
{
|
|
327
|
+
"$ref": "#/$defs/PhaseSelectEQ"
|
|
328
|
+
},
|
|
302
329
|
{
|
|
303
330
|
"$ref": "#/$defs/StereoBlend"
|
|
304
331
|
}
|
|
@@ -3117,6 +3144,67 @@
|
|
|
3117
3144
|
}
|
|
3118
3145
|
}
|
|
3119
3146
|
},
|
|
3147
|
+
"GroupDelayPEQ": {
|
|
3148
|
+
"type": "object",
|
|
3149
|
+
"additionalProperties": false,
|
|
3150
|
+
"required": [
|
|
3151
|
+
"type",
|
|
3152
|
+
"parameters",
|
|
3153
|
+
"assets"
|
|
3154
|
+
],
|
|
3155
|
+
"properties": {
|
|
3156
|
+
"id": {
|
|
3157
|
+
"type": "string",
|
|
3158
|
+
"minLength": 1,
|
|
3159
|
+
"maxLength": 128
|
|
3160
|
+
},
|
|
3161
|
+
"type": {
|
|
3162
|
+
"const": "GroupDelayPEQ"
|
|
3163
|
+
},
|
|
3164
|
+
"enabled": {
|
|
3165
|
+
"type": "boolean",
|
|
3166
|
+
"default": true
|
|
3167
|
+
},
|
|
3168
|
+
"channel": {
|
|
3169
|
+
"$ref": "#/$defs/channel"
|
|
3170
|
+
},
|
|
3171
|
+
"parameters": {
|
|
3172
|
+
"type": "object",
|
|
3173
|
+
"additionalProperties": false,
|
|
3174
|
+
"properties": {
|
|
3175
|
+
"latencyMode": {
|
|
3176
|
+
"type": "string",
|
|
3177
|
+
"enum": [
|
|
3178
|
+
"0",
|
|
3179
|
+
"128",
|
|
3180
|
+
"256",
|
|
3181
|
+
"512",
|
|
3182
|
+
"1024"
|
|
3183
|
+
],
|
|
3184
|
+
"default": "128"
|
|
3185
|
+
},
|
|
3186
|
+
"filterDelaySamples": {
|
|
3187
|
+
"type": "integer",
|
|
3188
|
+
"minimum": 0,
|
|
3189
|
+
"maximum": 65536,
|
|
3190
|
+
"default": 8192
|
|
3191
|
+
}
|
|
3192
|
+
}
|
|
3193
|
+
},
|
|
3194
|
+
"assets": {
|
|
3195
|
+
"type": "object",
|
|
3196
|
+
"additionalProperties": false,
|
|
3197
|
+
"required": [
|
|
3198
|
+
"impulseResponse"
|
|
3199
|
+
],
|
|
3200
|
+
"properties": {
|
|
3201
|
+
"impulseResponse": {
|
|
3202
|
+
"$ref": "#/$defs/assetReference"
|
|
3203
|
+
}
|
|
3204
|
+
}
|
|
3205
|
+
}
|
|
3206
|
+
}
|
|
3207
|
+
},
|
|
3120
3208
|
"HiPassFilter": {
|
|
3121
3209
|
"type": "object",
|
|
3122
3210
|
"additionalProperties": false,
|
|
@@ -4478,6 +4566,60 @@
|
|
|
4478
4566
|
}
|
|
4479
4567
|
}
|
|
4480
4568
|
},
|
|
4569
|
+
"MDSimulator": {
|
|
4570
|
+
"type": "object",
|
|
4571
|
+
"additionalProperties": false,
|
|
4572
|
+
"required": [
|
|
4573
|
+
"type",
|
|
4574
|
+
"parameters"
|
|
4575
|
+
],
|
|
4576
|
+
"properties": {
|
|
4577
|
+
"id": {
|
|
4578
|
+
"type": "string",
|
|
4579
|
+
"minLength": 1,
|
|
4580
|
+
"maxLength": 128
|
|
4581
|
+
},
|
|
4582
|
+
"type": {
|
|
4583
|
+
"const": "MDSimulator"
|
|
4584
|
+
},
|
|
4585
|
+
"enabled": {
|
|
4586
|
+
"type": "boolean",
|
|
4587
|
+
"default": true
|
|
4588
|
+
},
|
|
4589
|
+
"channel": {
|
|
4590
|
+
"$ref": "#/$defs/channel"
|
|
4591
|
+
},
|
|
4592
|
+
"parameters": {
|
|
4593
|
+
"type": "object",
|
|
4594
|
+
"additionalProperties": false,
|
|
4595
|
+
"properties": {
|
|
4596
|
+
"mode": {
|
|
4597
|
+
"type": "string",
|
|
4598
|
+
"enum": [
|
|
4599
|
+
"SP (292 kbps)",
|
|
4600
|
+
"LP2 (132 kbps)",
|
|
4601
|
+
"LP4 (66 kbps)"
|
|
4602
|
+
],
|
|
4603
|
+
"default": "SP (292 kbps)"
|
|
4604
|
+
},
|
|
4605
|
+
"outputGain": {
|
|
4606
|
+
"type": "number",
|
|
4607
|
+
"minimum": -24,
|
|
4608
|
+
"maximum": 12,
|
|
4609
|
+
"x-effetune-unit": "dB",
|
|
4610
|
+
"default": 0
|
|
4611
|
+
},
|
|
4612
|
+
"mix": {
|
|
4613
|
+
"type": "number",
|
|
4614
|
+
"minimum": 0,
|
|
4615
|
+
"maximum": 100,
|
|
4616
|
+
"x-effetune-unit": "%",
|
|
4617
|
+
"default": 100
|
|
4618
|
+
}
|
|
4619
|
+
}
|
|
4620
|
+
}
|
|
4621
|
+
}
|
|
4622
|
+
},
|
|
4481
4623
|
"MP3CodecSimulator": {
|
|
4482
4624
|
"type": "object",
|
|
4483
4625
|
"additionalProperties": false,
|
|
@@ -5234,7 +5376,7 @@
|
|
|
5234
5376
|
}
|
|
5235
5377
|
}
|
|
5236
5378
|
},
|
|
5237
|
-
"
|
|
5379
|
+
"AutoFilter": {
|
|
5238
5380
|
"type": "object",
|
|
5239
5381
|
"additionalProperties": false,
|
|
5240
5382
|
"required": [
|
|
@@ -5248,7 +5390,7 @@
|
|
|
5248
5390
|
"maxLength": 128
|
|
5249
5391
|
},
|
|
5250
5392
|
"type": {
|
|
5251
|
-
"const": "
|
|
5393
|
+
"const": "AutoFilter"
|
|
5252
5394
|
},
|
|
5253
5395
|
"enabled": {
|
|
5254
5396
|
"type": "boolean",
|
|
@@ -5261,39 +5403,107 @@
|
|
|
5261
5403
|
"type": "object",
|
|
5262
5404
|
"additionalProperties": false,
|
|
5263
5405
|
"properties": {
|
|
5264
|
-
"
|
|
5406
|
+
"mode": {
|
|
5407
|
+
"type": "string",
|
|
5408
|
+
"enum": [
|
|
5409
|
+
"LFO",
|
|
5410
|
+
"Envelope"
|
|
5411
|
+
],
|
|
5412
|
+
"default": "LFO"
|
|
5413
|
+
},
|
|
5414
|
+
"filterType": {
|
|
5415
|
+
"type": "string",
|
|
5416
|
+
"enum": [
|
|
5417
|
+
"Low-pass",
|
|
5418
|
+
"Band-pass",
|
|
5419
|
+
"High-pass"
|
|
5420
|
+
],
|
|
5421
|
+
"default": "Low-pass"
|
|
5422
|
+
},
|
|
5423
|
+
"minimumFrequency": {
|
|
5424
|
+
"type": "number",
|
|
5425
|
+
"minimum": 20,
|
|
5426
|
+
"maximum": 20000,
|
|
5427
|
+
"x-effetune-unit": "Hz",
|
|
5428
|
+
"default": 200
|
|
5429
|
+
},
|
|
5430
|
+
"maximumFrequency": {
|
|
5431
|
+
"type": "number",
|
|
5432
|
+
"minimum": 20,
|
|
5433
|
+
"maximum": 20000,
|
|
5434
|
+
"x-effetune-unit": "Hz",
|
|
5435
|
+
"default": 4000
|
|
5436
|
+
},
|
|
5437
|
+
"resonance": {
|
|
5438
|
+
"type": "number",
|
|
5439
|
+
"minimum": 0.5,
|
|
5440
|
+
"maximum": 20,
|
|
5441
|
+
"x-effetune-unit": "Q",
|
|
5442
|
+
"default": 1.5
|
|
5443
|
+
},
|
|
5444
|
+
"mix": {
|
|
5265
5445
|
"type": "number",
|
|
5266
5446
|
"minimum": 0,
|
|
5267
5447
|
"maximum": 100,
|
|
5268
|
-
"x-effetune-unit": "
|
|
5269
|
-
"default":
|
|
5448
|
+
"x-effetune-unit": "%",
|
|
5449
|
+
"default": 80
|
|
5270
5450
|
},
|
|
5271
|
-
"
|
|
5451
|
+
"rate": {
|
|
5272
5452
|
"type": "number",
|
|
5273
|
-
"minimum": 0.
|
|
5274
|
-
"maximum":
|
|
5275
|
-
"x-effetune-unit": "
|
|
5276
|
-
"default": 0.
|
|
5453
|
+
"minimum": 0.05,
|
|
5454
|
+
"maximum": 20,
|
|
5455
|
+
"x-effetune-unit": "Hz",
|
|
5456
|
+
"default": 0.5
|
|
5277
5457
|
},
|
|
5278
|
-
"
|
|
5458
|
+
"waveform": {
|
|
5459
|
+
"type": "string",
|
|
5460
|
+
"enum": [
|
|
5461
|
+
"Sine",
|
|
5462
|
+
"Triangle"
|
|
5463
|
+
],
|
|
5464
|
+
"default": "Sine"
|
|
5465
|
+
},
|
|
5466
|
+
"stereoPhase": {
|
|
5279
5467
|
"type": "number",
|
|
5280
|
-
"minimum":
|
|
5281
|
-
"maximum":
|
|
5282
|
-
"x-effetune-unit": "
|
|
5283
|
-
"default":
|
|
5468
|
+
"minimum": 0,
|
|
5469
|
+
"maximum": 180,
|
|
5470
|
+
"x-effetune-unit": "deg",
|
|
5471
|
+
"default": 0
|
|
5284
5472
|
},
|
|
5285
|
-
"
|
|
5473
|
+
"sensitivity": {
|
|
5286
5474
|
"type": "number",
|
|
5287
5475
|
"minimum": 0,
|
|
5288
|
-
"maximum":
|
|
5289
|
-
"x-effetune-unit": "
|
|
5290
|
-
"default":
|
|
5476
|
+
"maximum": 60,
|
|
5477
|
+
"x-effetune-unit": "dB",
|
|
5478
|
+
"default": 24
|
|
5479
|
+
},
|
|
5480
|
+
"attack": {
|
|
5481
|
+
"type": "number",
|
|
5482
|
+
"minimum": 1,
|
|
5483
|
+
"maximum": 500,
|
|
5484
|
+
"x-effetune-unit": "ms",
|
|
5485
|
+
"default": 20
|
|
5486
|
+
},
|
|
5487
|
+
"release": {
|
|
5488
|
+
"type": "number",
|
|
5489
|
+
"minimum": 10,
|
|
5490
|
+
"maximum": 2000,
|
|
5491
|
+
"x-effetune-unit": "ms",
|
|
5492
|
+
"default": 250
|
|
5493
|
+
},
|
|
5494
|
+
"direction": {
|
|
5495
|
+
"type": "string",
|
|
5496
|
+
"enum": [
|
|
5497
|
+
"Up",
|
|
5498
|
+
"Down"
|
|
5499
|
+
],
|
|
5500
|
+
"default": "Up"
|
|
5291
5501
|
}
|
|
5292
5502
|
}
|
|
5293
5503
|
}
|
|
5294
5504
|
}
|
|
5295
5505
|
},
|
|
5296
|
-
"
|
|
5506
|
+
"AutoPan": {
|
|
5297
5507
|
"type": "object",
|
|
5298
5508
|
"additionalProperties": false,
|
|
5299
5509
|
"required": [
|
|
@@ -5307,7 +5517,7 @@
|
|
|
5307
5517
|
"maxLength": 128
|
|
5308
5518
|
},
|
|
5309
5519
|
"type": {
|
|
5310
|
-
"const": "
|
|
5520
|
+
"const": "AutoPan"
|
|
5311
5521
|
},
|
|
5312
5522
|
"enabled": {
|
|
5313
5523
|
"type": "boolean",
|
|
@@ -5320,28 +5530,449 @@
|
|
|
5320
5530
|
"type": "object",
|
|
5321
5531
|
"additionalProperties": false,
|
|
5322
5532
|
"properties": {
|
|
5323
|
-
"
|
|
5324
|
-
"type": "
|
|
5325
|
-
"minimum":
|
|
5326
|
-
"maximum":
|
|
5327
|
-
"x-effetune-unit": "
|
|
5328
|
-
"default": 0
|
|
5533
|
+
"rate": {
|
|
5534
|
+
"type": "number",
|
|
5535
|
+
"minimum": 0.05,
|
|
5536
|
+
"maximum": 20,
|
|
5537
|
+
"x-effetune-unit": "Hz",
|
|
5538
|
+
"default": 0.35
|
|
5329
5539
|
},
|
|
5330
|
-
"
|
|
5331
|
-
"type": "
|
|
5332
|
-
"minimum":
|
|
5333
|
-
"maximum":
|
|
5334
|
-
"x-effetune-unit": "
|
|
5540
|
+
"depth": {
|
|
5541
|
+
"type": "number",
|
|
5542
|
+
"minimum": 0,
|
|
5543
|
+
"maximum": 100,
|
|
5544
|
+
"x-effetune-unit": "%",
|
|
5545
|
+
"default": 45
|
|
5546
|
+
},
|
|
5547
|
+
"center": {
|
|
5548
|
+
"type": "number",
|
|
5549
|
+
"minimum": -100,
|
|
5550
|
+
"maximum": 100,
|
|
5551
|
+
"x-effetune-unit": "%",
|
|
5335
5552
|
"default": 0
|
|
5336
5553
|
},
|
|
5337
|
-
"
|
|
5338
|
-
"type": "
|
|
5339
|
-
"minimum":
|
|
5340
|
-
"maximum":
|
|
5341
|
-
"x-effetune-unit": "
|
|
5342
|
-
"default":
|
|
5554
|
+
"width": {
|
|
5555
|
+
"type": "number",
|
|
5556
|
+
"minimum": 0,
|
|
5557
|
+
"maximum": 100,
|
|
5558
|
+
"x-effetune-unit": "%",
|
|
5559
|
+
"default": 70
|
|
5343
5560
|
},
|
|
5344
|
-
"
|
|
5561
|
+
"waveform": {
|
|
5562
|
+
"type": "string",
|
|
5563
|
+
"enum": [
|
|
5564
|
+
"Sine",
|
|
5565
|
+
"Triangle"
|
|
5566
|
+
],
|
|
5567
|
+
"default": "Sine"
|
|
5568
|
+
},
|
|
5569
|
+
"phase": {
|
|
5570
|
+
"type": "number",
|
|
5571
|
+
"minimum": 0,
|
|
5572
|
+
"maximum": 360,
|
|
5573
|
+
"x-effetune-unit": "deg",
|
|
5574
|
+
"default": 0
|
|
5575
|
+
}
|
|
5576
|
+
}
|
|
5577
|
+
}
|
|
5578
|
+
}
|
|
5579
|
+
},
|
|
5580
|
+
"Chorus": {
|
|
5581
|
+
"type": "object",
|
|
5582
|
+
"additionalProperties": false,
|
|
5583
|
+
"required": [
|
|
5584
|
+
"type",
|
|
5585
|
+
"parameters"
|
|
5586
|
+
],
|
|
5587
|
+
"properties": {
|
|
5588
|
+
"id": {
|
|
5589
|
+
"type": "string",
|
|
5590
|
+
"minLength": 1,
|
|
5591
|
+
"maxLength": 128
|
|
5592
|
+
},
|
|
5593
|
+
"type": {
|
|
5594
|
+
"const": "Chorus"
|
|
5595
|
+
},
|
|
5596
|
+
"enabled": {
|
|
5597
|
+
"type": "boolean",
|
|
5598
|
+
"default": true
|
|
5599
|
+
},
|
|
5600
|
+
"channel": {
|
|
5601
|
+
"$ref": "#/$defs/channel"
|
|
5602
|
+
},
|
|
5603
|
+
"parameters": {
|
|
5604
|
+
"type": "object",
|
|
5605
|
+
"additionalProperties": false,
|
|
5606
|
+
"properties": {
|
|
5607
|
+
"mode": {
|
|
5608
|
+
"type": "string",
|
|
5609
|
+
"enum": [
|
|
5610
|
+
"Chorus",
|
|
5611
|
+
"Stereo Chorus",
|
|
5612
|
+
"Ensemble",
|
|
5613
|
+
"Flanger",
|
|
5614
|
+
"Vibrato"
|
|
5615
|
+
],
|
|
5616
|
+
"default": "Chorus"
|
|
5617
|
+
},
|
|
5618
|
+
"rate": {
|
|
5619
|
+
"type": "number",
|
|
5620
|
+
"minimum": 0.05,
|
|
5621
|
+
"maximum": 10,
|
|
5622
|
+
"x-effetune-unit": "Hz",
|
|
5623
|
+
"default": 0.8
|
|
5624
|
+
},
|
|
5625
|
+
"delay": {
|
|
5626
|
+
"type": "number",
|
|
5627
|
+
"minimum": 0.5,
|
|
5628
|
+
"maximum": 30,
|
|
5629
|
+
"x-effetune-unit": "ms",
|
|
5630
|
+
"default": 12
|
|
5631
|
+
},
|
|
5632
|
+
"depth": {
|
|
5633
|
+
"type": "number",
|
|
5634
|
+
"minimum": 0,
|
|
5635
|
+
"maximum": 20,
|
|
5636
|
+
"x-effetune-unit": "ms",
|
|
5637
|
+
"default": 3
|
|
5638
|
+
},
|
|
5639
|
+
"voices": {
|
|
5640
|
+
"type": "integer",
|
|
5641
|
+
"minimum": 1,
|
|
5642
|
+
"maximum": 6,
|
|
5643
|
+
"default": 3
|
|
5644
|
+
},
|
|
5645
|
+
"stereoSpread": {
|
|
5646
|
+
"type": "number",
|
|
5647
|
+
"minimum": 0,
|
|
5648
|
+
"maximum": 100,
|
|
5649
|
+
"x-effetune-unit": "%",
|
|
5650
|
+
"default": 60
|
|
5651
|
+
},
|
|
5652
|
+
"feedback": {
|
|
5653
|
+
"type": "number",
|
|
5654
|
+
"minimum": -75,
|
|
5655
|
+
"maximum": 75,
|
|
5656
|
+
"x-effetune-unit": "%",
|
|
5657
|
+
"default": 0
|
|
5658
|
+
},
|
|
5659
|
+
"mix": {
|
|
5660
|
+
"type": "number",
|
|
5661
|
+
"minimum": 0,
|
|
5662
|
+
"maximum": 100,
|
|
5663
|
+
"x-effetune-unit": "%",
|
|
5664
|
+
"default": 45
|
|
5665
|
+
}
|
|
5666
|
+
}
|
|
5667
|
+
}
|
|
5668
|
+
}
|
|
5669
|
+
},
|
|
5670
|
+
"DopplerDistortion": {
|
|
5671
|
+
"type": "object",
|
|
5672
|
+
"additionalProperties": false,
|
|
5673
|
+
"required": [
|
|
5674
|
+
"type",
|
|
5675
|
+
"parameters"
|
|
5676
|
+
],
|
|
5677
|
+
"properties": {
|
|
5678
|
+
"id": {
|
|
5679
|
+
"type": "string",
|
|
5680
|
+
"minLength": 1,
|
|
5681
|
+
"maxLength": 128
|
|
5682
|
+
},
|
|
5683
|
+
"type": {
|
|
5684
|
+
"const": "DopplerDistortion"
|
|
5685
|
+
},
|
|
5686
|
+
"enabled": {
|
|
5687
|
+
"type": "boolean",
|
|
5688
|
+
"default": true
|
|
5689
|
+
},
|
|
5690
|
+
"channel": {
|
|
5691
|
+
"$ref": "#/$defs/channel"
|
|
5692
|
+
},
|
|
5693
|
+
"parameters": {
|
|
5694
|
+
"type": "object",
|
|
5695
|
+
"additionalProperties": false,
|
|
5696
|
+
"properties": {
|
|
5697
|
+
"coilForce": {
|
|
5698
|
+
"type": "number",
|
|
5699
|
+
"minimum": 0,
|
|
5700
|
+
"maximum": 100,
|
|
5701
|
+
"x-effetune-unit": "N / V",
|
|
5702
|
+
"default": 8
|
|
5703
|
+
},
|
|
5704
|
+
"speakerMass": {
|
|
5705
|
+
"type": "number",
|
|
5706
|
+
"minimum": 0.001,
|
|
5707
|
+
"maximum": 0.5,
|
|
5708
|
+
"x-effetune-unit": "kg",
|
|
5709
|
+
"default": 0.03
|
|
5710
|
+
},
|
|
5711
|
+
"springConstant": {
|
|
5712
|
+
"type": "number",
|
|
5713
|
+
"minimum": 1,
|
|
5714
|
+
"maximum": 100000,
|
|
5715
|
+
"x-effetune-unit": "N/m",
|
|
5716
|
+
"default": 6000
|
|
5717
|
+
},
|
|
5718
|
+
"dampingFactor": {
|
|
5719
|
+
"type": "number",
|
|
5720
|
+
"minimum": 0,
|
|
5721
|
+
"maximum": 50,
|
|
5722
|
+
"x-effetune-unit": "N*s/m",
|
|
5723
|
+
"default": 1.5
|
|
5724
|
+
}
|
|
5725
|
+
}
|
|
5726
|
+
}
|
|
5727
|
+
}
|
|
5728
|
+
},
|
|
5729
|
+
"FrequencyShifter": {
|
|
5730
|
+
"type": "object",
|
|
5731
|
+
"additionalProperties": false,
|
|
5732
|
+
"required": [
|
|
5733
|
+
"type",
|
|
5734
|
+
"parameters"
|
|
5735
|
+
],
|
|
5736
|
+
"properties": {
|
|
5737
|
+
"id": {
|
|
5738
|
+
"type": "string",
|
|
5739
|
+
"minLength": 1,
|
|
5740
|
+
"maxLength": 128
|
|
5741
|
+
},
|
|
5742
|
+
"type": {
|
|
5743
|
+
"const": "FrequencyShifter"
|
|
5744
|
+
},
|
|
5745
|
+
"enabled": {
|
|
5746
|
+
"type": "boolean",
|
|
5747
|
+
"default": true
|
|
5748
|
+
},
|
|
5749
|
+
"channel": {
|
|
5750
|
+
"$ref": "#/$defs/channel"
|
|
5751
|
+
},
|
|
5752
|
+
"parameters": {
|
|
5753
|
+
"type": "object",
|
|
5754
|
+
"additionalProperties": false,
|
|
5755
|
+
"properties": {
|
|
5756
|
+
"mode": {
|
|
5757
|
+
"type": "string",
|
|
5758
|
+
"enum": [
|
|
5759
|
+
"Shift",
|
|
5760
|
+
"Ring Mod",
|
|
5761
|
+
"Barber-pole"
|
|
5762
|
+
],
|
|
5763
|
+
"default": "Shift"
|
|
5764
|
+
},
|
|
5765
|
+
"shift": {
|
|
5766
|
+
"type": "number",
|
|
5767
|
+
"minimum": -5000,
|
|
5768
|
+
"maximum": 5000,
|
|
5769
|
+
"x-effetune-unit": "Hz",
|
|
5770
|
+
"default": 8
|
|
5771
|
+
},
|
|
5772
|
+
"carrierFrequency": {
|
|
5773
|
+
"type": "number",
|
|
5774
|
+
"minimum": 0.1,
|
|
5775
|
+
"maximum": 10000,
|
|
5776
|
+
"x-effetune-unit": "Hz",
|
|
5777
|
+
"default": 440
|
|
5778
|
+
},
|
|
5779
|
+
"minimumShift": {
|
|
5780
|
+
"type": "number",
|
|
5781
|
+
"minimum": 0,
|
|
5782
|
+
"maximum": 5000,
|
|
5783
|
+
"x-effetune-unit": "Hz",
|
|
5784
|
+
"default": 20
|
|
5785
|
+
},
|
|
5786
|
+
"maximumShift": {
|
|
5787
|
+
"type": "number",
|
|
5788
|
+
"minimum": 0,
|
|
5789
|
+
"maximum": 5000,
|
|
5790
|
+
"x-effetune-unit": "Hz",
|
|
5791
|
+
"default": 800
|
|
5792
|
+
},
|
|
5793
|
+
"rate": {
|
|
5794
|
+
"type": "number",
|
|
5795
|
+
"minimum": 0.01,
|
|
5796
|
+
"maximum": 2,
|
|
5797
|
+
"x-effetune-unit": "Hz",
|
|
5798
|
+
"default": 0.15
|
|
5799
|
+
},
|
|
5800
|
+
"direction": {
|
|
5801
|
+
"type": "string",
|
|
5802
|
+
"enum": [
|
|
5803
|
+
"Up",
|
|
5804
|
+
"Down"
|
|
5805
|
+
],
|
|
5806
|
+
"default": "Up"
|
|
5807
|
+
},
|
|
5808
|
+
"stereoPhase": {
|
|
5809
|
+
"type": "number",
|
|
5810
|
+
"minimum": 0,
|
|
5811
|
+
"maximum": 180,
|
|
5812
|
+
"x-effetune-unit": "degrees",
|
|
5813
|
+
"default": 0
|
|
5814
|
+
},
|
|
5815
|
+
"mix": {
|
|
5816
|
+
"type": "number",
|
|
5817
|
+
"minimum": 0,
|
|
5818
|
+
"maximum": 100,
|
|
5819
|
+
"x-effetune-unit": "%",
|
|
5820
|
+
"default": 100
|
|
5821
|
+
}
|
|
5822
|
+
}
|
|
5823
|
+
}
|
|
5824
|
+
}
|
|
5825
|
+
},
|
|
5826
|
+
"Phaser": {
|
|
5827
|
+
"type": "object",
|
|
5828
|
+
"additionalProperties": false,
|
|
5829
|
+
"required": [
|
|
5830
|
+
"type",
|
|
5831
|
+
"parameters"
|
|
5832
|
+
],
|
|
5833
|
+
"properties": {
|
|
5834
|
+
"id": {
|
|
5835
|
+
"type": "string",
|
|
5836
|
+
"minLength": 1,
|
|
5837
|
+
"maxLength": 128
|
|
5838
|
+
},
|
|
5839
|
+
"type": {
|
|
5840
|
+
"const": "Phaser"
|
|
5841
|
+
},
|
|
5842
|
+
"enabled": {
|
|
5843
|
+
"type": "boolean",
|
|
5844
|
+
"default": true
|
|
5845
|
+
},
|
|
5846
|
+
"channel": {
|
|
5847
|
+
"$ref": "#/$defs/channel"
|
|
5848
|
+
},
|
|
5849
|
+
"parameters": {
|
|
5850
|
+
"type": "object",
|
|
5851
|
+
"additionalProperties": false,
|
|
5852
|
+
"properties": {
|
|
5853
|
+
"mode": {
|
|
5854
|
+
"type": "string",
|
|
5855
|
+
"enum": [
|
|
5856
|
+
"Classic",
|
|
5857
|
+
"Barber-pole"
|
|
5858
|
+
],
|
|
5859
|
+
"default": "Classic"
|
|
5860
|
+
},
|
|
5861
|
+
"rate": {
|
|
5862
|
+
"type": "number",
|
|
5863
|
+
"minimum": 0.05,
|
|
5864
|
+
"maximum": 10,
|
|
5865
|
+
"x-effetune-unit": "Hz",
|
|
5866
|
+
"default": 0.5
|
|
5867
|
+
},
|
|
5868
|
+
"centerFrequency": {
|
|
5869
|
+
"type": "number",
|
|
5870
|
+
"minimum": 80,
|
|
5871
|
+
"maximum": 8000,
|
|
5872
|
+
"x-effetune-unit": "Hz",
|
|
5873
|
+
"default": 1000
|
|
5874
|
+
},
|
|
5875
|
+
"range": {
|
|
5876
|
+
"type": "number",
|
|
5877
|
+
"minimum": 0,
|
|
5878
|
+
"maximum": 6,
|
|
5879
|
+
"x-effetune-unit": "octaves",
|
|
5880
|
+
"default": 3
|
|
5881
|
+
},
|
|
5882
|
+
"stages": {
|
|
5883
|
+
"type": "integer",
|
|
5884
|
+
"enum": [
|
|
5885
|
+
2,
|
|
5886
|
+
4,
|
|
5887
|
+
6,
|
|
5888
|
+
8,
|
|
5889
|
+
10,
|
|
5890
|
+
12
|
|
5891
|
+
],
|
|
5892
|
+
"default": 6
|
|
5893
|
+
},
|
|
5894
|
+
"feedback": {
|
|
5895
|
+
"type": "number",
|
|
5896
|
+
"minimum": -90,
|
|
5897
|
+
"maximum": 90,
|
|
5898
|
+
"x-effetune-unit": "%",
|
|
5899
|
+
"default": 20
|
|
5900
|
+
},
|
|
5901
|
+
"stereoPhase": {
|
|
5902
|
+
"type": "number",
|
|
5903
|
+
"minimum": 0,
|
|
5904
|
+
"maximum": 180,
|
|
5905
|
+
"x-effetune-unit": "degrees",
|
|
5906
|
+
"default": 90
|
|
5907
|
+
},
|
|
5908
|
+
"direction": {
|
|
5909
|
+
"type": "string",
|
|
5910
|
+
"enum": [
|
|
5911
|
+
"Up",
|
|
5912
|
+
"Down"
|
|
5913
|
+
],
|
|
5914
|
+
"default": "Up"
|
|
5915
|
+
},
|
|
5916
|
+
"mix": {
|
|
5917
|
+
"type": "number",
|
|
5918
|
+
"minimum": 0,
|
|
5919
|
+
"maximum": 100,
|
|
5920
|
+
"x-effetune-unit": "%",
|
|
5921
|
+
"default": 50
|
|
5922
|
+
}
|
|
5923
|
+
}
|
|
5924
|
+
}
|
|
5925
|
+
}
|
|
5926
|
+
},
|
|
5927
|
+
"PitchShifter": {
|
|
5928
|
+
"type": "object",
|
|
5929
|
+
"additionalProperties": false,
|
|
5930
|
+
"required": [
|
|
5931
|
+
"type",
|
|
5932
|
+
"parameters"
|
|
5933
|
+
],
|
|
5934
|
+
"properties": {
|
|
5935
|
+
"id": {
|
|
5936
|
+
"type": "string",
|
|
5937
|
+
"minLength": 1,
|
|
5938
|
+
"maxLength": 128
|
|
5939
|
+
},
|
|
5940
|
+
"type": {
|
|
5941
|
+
"const": "PitchShifter"
|
|
5942
|
+
},
|
|
5943
|
+
"enabled": {
|
|
5944
|
+
"type": "boolean",
|
|
5945
|
+
"default": true
|
|
5946
|
+
},
|
|
5947
|
+
"channel": {
|
|
5948
|
+
"$ref": "#/$defs/channel"
|
|
5949
|
+
},
|
|
5950
|
+
"parameters": {
|
|
5951
|
+
"type": "object",
|
|
5952
|
+
"additionalProperties": false,
|
|
5953
|
+
"properties": {
|
|
5954
|
+
"pitchShift": {
|
|
5955
|
+
"type": "integer",
|
|
5956
|
+
"minimum": -6,
|
|
5957
|
+
"maximum": 6,
|
|
5958
|
+
"x-effetune-unit": "semitones",
|
|
5959
|
+
"default": 0
|
|
5960
|
+
},
|
|
5961
|
+
"fineTune": {
|
|
5962
|
+
"type": "integer",
|
|
5963
|
+
"minimum": -50,
|
|
5964
|
+
"maximum": 50,
|
|
5965
|
+
"x-effetune-unit": "cents",
|
|
5966
|
+
"default": 0
|
|
5967
|
+
},
|
|
5968
|
+
"windowSize": {
|
|
5969
|
+
"type": "integer",
|
|
5970
|
+
"minimum": 80,
|
|
5971
|
+
"maximum": 500,
|
|
5972
|
+
"x-effetune-unit": "ms",
|
|
5973
|
+
"default": 150
|
|
5974
|
+
},
|
|
5975
|
+
"crossfadeTime": {
|
|
5345
5976
|
"type": "number",
|
|
5346
5977
|
"minimum": 20,
|
|
5347
5978
|
"maximum": 40,
|
|
@@ -5352,6 +5983,102 @@
|
|
|
5352
5983
|
}
|
|
5353
5984
|
}
|
|
5354
5985
|
},
|
|
5986
|
+
"RotarySpeaker": {
|
|
5987
|
+
"type": "object",
|
|
5988
|
+
"additionalProperties": false,
|
|
5989
|
+
"required": [
|
|
5990
|
+
"type",
|
|
5991
|
+
"parameters"
|
|
5992
|
+
],
|
|
5993
|
+
"properties": {
|
|
5994
|
+
"id": {
|
|
5995
|
+
"type": "string",
|
|
5996
|
+
"minLength": 1,
|
|
5997
|
+
"maxLength": 128
|
|
5998
|
+
},
|
|
5999
|
+
"type": {
|
|
6000
|
+
"const": "RotarySpeaker"
|
|
6001
|
+
},
|
|
6002
|
+
"enabled": {
|
|
6003
|
+
"type": "boolean",
|
|
6004
|
+
"default": true
|
|
6005
|
+
},
|
|
6006
|
+
"channel": {
|
|
6007
|
+
"$ref": "#/$defs/channel"
|
|
6008
|
+
},
|
|
6009
|
+
"parameters": {
|
|
6010
|
+
"type": "object",
|
|
6011
|
+
"additionalProperties": false,
|
|
6012
|
+
"properties": {
|
|
6013
|
+
"speedState": {
|
|
6014
|
+
"type": "string",
|
|
6015
|
+
"enum": [
|
|
6016
|
+
"Stop",
|
|
6017
|
+
"Slow",
|
|
6018
|
+
"Fast"
|
|
6019
|
+
],
|
|
6020
|
+
"default": "Slow"
|
|
6021
|
+
},
|
|
6022
|
+
"speed": {
|
|
6023
|
+
"type": "number",
|
|
6024
|
+
"minimum": 25,
|
|
6025
|
+
"maximum": 200,
|
|
6026
|
+
"x-effetune-unit": "%",
|
|
6027
|
+
"default": 100
|
|
6028
|
+
},
|
|
6029
|
+
"acceleration": {
|
|
6030
|
+
"type": "number",
|
|
6031
|
+
"minimum": 0.1,
|
|
6032
|
+
"maximum": 10,
|
|
6033
|
+
"x-effetune-unit": "s",
|
|
6034
|
+
"default": 2.2
|
|
6035
|
+
},
|
|
6036
|
+
"crossover": {
|
|
6037
|
+
"type": "number",
|
|
6038
|
+
"minimum": 200,
|
|
6039
|
+
"maximum": 2000,
|
|
6040
|
+
"x-effetune-unit": "Hz",
|
|
6041
|
+
"default": 800
|
|
6042
|
+
},
|
|
6043
|
+
"rotorBalance": {
|
|
6044
|
+
"type": "number",
|
|
6045
|
+
"minimum": -100,
|
|
6046
|
+
"maximum": 100,
|
|
6047
|
+
"x-effetune-unit": "%",
|
|
6048
|
+
"default": 0
|
|
6049
|
+
},
|
|
6050
|
+
"stereoWidth": {
|
|
6051
|
+
"type": "number",
|
|
6052
|
+
"minimum": 0,
|
|
6053
|
+
"maximum": 100,
|
|
6054
|
+
"x-effetune-unit": "%",
|
|
6055
|
+
"default": 75
|
|
6056
|
+
},
|
|
6057
|
+
"dopplerDepth": {
|
|
6058
|
+
"type": "number",
|
|
6059
|
+
"minimum": 0,
|
|
6060
|
+
"maximum": 100,
|
|
6061
|
+
"x-effetune-unit": "%",
|
|
6062
|
+
"default": 45
|
|
6063
|
+
},
|
|
6064
|
+
"amplitudeDepth": {
|
|
6065
|
+
"type": "number",
|
|
6066
|
+
"minimum": 0,
|
|
6067
|
+
"maximum": 100,
|
|
6068
|
+
"x-effetune-unit": "%",
|
|
6069
|
+
"default": 55
|
|
6070
|
+
},
|
|
6071
|
+
"mix": {
|
|
6072
|
+
"type": "number",
|
|
6073
|
+
"minimum": 0,
|
|
6074
|
+
"maximum": 100,
|
|
6075
|
+
"x-effetune-unit": "%",
|
|
6076
|
+
"default": 70
|
|
6077
|
+
}
|
|
6078
|
+
}
|
|
6079
|
+
}
|
|
6080
|
+
}
|
|
6081
|
+
},
|
|
5355
6082
|
"Tremolo": {
|
|
5356
6083
|
"type": "object",
|
|
5357
6084
|
"additionalProperties": false,
|
|
@@ -6201,6 +6928,10 @@
|
|
|
6201
6928
|
"x-effetune-unit": "dB",
|
|
6202
6929
|
"default": -15
|
|
6203
6930
|
},
|
|
6931
|
+
"dryEnabled": {
|
|
6932
|
+
"type": "boolean",
|
|
6933
|
+
"default": true
|
|
6934
|
+
},
|
|
6204
6935
|
"dryLevel": {
|
|
6205
6936
|
"type": "number",
|
|
6206
6937
|
"minimum": -96,
|
|
@@ -6875,14 +7606,15 @@
|
|
|
6875
7606
|
"minimum": -96,
|
|
6876
7607
|
"maximum": 0,
|
|
6877
7608
|
"x-effetune-unit": "dB",
|
|
6878
|
-
"default": -
|
|
7609
|
+
"default": -44.0059
|
|
6879
7610
|
},
|
|
6880
7611
|
"tube": {
|
|
6881
7612
|
"type": "string",
|
|
6882
7613
|
"enum": [
|
|
6883
7614
|
"12AX7",
|
|
6884
7615
|
"12AT7",
|
|
6885
|
-
"12AU7"
|
|
7616
|
+
"12AU7",
|
|
7617
|
+
"Bypass"
|
|
6886
7618
|
],
|
|
6887
7619
|
"default": "12AX7"
|
|
6888
7620
|
},
|
|
@@ -6919,7 +7651,7 @@
|
|
|
6919
7651
|
"minimum": -48,
|
|
6920
7652
|
"maximum": 48,
|
|
6921
7653
|
"x-effetune-unit": "dB",
|
|
6922
|
-
"default":
|
|
7654
|
+
"default": -7.372
|
|
6923
7655
|
},
|
|
6924
7656
|
"mix": {
|
|
6925
7657
|
"type": "number",
|
|
@@ -6931,7 +7663,7 @@
|
|
|
6931
7663
|
"inputReference": {
|
|
6932
7664
|
"type": "number",
|
|
6933
7665
|
"minimum": 0.1,
|
|
6934
|
-
"maximum":
|
|
7666
|
+
"maximum": 300,
|
|
6935
7667
|
"x-effetune-unit": "Vpk",
|
|
6936
7668
|
"default": 2.828
|
|
6937
7669
|
},
|
|
@@ -6946,7 +7678,8 @@
|
|
|
6946
7678
|
"type": "string",
|
|
6947
7679
|
"enum": [
|
|
6948
7680
|
"Line",
|
|
6949
|
-
"Power"
|
|
7681
|
+
"Power",
|
|
7682
|
+
"SingleEnded"
|
|
6950
7683
|
],
|
|
6951
7684
|
"default": "Power"
|
|
6952
7685
|
},
|
|
@@ -6954,7 +7687,9 @@
|
|
|
6954
7687
|
"type": "string",
|
|
6955
7688
|
"enum": [
|
|
6956
7689
|
"EL84",
|
|
6957
|
-
"EL34"
|
|
7690
|
+
"EL34",
|
|
7691
|
+
"6L6GC",
|
|
7692
|
+
"KT88"
|
|
6958
7693
|
],
|
|
6959
7694
|
"default": "EL84"
|
|
6960
7695
|
},
|
|
@@ -7014,9 +7749,40 @@
|
|
|
7014
7749
|
"x-effetune-unit": "dB",
|
|
7015
7750
|
"default": 0
|
|
7016
7751
|
},
|
|
7017
|
-
"autoGainReduction": {
|
|
7018
|
-
"type": "boolean",
|
|
7019
|
-
"default": true
|
|
7752
|
+
"autoGainReduction": {
|
|
7753
|
+
"type": "boolean",
|
|
7754
|
+
"default": true
|
|
7755
|
+
},
|
|
7756
|
+
"seTube": {
|
|
7757
|
+
"type": "string",
|
|
7758
|
+
"enum": [
|
|
7759
|
+
"300B",
|
|
7760
|
+
"2A3"
|
|
7761
|
+
],
|
|
7762
|
+
"default": "300B"
|
|
7763
|
+
},
|
|
7764
|
+
"seBPlus": {
|
|
7765
|
+
"type": "number",
|
|
7766
|
+
"minimum": 250,
|
|
7767
|
+
"maximum": 450,
|
|
7768
|
+
"x-effetune-unit": "V",
|
|
7769
|
+
"default": 400
|
|
7770
|
+
},
|
|
7771
|
+
"seCathodeResistor": {
|
|
7772
|
+
"type": "number",
|
|
7773
|
+
"minimum": 700,
|
|
7774
|
+
"maximum": 1300,
|
|
7775
|
+
"x-effetune-unit": "Ohm",
|
|
7776
|
+
"default": 1000
|
|
7777
|
+
},
|
|
7778
|
+
"sePrimaryImpedance": {
|
|
7779
|
+
"type": "string",
|
|
7780
|
+
"enum": [
|
|
7781
|
+
"2.5",
|
|
7782
|
+
"3.5",
|
|
7783
|
+
"5.0"
|
|
7784
|
+
],
|
|
7785
|
+
"default": "3.5"
|
|
7020
7786
|
}
|
|
7021
7787
|
}
|
|
7022
7788
|
}
|
|
@@ -7208,6 +7974,301 @@
|
|
|
7208
7974
|
}
|
|
7209
7975
|
}
|
|
7210
7976
|
},
|
|
7977
|
+
"PhaseSelectEQ": {
|
|
7978
|
+
"type": "object",
|
|
7979
|
+
"additionalProperties": false,
|
|
7980
|
+
"required": [
|
|
7981
|
+
"type",
|
|
7982
|
+
"parameters"
|
|
7983
|
+
],
|
|
7984
|
+
"properties": {
|
|
7985
|
+
"id": {
|
|
7986
|
+
"type": "string",
|
|
7987
|
+
"minLength": 1,
|
|
7988
|
+
"maxLength": 128
|
|
7989
|
+
},
|
|
7990
|
+
"type": {
|
|
7991
|
+
"const": "PhaseSelectEQ"
|
|
7992
|
+
},
|
|
7993
|
+
"enabled": {
|
|
7994
|
+
"type": "boolean",
|
|
7995
|
+
"default": true
|
|
7996
|
+
},
|
|
7997
|
+
"channel": {
|
|
7998
|
+
"$ref": "#/$defs/channel"
|
|
7999
|
+
},
|
|
8000
|
+
"parameters": {
|
|
8001
|
+
"type": "object",
|
|
8002
|
+
"additionalProperties": false,
|
|
8003
|
+
"properties": {
|
|
8004
|
+
"regionEnabled": {
|
|
8005
|
+
"type": "array",
|
|
8006
|
+
"minItems": 5,
|
|
8007
|
+
"maxItems": 5,
|
|
8008
|
+
"items": {
|
|
8009
|
+
"type": "boolean"
|
|
8010
|
+
},
|
|
8011
|
+
"default": [
|
|
8012
|
+
true,
|
|
8013
|
+
false,
|
|
8014
|
+
false,
|
|
8015
|
+
false,
|
|
8016
|
+
false
|
|
8017
|
+
]
|
|
8018
|
+
},
|
|
8019
|
+
"outerFrequencyLow": {
|
|
8020
|
+
"type": "array",
|
|
8021
|
+
"minItems": 5,
|
|
8022
|
+
"maxItems": 5,
|
|
8023
|
+
"items": {
|
|
8024
|
+
"type": "number",
|
|
8025
|
+
"minimum": 20,
|
|
8026
|
+
"maximum": 40000,
|
|
8027
|
+
"x-effetune-unit": "Hz"
|
|
8028
|
+
},
|
|
8029
|
+
"default": [
|
|
8030
|
+
80,
|
|
8031
|
+
80,
|
|
8032
|
+
80,
|
|
8033
|
+
80,
|
|
8034
|
+
80
|
|
8035
|
+
]
|
|
8036
|
+
},
|
|
8037
|
+
"coreFrequencyLow": {
|
|
8038
|
+
"type": "array",
|
|
8039
|
+
"minItems": 5,
|
|
8040
|
+
"maxItems": 5,
|
|
8041
|
+
"items": {
|
|
8042
|
+
"type": "number",
|
|
8043
|
+
"minimum": 20,
|
|
8044
|
+
"maximum": 40000,
|
|
8045
|
+
"x-effetune-unit": "Hz"
|
|
8046
|
+
},
|
|
8047
|
+
"default": [
|
|
8048
|
+
100,
|
|
8049
|
+
100,
|
|
8050
|
+
100,
|
|
8051
|
+
100,
|
|
8052
|
+
100
|
|
8053
|
+
]
|
|
8054
|
+
},
|
|
8055
|
+
"coreFrequencyHigh": {
|
|
8056
|
+
"type": "array",
|
|
8057
|
+
"minItems": 5,
|
|
8058
|
+
"maxItems": 5,
|
|
8059
|
+
"items": {
|
|
8060
|
+
"type": "number",
|
|
8061
|
+
"minimum": 20,
|
|
8062
|
+
"maximum": 40000,
|
|
8063
|
+
"x-effetune-unit": "Hz"
|
|
8064
|
+
},
|
|
8065
|
+
"default": [
|
|
8066
|
+
10000,
|
|
8067
|
+
10000,
|
|
8068
|
+
10000,
|
|
8069
|
+
10000,
|
|
8070
|
+
10000
|
|
8071
|
+
]
|
|
8072
|
+
},
|
|
8073
|
+
"outerFrequencyHigh": {
|
|
8074
|
+
"type": "array",
|
|
8075
|
+
"minItems": 5,
|
|
8076
|
+
"maxItems": 5,
|
|
8077
|
+
"items": {
|
|
8078
|
+
"type": "number",
|
|
8079
|
+
"minimum": 20,
|
|
8080
|
+
"maximum": 40000,
|
|
8081
|
+
"x-effetune-unit": "Hz"
|
|
8082
|
+
},
|
|
8083
|
+
"default": [
|
|
8084
|
+
12000,
|
|
8085
|
+
12000,
|
|
8086
|
+
12000,
|
|
8087
|
+
12000,
|
|
8088
|
+
12000
|
|
8089
|
+
]
|
|
8090
|
+
},
|
|
8091
|
+
"outerPhaseLow": {
|
|
8092
|
+
"type": "array",
|
|
8093
|
+
"minItems": 5,
|
|
8094
|
+
"maxItems": 5,
|
|
8095
|
+
"items": {
|
|
8096
|
+
"type": "number",
|
|
8097
|
+
"minimum": 0,
|
|
8098
|
+
"maximum": 180,
|
|
8099
|
+
"x-effetune-unit": "degree"
|
|
8100
|
+
},
|
|
8101
|
+
"default": [
|
|
8102
|
+
0,
|
|
8103
|
+
0,
|
|
8104
|
+
0,
|
|
8105
|
+
0,
|
|
8106
|
+
0
|
|
8107
|
+
]
|
|
8108
|
+
},
|
|
8109
|
+
"corePhaseLow": {
|
|
8110
|
+
"type": "array",
|
|
8111
|
+
"minItems": 5,
|
|
8112
|
+
"maxItems": 5,
|
|
8113
|
+
"items": {
|
|
8114
|
+
"type": "number",
|
|
8115
|
+
"minimum": 0,
|
|
8116
|
+
"maximum": 180,
|
|
8117
|
+
"x-effetune-unit": "degree"
|
|
8118
|
+
},
|
|
8119
|
+
"default": [
|
|
8120
|
+
0,
|
|
8121
|
+
0,
|
|
8122
|
+
0,
|
|
8123
|
+
0,
|
|
8124
|
+
0
|
|
8125
|
+
]
|
|
8126
|
+
},
|
|
8127
|
+
"corePhaseHigh": {
|
|
8128
|
+
"type": "array",
|
|
8129
|
+
"minItems": 5,
|
|
8130
|
+
"maxItems": 5,
|
|
8131
|
+
"items": {
|
|
8132
|
+
"type": "number",
|
|
8133
|
+
"minimum": 0,
|
|
8134
|
+
"maximum": 180,
|
|
8135
|
+
"x-effetune-unit": "degree"
|
|
8136
|
+
},
|
|
8137
|
+
"default": [
|
|
8138
|
+
30,
|
|
8139
|
+
30,
|
|
8140
|
+
30,
|
|
8141
|
+
30,
|
|
8142
|
+
30
|
|
8143
|
+
]
|
|
8144
|
+
},
|
|
8145
|
+
"outerPhaseHigh": {
|
|
8146
|
+
"type": "array",
|
|
8147
|
+
"minItems": 5,
|
|
8148
|
+
"maxItems": 5,
|
|
8149
|
+
"items": {
|
|
8150
|
+
"type": "number",
|
|
8151
|
+
"minimum": 0,
|
|
8152
|
+
"maximum": 180,
|
|
8153
|
+
"x-effetune-unit": "degree"
|
|
8154
|
+
},
|
|
8155
|
+
"default": [
|
|
8156
|
+
45,
|
|
8157
|
+
45,
|
|
8158
|
+
45,
|
|
8159
|
+
45,
|
|
8160
|
+
45
|
|
8161
|
+
]
|
|
8162
|
+
},
|
|
8163
|
+
"gain": {
|
|
8164
|
+
"type": "array",
|
|
8165
|
+
"minItems": 5,
|
|
8166
|
+
"maxItems": 5,
|
|
8167
|
+
"items": {
|
|
8168
|
+
"type": "number",
|
|
8169
|
+
"minimum": 0,
|
|
8170
|
+
"maximum": 200,
|
|
8171
|
+
"x-effetune-unit": "%"
|
|
8172
|
+
},
|
|
8173
|
+
"default": [
|
|
8174
|
+
100,
|
|
8175
|
+
100,
|
|
8176
|
+
100,
|
|
8177
|
+
100,
|
|
8178
|
+
100
|
|
8179
|
+
]
|
|
8180
|
+
},
|
|
8181
|
+
"regionSolo": {
|
|
8182
|
+
"type": "array",
|
|
8183
|
+
"minItems": 5,
|
|
8184
|
+
"maxItems": 5,
|
|
8185
|
+
"items": {
|
|
8186
|
+
"type": "boolean"
|
|
8187
|
+
},
|
|
8188
|
+
"default": [
|
|
8189
|
+
false,
|
|
8190
|
+
false,
|
|
8191
|
+
false,
|
|
8192
|
+
false,
|
|
8193
|
+
false
|
|
8194
|
+
]
|
|
8195
|
+
},
|
|
8196
|
+
"outerBalanceLow": {
|
|
8197
|
+
"type": "array",
|
|
8198
|
+
"minItems": 5,
|
|
8199
|
+
"maxItems": 5,
|
|
8200
|
+
"items": {
|
|
8201
|
+
"type": "number",
|
|
8202
|
+
"minimum": -100,
|
|
8203
|
+
"maximum": 100,
|
|
8204
|
+
"x-effetune-unit": "%"
|
|
8205
|
+
},
|
|
8206
|
+
"default": [
|
|
8207
|
+
-100,
|
|
8208
|
+
-100,
|
|
8209
|
+
-100,
|
|
8210
|
+
-100,
|
|
8211
|
+
-100
|
|
8212
|
+
]
|
|
8213
|
+
},
|
|
8214
|
+
"coreBalanceLow": {
|
|
8215
|
+
"type": "array",
|
|
8216
|
+
"minItems": 5,
|
|
8217
|
+
"maxItems": 5,
|
|
8218
|
+
"items": {
|
|
8219
|
+
"type": "number",
|
|
8220
|
+
"minimum": -100,
|
|
8221
|
+
"maximum": 100,
|
|
8222
|
+
"x-effetune-unit": "%"
|
|
8223
|
+
},
|
|
8224
|
+
"default": [
|
|
8225
|
+
-100,
|
|
8226
|
+
-100,
|
|
8227
|
+
-100,
|
|
8228
|
+
-100,
|
|
8229
|
+
-100
|
|
8230
|
+
]
|
|
8231
|
+
},
|
|
8232
|
+
"coreBalanceHigh": {
|
|
8233
|
+
"type": "array",
|
|
8234
|
+
"minItems": 5,
|
|
8235
|
+
"maxItems": 5,
|
|
8236
|
+
"items": {
|
|
8237
|
+
"type": "number",
|
|
8238
|
+
"minimum": -100,
|
|
8239
|
+
"maximum": 100,
|
|
8240
|
+
"x-effetune-unit": "%"
|
|
8241
|
+
},
|
|
8242
|
+
"default": [
|
|
8243
|
+
100,
|
|
8244
|
+
100,
|
|
8245
|
+
100,
|
|
8246
|
+
100,
|
|
8247
|
+
100
|
|
8248
|
+
]
|
|
8249
|
+
},
|
|
8250
|
+
"outerBalanceHigh": {
|
|
8251
|
+
"type": "array",
|
|
8252
|
+
"minItems": 5,
|
|
8253
|
+
"maxItems": 5,
|
|
8254
|
+
"items": {
|
|
8255
|
+
"type": "number",
|
|
8256
|
+
"minimum": -100,
|
|
8257
|
+
"maximum": 100,
|
|
8258
|
+
"x-effetune-unit": "%"
|
|
8259
|
+
},
|
|
8260
|
+
"default": [
|
|
8261
|
+
100,
|
|
8262
|
+
100,
|
|
8263
|
+
100,
|
|
8264
|
+
100,
|
|
8265
|
+
100
|
|
8266
|
+
]
|
|
8267
|
+
}
|
|
8268
|
+
}
|
|
8269
|
+
}
|
|
8270
|
+
}
|
|
8271
|
+
},
|
|
7211
8272
|
"StereoBlend": {
|
|
7212
8273
|
"type": "object",
|
|
7213
8274
|
"additionalProperties": false,
|