@effetune/dsp 0.4.0 → 0.5.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 +106 -5
- package/dist/assets/effetune-dsp.meta.json +91 -37
- package/dist/assets/effetune-dsp.simd.wasm +0 -0
- package/dist/assets/effetune-dsp.wasm +0 -0
- package/dist/catalog/effects-v1.json +798 -12
- package/dist/errors.js +21 -0
- package/dist/generated-effects.d.ts +164 -4
- package/dist/generated-effects.js +94 -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 +247 -1
- package/dist/index.js +22 -0
- package/dist/internal/dsp-engine-binding.js +142 -1
- package/dist/internal/dsp-params.generated.js +362 -16
- package/dist/preset.js +29 -0
- package/dist/runtime.js +73 -5
- package/dist/schemas/chain-v1.schema.json +996 -143
- package/dist/schemas/graph-v1.schema.json +8208 -0
- package/dist/semantics.js +88 -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
|
@@ -230,12 +230,30 @@
|
|
|
230
230
|
{
|
|
231
231
|
"$ref": "#/$defs/VinylSimulator"
|
|
232
232
|
},
|
|
233
|
+
{
|
|
234
|
+
"$ref": "#/$defs/AutoFilter"
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
"$ref": "#/$defs/AutoPan"
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"$ref": "#/$defs/Chorus"
|
|
241
|
+
},
|
|
233
242
|
{
|
|
234
243
|
"$ref": "#/$defs/DopplerDistortion"
|
|
235
244
|
},
|
|
245
|
+
{
|
|
246
|
+
"$ref": "#/$defs/FrequencyShifter"
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
"$ref": "#/$defs/Phaser"
|
|
250
|
+
},
|
|
236
251
|
{
|
|
237
252
|
"$ref": "#/$defs/PitchShifter"
|
|
238
253
|
},
|
|
254
|
+
{
|
|
255
|
+
"$ref": "#/$defs/RotarySpeaker"
|
|
256
|
+
},
|
|
239
257
|
{
|
|
240
258
|
"$ref": "#/$defs/Tremolo"
|
|
241
259
|
},
|
|
@@ -299,6 +317,9 @@
|
|
|
299
317
|
{
|
|
300
318
|
"$ref": "#/$defs/MultibandBalance"
|
|
301
319
|
},
|
|
320
|
+
{
|
|
321
|
+
"$ref": "#/$defs/PhaseSelectEQ"
|
|
322
|
+
},
|
|
302
323
|
{
|
|
303
324
|
"$ref": "#/$defs/StereoBlend"
|
|
304
325
|
}
|
|
@@ -5234,7 +5255,7 @@
|
|
|
5234
5255
|
}
|
|
5235
5256
|
}
|
|
5236
5257
|
},
|
|
5237
|
-
"
|
|
5258
|
+
"AutoFilter": {
|
|
5238
5259
|
"type": "object",
|
|
5239
5260
|
"additionalProperties": false,
|
|
5240
5261
|
"required": [
|
|
@@ -5248,7 +5269,7 @@
|
|
|
5248
5269
|
"maxLength": 128
|
|
5249
5270
|
},
|
|
5250
5271
|
"type": {
|
|
5251
|
-
"const": "
|
|
5272
|
+
"const": "AutoFilter"
|
|
5252
5273
|
},
|
|
5253
5274
|
"enabled": {
|
|
5254
5275
|
"type": "boolean",
|
|
@@ -5261,98 +5282,107 @@
|
|
|
5261
5282
|
"type": "object",
|
|
5262
5283
|
"additionalProperties": false,
|
|
5263
5284
|
"properties": {
|
|
5264
|
-
"
|
|
5285
|
+
"mode": {
|
|
5286
|
+
"type": "string",
|
|
5287
|
+
"enum": [
|
|
5288
|
+
"LFO",
|
|
5289
|
+
"Envelope"
|
|
5290
|
+
],
|
|
5291
|
+
"default": "LFO"
|
|
5292
|
+
},
|
|
5293
|
+
"filterType": {
|
|
5294
|
+
"type": "string",
|
|
5295
|
+
"enum": [
|
|
5296
|
+
"Low-pass",
|
|
5297
|
+
"Band-pass",
|
|
5298
|
+
"High-pass"
|
|
5299
|
+
],
|
|
5300
|
+
"default": "Low-pass"
|
|
5301
|
+
},
|
|
5302
|
+
"minimumFrequency": {
|
|
5303
|
+
"type": "number",
|
|
5304
|
+
"minimum": 20,
|
|
5305
|
+
"maximum": 20000,
|
|
5306
|
+
"x-effetune-unit": "Hz",
|
|
5307
|
+
"default": 200
|
|
5308
|
+
},
|
|
5309
|
+
"maximumFrequency": {
|
|
5310
|
+
"type": "number",
|
|
5311
|
+
"minimum": 20,
|
|
5312
|
+
"maximum": 20000,
|
|
5313
|
+
"x-effetune-unit": "Hz",
|
|
5314
|
+
"default": 4000
|
|
5315
|
+
},
|
|
5316
|
+
"resonance": {
|
|
5317
|
+
"type": "number",
|
|
5318
|
+
"minimum": 0.5,
|
|
5319
|
+
"maximum": 20,
|
|
5320
|
+
"x-effetune-unit": "Q",
|
|
5321
|
+
"default": 1.5
|
|
5322
|
+
},
|
|
5323
|
+
"mix": {
|
|
5265
5324
|
"type": "number",
|
|
5266
5325
|
"minimum": 0,
|
|
5267
5326
|
"maximum": 100,
|
|
5268
|
-
"x-effetune-unit": "
|
|
5269
|
-
"default":
|
|
5327
|
+
"x-effetune-unit": "%",
|
|
5328
|
+
"default": 80
|
|
5270
5329
|
},
|
|
5271
|
-
"
|
|
5330
|
+
"rate": {
|
|
5272
5331
|
"type": "number",
|
|
5273
|
-
"minimum": 0.
|
|
5274
|
-
"maximum":
|
|
5275
|
-
"x-effetune-unit": "
|
|
5276
|
-
"default": 0.
|
|
5332
|
+
"minimum": 0.05,
|
|
5333
|
+
"maximum": 20,
|
|
5334
|
+
"x-effetune-unit": "Hz",
|
|
5335
|
+
"default": 0.5
|
|
5277
5336
|
},
|
|
5278
|
-
"
|
|
5279
|
-
"type": "
|
|
5280
|
-
"
|
|
5281
|
-
|
|
5282
|
-
|
|
5283
|
-
|
|
5337
|
+
"waveform": {
|
|
5338
|
+
"type": "string",
|
|
5339
|
+
"enum": [
|
|
5340
|
+
"Sine",
|
|
5341
|
+
"Triangle"
|
|
5342
|
+
],
|
|
5343
|
+
"default": "Sine"
|
|
5284
5344
|
},
|
|
5285
|
-
"
|
|
5345
|
+
"stereoPhase": {
|
|
5286
5346
|
"type": "number",
|
|
5287
5347
|
"minimum": 0,
|
|
5288
|
-
"maximum":
|
|
5289
|
-
"x-effetune-unit": "
|
|
5290
|
-
"default": 1.5
|
|
5291
|
-
}
|
|
5292
|
-
}
|
|
5293
|
-
}
|
|
5294
|
-
}
|
|
5295
|
-
},
|
|
5296
|
-
"PitchShifter": {
|
|
5297
|
-
"type": "object",
|
|
5298
|
-
"additionalProperties": false,
|
|
5299
|
-
"required": [
|
|
5300
|
-
"type",
|
|
5301
|
-
"parameters"
|
|
5302
|
-
],
|
|
5303
|
-
"properties": {
|
|
5304
|
-
"id": {
|
|
5305
|
-
"type": "string",
|
|
5306
|
-
"minLength": 1,
|
|
5307
|
-
"maxLength": 128
|
|
5308
|
-
},
|
|
5309
|
-
"type": {
|
|
5310
|
-
"const": "PitchShifter"
|
|
5311
|
-
},
|
|
5312
|
-
"enabled": {
|
|
5313
|
-
"type": "boolean",
|
|
5314
|
-
"default": true
|
|
5315
|
-
},
|
|
5316
|
-
"channel": {
|
|
5317
|
-
"$ref": "#/$defs/channel"
|
|
5318
|
-
},
|
|
5319
|
-
"parameters": {
|
|
5320
|
-
"type": "object",
|
|
5321
|
-
"additionalProperties": false,
|
|
5322
|
-
"properties": {
|
|
5323
|
-
"pitchShift": {
|
|
5324
|
-
"type": "integer",
|
|
5325
|
-
"minimum": -6,
|
|
5326
|
-
"maximum": 6,
|
|
5327
|
-
"x-effetune-unit": "semitones",
|
|
5348
|
+
"maximum": 180,
|
|
5349
|
+
"x-effetune-unit": "deg",
|
|
5328
5350
|
"default": 0
|
|
5329
5351
|
},
|
|
5330
|
-
"
|
|
5331
|
-
"type": "
|
|
5332
|
-
"minimum":
|
|
5333
|
-
"maximum":
|
|
5334
|
-
"x-effetune-unit": "
|
|
5335
|
-
"default":
|
|
5352
|
+
"sensitivity": {
|
|
5353
|
+
"type": "number",
|
|
5354
|
+
"minimum": 0,
|
|
5355
|
+
"maximum": 60,
|
|
5356
|
+
"x-effetune-unit": "dB",
|
|
5357
|
+
"default": 24
|
|
5336
5358
|
},
|
|
5337
|
-
"
|
|
5338
|
-
"type": "
|
|
5339
|
-
"minimum":
|
|
5359
|
+
"attack": {
|
|
5360
|
+
"type": "number",
|
|
5361
|
+
"minimum": 1,
|
|
5340
5362
|
"maximum": 500,
|
|
5341
5363
|
"x-effetune-unit": "ms",
|
|
5342
|
-
"default":
|
|
5364
|
+
"default": 20
|
|
5343
5365
|
},
|
|
5344
|
-
"
|
|
5366
|
+
"release": {
|
|
5345
5367
|
"type": "number",
|
|
5346
|
-
"minimum":
|
|
5347
|
-
"maximum":
|
|
5368
|
+
"minimum": 10,
|
|
5369
|
+
"maximum": 2000,
|
|
5348
5370
|
"x-effetune-unit": "ms",
|
|
5349
|
-
"default":
|
|
5371
|
+
"default": 250
|
|
5372
|
+
},
|
|
5373
|
+
"direction": {
|
|
5374
|
+
"type": "string",
|
|
5375
|
+
"enum": [
|
|
5376
|
+
"Up",
|
|
5377
|
+
"Down"
|
|
5378
|
+
],
|
|
5379
|
+
"default": "Up"
|
|
5350
5380
|
}
|
|
5351
5381
|
}
|
|
5352
5382
|
}
|
|
5353
5383
|
}
|
|
5354
5384
|
},
|
|
5355
|
-
"
|
|
5385
|
+
"AutoPan": {
|
|
5356
5386
|
"type": "object",
|
|
5357
5387
|
"additionalProperties": false,
|
|
5358
5388
|
"required": [
|
|
@@ -5366,7 +5396,7 @@
|
|
|
5366
5396
|
"maxLength": 128
|
|
5367
5397
|
},
|
|
5368
5398
|
"type": {
|
|
5369
|
-
"const": "
|
|
5399
|
+
"const": "AutoPan"
|
|
5370
5400
|
},
|
|
5371
5401
|
"enabled": {
|
|
5372
5402
|
"type": "boolean",
|
|
@@ -5381,58 +5411,52 @@
|
|
|
5381
5411
|
"properties": {
|
|
5382
5412
|
"rate": {
|
|
5383
5413
|
"type": "number",
|
|
5384
|
-
"minimum": 0.
|
|
5385
|
-
"maximum":
|
|
5414
|
+
"minimum": 0.05,
|
|
5415
|
+
"maximum": 20,
|
|
5386
5416
|
"x-effetune-unit": "Hz",
|
|
5387
|
-
"default":
|
|
5417
|
+
"default": 0.35
|
|
5388
5418
|
},
|
|
5389
5419
|
"depth": {
|
|
5390
5420
|
"type": "number",
|
|
5391
5421
|
"minimum": 0,
|
|
5392
|
-
"maximum":
|
|
5393
|
-
"x-effetune-unit": "
|
|
5394
|
-
"default":
|
|
5395
|
-
},
|
|
5396
|
-
"randomness": {
|
|
5397
|
-
"type": "number",
|
|
5398
|
-
"minimum": 0,
|
|
5399
|
-
"maximum": 96,
|
|
5400
|
-
"x-effetune-unit": "dB",
|
|
5401
|
-
"default": 6
|
|
5402
|
-
},
|
|
5403
|
-
"randomnessCutoff": {
|
|
5404
|
-
"type": "number",
|
|
5405
|
-
"minimum": 1,
|
|
5406
|
-
"maximum": 1000,
|
|
5407
|
-
"x-effetune-unit": "Hz",
|
|
5408
|
-
"default": 200
|
|
5409
|
-
},
|
|
5410
|
-
"randomnessSlope": {
|
|
5411
|
-
"type": "number",
|
|
5412
|
-
"minimum": -12,
|
|
5413
|
-
"maximum": 0,
|
|
5414
|
-
"x-effetune-unit": "dB",
|
|
5415
|
-
"default": -6
|
|
5422
|
+
"maximum": 100,
|
|
5423
|
+
"x-effetune-unit": "%",
|
|
5424
|
+
"default": 45
|
|
5416
5425
|
},
|
|
5417
|
-
"
|
|
5426
|
+
"center": {
|
|
5418
5427
|
"type": "number",
|
|
5419
|
-
"minimum": -
|
|
5420
|
-
"maximum":
|
|
5421
|
-
"x-effetune-unit": "
|
|
5428
|
+
"minimum": -100,
|
|
5429
|
+
"maximum": 100,
|
|
5430
|
+
"x-effetune-unit": "%",
|
|
5422
5431
|
"default": 0
|
|
5423
5432
|
},
|
|
5424
|
-
"
|
|
5433
|
+
"width": {
|
|
5425
5434
|
"type": "number",
|
|
5426
5435
|
"minimum": 0,
|
|
5427
5436
|
"maximum": 100,
|
|
5428
5437
|
"x-effetune-unit": "%",
|
|
5429
|
-
"default":
|
|
5438
|
+
"default": 70
|
|
5439
|
+
},
|
|
5440
|
+
"waveform": {
|
|
5441
|
+
"type": "string",
|
|
5442
|
+
"enum": [
|
|
5443
|
+
"Sine",
|
|
5444
|
+
"Triangle"
|
|
5445
|
+
],
|
|
5446
|
+
"default": "Sine"
|
|
5447
|
+
},
|
|
5448
|
+
"phase": {
|
|
5449
|
+
"type": "number",
|
|
5450
|
+
"minimum": 0,
|
|
5451
|
+
"maximum": 360,
|
|
5452
|
+
"x-effetune-unit": "deg",
|
|
5453
|
+
"default": 0
|
|
5430
5454
|
}
|
|
5431
5455
|
}
|
|
5432
5456
|
}
|
|
5433
5457
|
}
|
|
5434
5458
|
},
|
|
5435
|
-
"
|
|
5459
|
+
"Chorus": {
|
|
5436
5460
|
"type": "object",
|
|
5437
5461
|
"additionalProperties": false,
|
|
5438
5462
|
"required": [
|
|
@@ -5446,7 +5470,7 @@
|
|
|
5446
5470
|
"maxLength": 128
|
|
5447
5471
|
},
|
|
5448
5472
|
"type": {
|
|
5449
|
-
"const": "
|
|
5473
|
+
"const": "Chorus"
|
|
5450
5474
|
},
|
|
5451
5475
|
"enabled": {
|
|
5452
5476
|
"type": "boolean",
|
|
@@ -5459,60 +5483,70 @@
|
|
|
5459
5483
|
"type": "object",
|
|
5460
5484
|
"additionalProperties": false,
|
|
5461
5485
|
"properties": {
|
|
5486
|
+
"mode": {
|
|
5487
|
+
"type": "string",
|
|
5488
|
+
"enum": [
|
|
5489
|
+
"Chorus",
|
|
5490
|
+
"Stereo Chorus",
|
|
5491
|
+
"Ensemble",
|
|
5492
|
+
"Flanger",
|
|
5493
|
+
"Vibrato"
|
|
5494
|
+
],
|
|
5495
|
+
"default": "Chorus"
|
|
5496
|
+
},
|
|
5462
5497
|
"rate": {
|
|
5463
5498
|
"type": "number",
|
|
5464
|
-
"minimum": 0.
|
|
5465
|
-
"maximum":
|
|
5499
|
+
"minimum": 0.05,
|
|
5500
|
+
"maximum": 10,
|
|
5466
5501
|
"x-effetune-unit": "Hz",
|
|
5467
|
-
"default": 0.
|
|
5502
|
+
"default": 0.8
|
|
5468
5503
|
},
|
|
5469
|
-
"
|
|
5504
|
+
"delay": {
|
|
5470
5505
|
"type": "number",
|
|
5471
|
-
"minimum": 0,
|
|
5472
|
-
"maximum":
|
|
5506
|
+
"minimum": 0.5,
|
|
5507
|
+
"maximum": 30,
|
|
5473
5508
|
"x-effetune-unit": "ms",
|
|
5474
|
-
"default":
|
|
5509
|
+
"default": 12
|
|
5475
5510
|
},
|
|
5476
|
-
"
|
|
5511
|
+
"depth": {
|
|
5477
5512
|
"type": "number",
|
|
5478
5513
|
"minimum": 0,
|
|
5479
|
-
"maximum":
|
|
5514
|
+
"maximum": 20,
|
|
5480
5515
|
"x-effetune-unit": "ms",
|
|
5481
|
-
"default":
|
|
5516
|
+
"default": 3
|
|
5482
5517
|
},
|
|
5483
|
-
"
|
|
5484
|
-
"type": "
|
|
5485
|
-
"minimum":
|
|
5486
|
-
"maximum":
|
|
5487
|
-
"
|
|
5488
|
-
"default": 5
|
|
5518
|
+
"voices": {
|
|
5519
|
+
"type": "integer",
|
|
5520
|
+
"minimum": 1,
|
|
5521
|
+
"maximum": 6,
|
|
5522
|
+
"default": 3
|
|
5489
5523
|
},
|
|
5490
|
-
"
|
|
5524
|
+
"stereoSpread": {
|
|
5491
5525
|
"type": "number",
|
|
5492
|
-
"minimum":
|
|
5493
|
-
"maximum":
|
|
5494
|
-
"x-effetune-unit": "
|
|
5495
|
-
"default":
|
|
5526
|
+
"minimum": 0,
|
|
5527
|
+
"maximum": 100,
|
|
5528
|
+
"x-effetune-unit": "%",
|
|
5529
|
+
"default": 60
|
|
5496
5530
|
},
|
|
5497
|
-
"
|
|
5531
|
+
"feedback": {
|
|
5498
5532
|
"type": "number",
|
|
5499
|
-
"minimum": -
|
|
5500
|
-
"maximum":
|
|
5501
|
-
"x-effetune-unit": "
|
|
5533
|
+
"minimum": -75,
|
|
5534
|
+
"maximum": 75,
|
|
5535
|
+
"x-effetune-unit": "%",
|
|
5502
5536
|
"default": 0
|
|
5503
5537
|
},
|
|
5504
|
-
"
|
|
5538
|
+
"mix": {
|
|
5505
5539
|
"type": "number",
|
|
5506
5540
|
"minimum": 0,
|
|
5507
5541
|
"maximum": 100,
|
|
5508
5542
|
"x-effetune-unit": "%",
|
|
5509
|
-
"default":
|
|
5543
|
+
"default": 45
|
|
5510
5544
|
}
|
|
5511
5545
|
}
|
|
5512
5546
|
}
|
|
5513
5547
|
}
|
|
5514
5548
|
},
|
|
5515
|
-
"
|
|
5549
|
+
"DopplerDistortion": {
|
|
5516
5550
|
"type": "object",
|
|
5517
5551
|
"additionalProperties": false,
|
|
5518
5552
|
"required": [
|
|
@@ -5526,7 +5560,579 @@
|
|
|
5526
5560
|
"maxLength": 128
|
|
5527
5561
|
},
|
|
5528
5562
|
"type": {
|
|
5529
|
-
"const": "
|
|
5563
|
+
"const": "DopplerDistortion"
|
|
5564
|
+
},
|
|
5565
|
+
"enabled": {
|
|
5566
|
+
"type": "boolean",
|
|
5567
|
+
"default": true
|
|
5568
|
+
},
|
|
5569
|
+
"channel": {
|
|
5570
|
+
"$ref": "#/$defs/channel"
|
|
5571
|
+
},
|
|
5572
|
+
"parameters": {
|
|
5573
|
+
"type": "object",
|
|
5574
|
+
"additionalProperties": false,
|
|
5575
|
+
"properties": {
|
|
5576
|
+
"coilForce": {
|
|
5577
|
+
"type": "number",
|
|
5578
|
+
"minimum": 0,
|
|
5579
|
+
"maximum": 100,
|
|
5580
|
+
"x-effetune-unit": "N / V",
|
|
5581
|
+
"default": 8
|
|
5582
|
+
},
|
|
5583
|
+
"speakerMass": {
|
|
5584
|
+
"type": "number",
|
|
5585
|
+
"minimum": 0.001,
|
|
5586
|
+
"maximum": 0.5,
|
|
5587
|
+
"x-effetune-unit": "kg",
|
|
5588
|
+
"default": 0.03
|
|
5589
|
+
},
|
|
5590
|
+
"springConstant": {
|
|
5591
|
+
"type": "number",
|
|
5592
|
+
"minimum": 1,
|
|
5593
|
+
"maximum": 100000,
|
|
5594
|
+
"x-effetune-unit": "N/m",
|
|
5595
|
+
"default": 6000
|
|
5596
|
+
},
|
|
5597
|
+
"dampingFactor": {
|
|
5598
|
+
"type": "number",
|
|
5599
|
+
"minimum": 0,
|
|
5600
|
+
"maximum": 50,
|
|
5601
|
+
"x-effetune-unit": "N*s/m",
|
|
5602
|
+
"default": 1.5
|
|
5603
|
+
}
|
|
5604
|
+
}
|
|
5605
|
+
}
|
|
5606
|
+
}
|
|
5607
|
+
},
|
|
5608
|
+
"FrequencyShifter": {
|
|
5609
|
+
"type": "object",
|
|
5610
|
+
"additionalProperties": false,
|
|
5611
|
+
"required": [
|
|
5612
|
+
"type",
|
|
5613
|
+
"parameters"
|
|
5614
|
+
],
|
|
5615
|
+
"properties": {
|
|
5616
|
+
"id": {
|
|
5617
|
+
"type": "string",
|
|
5618
|
+
"minLength": 1,
|
|
5619
|
+
"maxLength": 128
|
|
5620
|
+
},
|
|
5621
|
+
"type": {
|
|
5622
|
+
"const": "FrequencyShifter"
|
|
5623
|
+
},
|
|
5624
|
+
"enabled": {
|
|
5625
|
+
"type": "boolean",
|
|
5626
|
+
"default": true
|
|
5627
|
+
},
|
|
5628
|
+
"channel": {
|
|
5629
|
+
"$ref": "#/$defs/channel"
|
|
5630
|
+
},
|
|
5631
|
+
"parameters": {
|
|
5632
|
+
"type": "object",
|
|
5633
|
+
"additionalProperties": false,
|
|
5634
|
+
"properties": {
|
|
5635
|
+
"mode": {
|
|
5636
|
+
"type": "string",
|
|
5637
|
+
"enum": [
|
|
5638
|
+
"Shift",
|
|
5639
|
+
"Ring Mod",
|
|
5640
|
+
"Barber-pole"
|
|
5641
|
+
],
|
|
5642
|
+
"default": "Shift"
|
|
5643
|
+
},
|
|
5644
|
+
"shift": {
|
|
5645
|
+
"type": "number",
|
|
5646
|
+
"minimum": -5000,
|
|
5647
|
+
"maximum": 5000,
|
|
5648
|
+
"x-effetune-unit": "Hz",
|
|
5649
|
+
"default": 8
|
|
5650
|
+
},
|
|
5651
|
+
"carrierFrequency": {
|
|
5652
|
+
"type": "number",
|
|
5653
|
+
"minimum": 0.1,
|
|
5654
|
+
"maximum": 10000,
|
|
5655
|
+
"x-effetune-unit": "Hz",
|
|
5656
|
+
"default": 440
|
|
5657
|
+
},
|
|
5658
|
+
"minimumShift": {
|
|
5659
|
+
"type": "number",
|
|
5660
|
+
"minimum": 0,
|
|
5661
|
+
"maximum": 5000,
|
|
5662
|
+
"x-effetune-unit": "Hz",
|
|
5663
|
+
"default": 20
|
|
5664
|
+
},
|
|
5665
|
+
"maximumShift": {
|
|
5666
|
+
"type": "number",
|
|
5667
|
+
"minimum": 0,
|
|
5668
|
+
"maximum": 5000,
|
|
5669
|
+
"x-effetune-unit": "Hz",
|
|
5670
|
+
"default": 800
|
|
5671
|
+
},
|
|
5672
|
+
"rate": {
|
|
5673
|
+
"type": "number",
|
|
5674
|
+
"minimum": 0.01,
|
|
5675
|
+
"maximum": 2,
|
|
5676
|
+
"x-effetune-unit": "Hz",
|
|
5677
|
+
"default": 0.15
|
|
5678
|
+
},
|
|
5679
|
+
"direction": {
|
|
5680
|
+
"type": "string",
|
|
5681
|
+
"enum": [
|
|
5682
|
+
"Up",
|
|
5683
|
+
"Down"
|
|
5684
|
+
],
|
|
5685
|
+
"default": "Up"
|
|
5686
|
+
},
|
|
5687
|
+
"stereoPhase": {
|
|
5688
|
+
"type": "number",
|
|
5689
|
+
"minimum": 0,
|
|
5690
|
+
"maximum": 180,
|
|
5691
|
+
"x-effetune-unit": "degrees",
|
|
5692
|
+
"default": 0
|
|
5693
|
+
},
|
|
5694
|
+
"mix": {
|
|
5695
|
+
"type": "number",
|
|
5696
|
+
"minimum": 0,
|
|
5697
|
+
"maximum": 100,
|
|
5698
|
+
"x-effetune-unit": "%",
|
|
5699
|
+
"default": 100
|
|
5700
|
+
}
|
|
5701
|
+
}
|
|
5702
|
+
}
|
|
5703
|
+
}
|
|
5704
|
+
},
|
|
5705
|
+
"Phaser": {
|
|
5706
|
+
"type": "object",
|
|
5707
|
+
"additionalProperties": false,
|
|
5708
|
+
"required": [
|
|
5709
|
+
"type",
|
|
5710
|
+
"parameters"
|
|
5711
|
+
],
|
|
5712
|
+
"properties": {
|
|
5713
|
+
"id": {
|
|
5714
|
+
"type": "string",
|
|
5715
|
+
"minLength": 1,
|
|
5716
|
+
"maxLength": 128
|
|
5717
|
+
},
|
|
5718
|
+
"type": {
|
|
5719
|
+
"const": "Phaser"
|
|
5720
|
+
},
|
|
5721
|
+
"enabled": {
|
|
5722
|
+
"type": "boolean",
|
|
5723
|
+
"default": true
|
|
5724
|
+
},
|
|
5725
|
+
"channel": {
|
|
5726
|
+
"$ref": "#/$defs/channel"
|
|
5727
|
+
},
|
|
5728
|
+
"parameters": {
|
|
5729
|
+
"type": "object",
|
|
5730
|
+
"additionalProperties": false,
|
|
5731
|
+
"properties": {
|
|
5732
|
+
"mode": {
|
|
5733
|
+
"type": "string",
|
|
5734
|
+
"enum": [
|
|
5735
|
+
"Classic",
|
|
5736
|
+
"Barber-pole"
|
|
5737
|
+
],
|
|
5738
|
+
"default": "Classic"
|
|
5739
|
+
},
|
|
5740
|
+
"rate": {
|
|
5741
|
+
"type": "number",
|
|
5742
|
+
"minimum": 0.05,
|
|
5743
|
+
"maximum": 10,
|
|
5744
|
+
"x-effetune-unit": "Hz",
|
|
5745
|
+
"default": 0.5
|
|
5746
|
+
},
|
|
5747
|
+
"centerFrequency": {
|
|
5748
|
+
"type": "number",
|
|
5749
|
+
"minimum": 80,
|
|
5750
|
+
"maximum": 8000,
|
|
5751
|
+
"x-effetune-unit": "Hz",
|
|
5752
|
+
"default": 1000
|
|
5753
|
+
},
|
|
5754
|
+
"range": {
|
|
5755
|
+
"type": "number",
|
|
5756
|
+
"minimum": 0,
|
|
5757
|
+
"maximum": 6,
|
|
5758
|
+
"x-effetune-unit": "octaves",
|
|
5759
|
+
"default": 3
|
|
5760
|
+
},
|
|
5761
|
+
"stages": {
|
|
5762
|
+
"type": "integer",
|
|
5763
|
+
"enum": [
|
|
5764
|
+
2,
|
|
5765
|
+
4,
|
|
5766
|
+
6,
|
|
5767
|
+
8,
|
|
5768
|
+
10,
|
|
5769
|
+
12
|
|
5770
|
+
],
|
|
5771
|
+
"default": 6
|
|
5772
|
+
},
|
|
5773
|
+
"feedback": {
|
|
5774
|
+
"type": "number",
|
|
5775
|
+
"minimum": -90,
|
|
5776
|
+
"maximum": 90,
|
|
5777
|
+
"x-effetune-unit": "%",
|
|
5778
|
+
"default": 20
|
|
5779
|
+
},
|
|
5780
|
+
"stereoPhase": {
|
|
5781
|
+
"type": "number",
|
|
5782
|
+
"minimum": 0,
|
|
5783
|
+
"maximum": 180,
|
|
5784
|
+
"x-effetune-unit": "degrees",
|
|
5785
|
+
"default": 90
|
|
5786
|
+
},
|
|
5787
|
+
"direction": {
|
|
5788
|
+
"type": "string",
|
|
5789
|
+
"enum": [
|
|
5790
|
+
"Up",
|
|
5791
|
+
"Down"
|
|
5792
|
+
],
|
|
5793
|
+
"default": "Up"
|
|
5794
|
+
},
|
|
5795
|
+
"mix": {
|
|
5796
|
+
"type": "number",
|
|
5797
|
+
"minimum": 0,
|
|
5798
|
+
"maximum": 100,
|
|
5799
|
+
"x-effetune-unit": "%",
|
|
5800
|
+
"default": 50
|
|
5801
|
+
}
|
|
5802
|
+
}
|
|
5803
|
+
}
|
|
5804
|
+
}
|
|
5805
|
+
},
|
|
5806
|
+
"PitchShifter": {
|
|
5807
|
+
"type": "object",
|
|
5808
|
+
"additionalProperties": false,
|
|
5809
|
+
"required": [
|
|
5810
|
+
"type",
|
|
5811
|
+
"parameters"
|
|
5812
|
+
],
|
|
5813
|
+
"properties": {
|
|
5814
|
+
"id": {
|
|
5815
|
+
"type": "string",
|
|
5816
|
+
"minLength": 1,
|
|
5817
|
+
"maxLength": 128
|
|
5818
|
+
},
|
|
5819
|
+
"type": {
|
|
5820
|
+
"const": "PitchShifter"
|
|
5821
|
+
},
|
|
5822
|
+
"enabled": {
|
|
5823
|
+
"type": "boolean",
|
|
5824
|
+
"default": true
|
|
5825
|
+
},
|
|
5826
|
+
"channel": {
|
|
5827
|
+
"$ref": "#/$defs/channel"
|
|
5828
|
+
},
|
|
5829
|
+
"parameters": {
|
|
5830
|
+
"type": "object",
|
|
5831
|
+
"additionalProperties": false,
|
|
5832
|
+
"properties": {
|
|
5833
|
+
"pitchShift": {
|
|
5834
|
+
"type": "integer",
|
|
5835
|
+
"minimum": -6,
|
|
5836
|
+
"maximum": 6,
|
|
5837
|
+
"x-effetune-unit": "semitones",
|
|
5838
|
+
"default": 0
|
|
5839
|
+
},
|
|
5840
|
+
"fineTune": {
|
|
5841
|
+
"type": "integer",
|
|
5842
|
+
"minimum": -50,
|
|
5843
|
+
"maximum": 50,
|
|
5844
|
+
"x-effetune-unit": "cents",
|
|
5845
|
+
"default": 0
|
|
5846
|
+
},
|
|
5847
|
+
"windowSize": {
|
|
5848
|
+
"type": "integer",
|
|
5849
|
+
"minimum": 80,
|
|
5850
|
+
"maximum": 500,
|
|
5851
|
+
"x-effetune-unit": "ms",
|
|
5852
|
+
"default": 150
|
|
5853
|
+
},
|
|
5854
|
+
"crossfadeTime": {
|
|
5855
|
+
"type": "number",
|
|
5856
|
+
"minimum": 20,
|
|
5857
|
+
"maximum": 40,
|
|
5858
|
+
"x-effetune-unit": "ms",
|
|
5859
|
+
"default": 35
|
|
5860
|
+
}
|
|
5861
|
+
}
|
|
5862
|
+
}
|
|
5863
|
+
}
|
|
5864
|
+
},
|
|
5865
|
+
"RotarySpeaker": {
|
|
5866
|
+
"type": "object",
|
|
5867
|
+
"additionalProperties": false,
|
|
5868
|
+
"required": [
|
|
5869
|
+
"type",
|
|
5870
|
+
"parameters"
|
|
5871
|
+
],
|
|
5872
|
+
"properties": {
|
|
5873
|
+
"id": {
|
|
5874
|
+
"type": "string",
|
|
5875
|
+
"minLength": 1,
|
|
5876
|
+
"maxLength": 128
|
|
5877
|
+
},
|
|
5878
|
+
"type": {
|
|
5879
|
+
"const": "RotarySpeaker"
|
|
5880
|
+
},
|
|
5881
|
+
"enabled": {
|
|
5882
|
+
"type": "boolean",
|
|
5883
|
+
"default": true
|
|
5884
|
+
},
|
|
5885
|
+
"channel": {
|
|
5886
|
+
"$ref": "#/$defs/channel"
|
|
5887
|
+
},
|
|
5888
|
+
"parameters": {
|
|
5889
|
+
"type": "object",
|
|
5890
|
+
"additionalProperties": false,
|
|
5891
|
+
"properties": {
|
|
5892
|
+
"speedState": {
|
|
5893
|
+
"type": "string",
|
|
5894
|
+
"enum": [
|
|
5895
|
+
"Stop",
|
|
5896
|
+
"Slow",
|
|
5897
|
+
"Fast"
|
|
5898
|
+
],
|
|
5899
|
+
"default": "Slow"
|
|
5900
|
+
},
|
|
5901
|
+
"speed": {
|
|
5902
|
+
"type": "number",
|
|
5903
|
+
"minimum": 25,
|
|
5904
|
+
"maximum": 200,
|
|
5905
|
+
"x-effetune-unit": "%",
|
|
5906
|
+
"default": 100
|
|
5907
|
+
},
|
|
5908
|
+
"acceleration": {
|
|
5909
|
+
"type": "number",
|
|
5910
|
+
"minimum": 0.1,
|
|
5911
|
+
"maximum": 10,
|
|
5912
|
+
"x-effetune-unit": "s",
|
|
5913
|
+
"default": 2.2
|
|
5914
|
+
},
|
|
5915
|
+
"crossover": {
|
|
5916
|
+
"type": "number",
|
|
5917
|
+
"minimum": 200,
|
|
5918
|
+
"maximum": 2000,
|
|
5919
|
+
"x-effetune-unit": "Hz",
|
|
5920
|
+
"default": 800
|
|
5921
|
+
},
|
|
5922
|
+
"rotorBalance": {
|
|
5923
|
+
"type": "number",
|
|
5924
|
+
"minimum": -100,
|
|
5925
|
+
"maximum": 100,
|
|
5926
|
+
"x-effetune-unit": "%",
|
|
5927
|
+
"default": 0
|
|
5928
|
+
},
|
|
5929
|
+
"stereoWidth": {
|
|
5930
|
+
"type": "number",
|
|
5931
|
+
"minimum": 0,
|
|
5932
|
+
"maximum": 100,
|
|
5933
|
+
"x-effetune-unit": "%",
|
|
5934
|
+
"default": 75
|
|
5935
|
+
},
|
|
5936
|
+
"dopplerDepth": {
|
|
5937
|
+
"type": "number",
|
|
5938
|
+
"minimum": 0,
|
|
5939
|
+
"maximum": 100,
|
|
5940
|
+
"x-effetune-unit": "%",
|
|
5941
|
+
"default": 45
|
|
5942
|
+
},
|
|
5943
|
+
"amplitudeDepth": {
|
|
5944
|
+
"type": "number",
|
|
5945
|
+
"minimum": 0,
|
|
5946
|
+
"maximum": 100,
|
|
5947
|
+
"x-effetune-unit": "%",
|
|
5948
|
+
"default": 55
|
|
5949
|
+
},
|
|
5950
|
+
"mix": {
|
|
5951
|
+
"type": "number",
|
|
5952
|
+
"minimum": 0,
|
|
5953
|
+
"maximum": 100,
|
|
5954
|
+
"x-effetune-unit": "%",
|
|
5955
|
+
"default": 70
|
|
5956
|
+
}
|
|
5957
|
+
}
|
|
5958
|
+
}
|
|
5959
|
+
}
|
|
5960
|
+
},
|
|
5961
|
+
"Tremolo": {
|
|
5962
|
+
"type": "object",
|
|
5963
|
+
"additionalProperties": false,
|
|
5964
|
+
"required": [
|
|
5965
|
+
"type",
|
|
5966
|
+
"parameters"
|
|
5967
|
+
],
|
|
5968
|
+
"properties": {
|
|
5969
|
+
"id": {
|
|
5970
|
+
"type": "string",
|
|
5971
|
+
"minLength": 1,
|
|
5972
|
+
"maxLength": 128
|
|
5973
|
+
},
|
|
5974
|
+
"type": {
|
|
5975
|
+
"const": "Tremolo"
|
|
5976
|
+
},
|
|
5977
|
+
"enabled": {
|
|
5978
|
+
"type": "boolean",
|
|
5979
|
+
"default": true
|
|
5980
|
+
},
|
|
5981
|
+
"channel": {
|
|
5982
|
+
"$ref": "#/$defs/channel"
|
|
5983
|
+
},
|
|
5984
|
+
"parameters": {
|
|
5985
|
+
"type": "object",
|
|
5986
|
+
"additionalProperties": false,
|
|
5987
|
+
"properties": {
|
|
5988
|
+
"rate": {
|
|
5989
|
+
"type": "number",
|
|
5990
|
+
"minimum": 0.1,
|
|
5991
|
+
"maximum": 50,
|
|
5992
|
+
"x-effetune-unit": "Hz",
|
|
5993
|
+
"default": 10
|
|
5994
|
+
},
|
|
5995
|
+
"depth": {
|
|
5996
|
+
"type": "number",
|
|
5997
|
+
"minimum": 0,
|
|
5998
|
+
"maximum": 12,
|
|
5999
|
+
"x-effetune-unit": "dB",
|
|
6000
|
+
"default": 2
|
|
6001
|
+
},
|
|
6002
|
+
"randomness": {
|
|
6003
|
+
"type": "number",
|
|
6004
|
+
"minimum": 0,
|
|
6005
|
+
"maximum": 96,
|
|
6006
|
+
"x-effetune-unit": "dB",
|
|
6007
|
+
"default": 6
|
|
6008
|
+
},
|
|
6009
|
+
"randomnessCutoff": {
|
|
6010
|
+
"type": "number",
|
|
6011
|
+
"minimum": 1,
|
|
6012
|
+
"maximum": 1000,
|
|
6013
|
+
"x-effetune-unit": "Hz",
|
|
6014
|
+
"default": 200
|
|
6015
|
+
},
|
|
6016
|
+
"randomnessSlope": {
|
|
6017
|
+
"type": "number",
|
|
6018
|
+
"minimum": -12,
|
|
6019
|
+
"maximum": 0,
|
|
6020
|
+
"x-effetune-unit": "dB",
|
|
6021
|
+
"default": -6
|
|
6022
|
+
},
|
|
6023
|
+
"channelPhase": {
|
|
6024
|
+
"type": "number",
|
|
6025
|
+
"minimum": -180,
|
|
6026
|
+
"maximum": 180,
|
|
6027
|
+
"x-effetune-unit": "degrees",
|
|
6028
|
+
"default": 0
|
|
6029
|
+
},
|
|
6030
|
+
"channelSync": {
|
|
6031
|
+
"type": "number",
|
|
6032
|
+
"minimum": 0,
|
|
6033
|
+
"maximum": 100,
|
|
6034
|
+
"x-effetune-unit": "%",
|
|
6035
|
+
"default": 100
|
|
6036
|
+
}
|
|
6037
|
+
}
|
|
6038
|
+
}
|
|
6039
|
+
}
|
|
6040
|
+
},
|
|
6041
|
+
"WowFlutter": {
|
|
6042
|
+
"type": "object",
|
|
6043
|
+
"additionalProperties": false,
|
|
6044
|
+
"required": [
|
|
6045
|
+
"type",
|
|
6046
|
+
"parameters"
|
|
6047
|
+
],
|
|
6048
|
+
"properties": {
|
|
6049
|
+
"id": {
|
|
6050
|
+
"type": "string",
|
|
6051
|
+
"minLength": 1,
|
|
6052
|
+
"maxLength": 128
|
|
6053
|
+
},
|
|
6054
|
+
"type": {
|
|
6055
|
+
"const": "WowFlutter"
|
|
6056
|
+
},
|
|
6057
|
+
"enabled": {
|
|
6058
|
+
"type": "boolean",
|
|
6059
|
+
"default": true
|
|
6060
|
+
},
|
|
6061
|
+
"channel": {
|
|
6062
|
+
"$ref": "#/$defs/channel"
|
|
6063
|
+
},
|
|
6064
|
+
"parameters": {
|
|
6065
|
+
"type": "object",
|
|
6066
|
+
"additionalProperties": false,
|
|
6067
|
+
"properties": {
|
|
6068
|
+
"rate": {
|
|
6069
|
+
"type": "number",
|
|
6070
|
+
"minimum": 0.1,
|
|
6071
|
+
"maximum": 20,
|
|
6072
|
+
"x-effetune-unit": "Hz",
|
|
6073
|
+
"default": 0.5
|
|
6074
|
+
},
|
|
6075
|
+
"depth": {
|
|
6076
|
+
"type": "number",
|
|
6077
|
+
"minimum": 0,
|
|
6078
|
+
"maximum": 40,
|
|
6079
|
+
"x-effetune-unit": "ms",
|
|
6080
|
+
"default": 6
|
|
6081
|
+
},
|
|
6082
|
+
"randomness": {
|
|
6083
|
+
"type": "number",
|
|
6084
|
+
"minimum": 0,
|
|
6085
|
+
"maximum": 40,
|
|
6086
|
+
"x-effetune-unit": "ms",
|
|
6087
|
+
"default": 10
|
|
6088
|
+
},
|
|
6089
|
+
"randomnessCutoff": {
|
|
6090
|
+
"type": "number",
|
|
6091
|
+
"minimum": 0.1,
|
|
6092
|
+
"maximum": 20,
|
|
6093
|
+
"x-effetune-unit": "Hz",
|
|
6094
|
+
"default": 5
|
|
6095
|
+
},
|
|
6096
|
+
"randomnessSlope": {
|
|
6097
|
+
"type": "number",
|
|
6098
|
+
"minimum": -12,
|
|
6099
|
+
"maximum": 0,
|
|
6100
|
+
"x-effetune-unit": "dB",
|
|
6101
|
+
"default": -6
|
|
6102
|
+
},
|
|
6103
|
+
"channelPhase": {
|
|
6104
|
+
"type": "number",
|
|
6105
|
+
"minimum": -180,
|
|
6106
|
+
"maximum": 180,
|
|
6107
|
+
"x-effetune-unit": "deg",
|
|
6108
|
+
"default": 0
|
|
6109
|
+
},
|
|
6110
|
+
"channelSync": {
|
|
6111
|
+
"type": "number",
|
|
6112
|
+
"minimum": 0,
|
|
6113
|
+
"maximum": 100,
|
|
6114
|
+
"x-effetune-unit": "%",
|
|
6115
|
+
"default": 100
|
|
6116
|
+
}
|
|
6117
|
+
}
|
|
6118
|
+
}
|
|
6119
|
+
}
|
|
6120
|
+
},
|
|
6121
|
+
"Oscillator": {
|
|
6122
|
+
"type": "object",
|
|
6123
|
+
"additionalProperties": false,
|
|
6124
|
+
"required": [
|
|
6125
|
+
"type",
|
|
6126
|
+
"parameters"
|
|
6127
|
+
],
|
|
6128
|
+
"properties": {
|
|
6129
|
+
"id": {
|
|
6130
|
+
"type": "string",
|
|
6131
|
+
"minLength": 1,
|
|
6132
|
+
"maxLength": 128
|
|
6133
|
+
},
|
|
6134
|
+
"type": {
|
|
6135
|
+
"const": "Oscillator"
|
|
5530
6136
|
},
|
|
5531
6137
|
"enabled": {
|
|
5532
6138
|
"type": "boolean",
|
|
@@ -6201,6 +6807,10 @@
|
|
|
6201
6807
|
"x-effetune-unit": "dB",
|
|
6202
6808
|
"default": -15
|
|
6203
6809
|
},
|
|
6810
|
+
"dryEnabled": {
|
|
6811
|
+
"type": "boolean",
|
|
6812
|
+
"default": true
|
|
6813
|
+
},
|
|
6204
6814
|
"dryLevel": {
|
|
6205
6815
|
"type": "number",
|
|
6206
6816
|
"minimum": -96,
|
|
@@ -6875,14 +7485,15 @@
|
|
|
6875
7485
|
"minimum": -96,
|
|
6876
7486
|
"maximum": 0,
|
|
6877
7487
|
"x-effetune-unit": "dB",
|
|
6878
|
-
"default": -
|
|
7488
|
+
"default": -44.0059
|
|
6879
7489
|
},
|
|
6880
7490
|
"tube": {
|
|
6881
7491
|
"type": "string",
|
|
6882
7492
|
"enum": [
|
|
6883
7493
|
"12AX7",
|
|
6884
7494
|
"12AT7",
|
|
6885
|
-
"12AU7"
|
|
7495
|
+
"12AU7",
|
|
7496
|
+
"Bypass"
|
|
6886
7497
|
],
|
|
6887
7498
|
"default": "12AX7"
|
|
6888
7499
|
},
|
|
@@ -6919,7 +7530,7 @@
|
|
|
6919
7530
|
"minimum": -48,
|
|
6920
7531
|
"maximum": 48,
|
|
6921
7532
|
"x-effetune-unit": "dB",
|
|
6922
|
-
"default":
|
|
7533
|
+
"default": -7.372
|
|
6923
7534
|
},
|
|
6924
7535
|
"mix": {
|
|
6925
7536
|
"type": "number",
|
|
@@ -6931,7 +7542,7 @@
|
|
|
6931
7542
|
"inputReference": {
|
|
6932
7543
|
"type": "number",
|
|
6933
7544
|
"minimum": 0.1,
|
|
6934
|
-
"maximum":
|
|
7545
|
+
"maximum": 300,
|
|
6935
7546
|
"x-effetune-unit": "Vpk",
|
|
6936
7547
|
"default": 2.828
|
|
6937
7548
|
},
|
|
@@ -6946,7 +7557,8 @@
|
|
|
6946
7557
|
"type": "string",
|
|
6947
7558
|
"enum": [
|
|
6948
7559
|
"Line",
|
|
6949
|
-
"Power"
|
|
7560
|
+
"Power",
|
|
7561
|
+
"SingleEnded"
|
|
6950
7562
|
],
|
|
6951
7563
|
"default": "Power"
|
|
6952
7564
|
},
|
|
@@ -6954,7 +7566,9 @@
|
|
|
6954
7566
|
"type": "string",
|
|
6955
7567
|
"enum": [
|
|
6956
7568
|
"EL84",
|
|
6957
|
-
"EL34"
|
|
7569
|
+
"EL34",
|
|
7570
|
+
"6L6GC",
|
|
7571
|
+
"KT88"
|
|
6958
7572
|
],
|
|
6959
7573
|
"default": "EL84"
|
|
6960
7574
|
},
|
|
@@ -7017,6 +7631,37 @@
|
|
|
7017
7631
|
"autoGainReduction": {
|
|
7018
7632
|
"type": "boolean",
|
|
7019
7633
|
"default": true
|
|
7634
|
+
},
|
|
7635
|
+
"seTube": {
|
|
7636
|
+
"type": "string",
|
|
7637
|
+
"enum": [
|
|
7638
|
+
"300B",
|
|
7639
|
+
"2A3"
|
|
7640
|
+
],
|
|
7641
|
+
"default": "300B"
|
|
7642
|
+
},
|
|
7643
|
+
"seBPlus": {
|
|
7644
|
+
"type": "number",
|
|
7645
|
+
"minimum": 250,
|
|
7646
|
+
"maximum": 450,
|
|
7647
|
+
"x-effetune-unit": "V",
|
|
7648
|
+
"default": 400
|
|
7649
|
+
},
|
|
7650
|
+
"seCathodeResistor": {
|
|
7651
|
+
"type": "number",
|
|
7652
|
+
"minimum": 700,
|
|
7653
|
+
"maximum": 1300,
|
|
7654
|
+
"x-effetune-unit": "Ohm",
|
|
7655
|
+
"default": 1000
|
|
7656
|
+
},
|
|
7657
|
+
"sePrimaryImpedance": {
|
|
7658
|
+
"type": "string",
|
|
7659
|
+
"enum": [
|
|
7660
|
+
"2.5",
|
|
7661
|
+
"3.5",
|
|
7662
|
+
"5.0"
|
|
7663
|
+
],
|
|
7664
|
+
"default": "3.5"
|
|
7020
7665
|
}
|
|
7021
7666
|
}
|
|
7022
7667
|
}
|
|
@@ -7208,6 +7853,214 @@
|
|
|
7208
7853
|
}
|
|
7209
7854
|
}
|
|
7210
7855
|
},
|
|
7856
|
+
"PhaseSelectEQ": {
|
|
7857
|
+
"type": "object",
|
|
7858
|
+
"additionalProperties": false,
|
|
7859
|
+
"required": [
|
|
7860
|
+
"type",
|
|
7861
|
+
"parameters"
|
|
7862
|
+
],
|
|
7863
|
+
"properties": {
|
|
7864
|
+
"id": {
|
|
7865
|
+
"type": "string",
|
|
7866
|
+
"minLength": 1,
|
|
7867
|
+
"maxLength": 128
|
|
7868
|
+
},
|
|
7869
|
+
"type": {
|
|
7870
|
+
"const": "PhaseSelectEQ"
|
|
7871
|
+
},
|
|
7872
|
+
"enabled": {
|
|
7873
|
+
"type": "boolean",
|
|
7874
|
+
"default": true
|
|
7875
|
+
},
|
|
7876
|
+
"channel": {
|
|
7877
|
+
"$ref": "#/$defs/channel"
|
|
7878
|
+
},
|
|
7879
|
+
"parameters": {
|
|
7880
|
+
"type": "object",
|
|
7881
|
+
"additionalProperties": false,
|
|
7882
|
+
"properties": {
|
|
7883
|
+
"regionEnabled": {
|
|
7884
|
+
"type": "array",
|
|
7885
|
+
"minItems": 5,
|
|
7886
|
+
"maxItems": 5,
|
|
7887
|
+
"items": {
|
|
7888
|
+
"type": "boolean"
|
|
7889
|
+
},
|
|
7890
|
+
"default": [
|
|
7891
|
+
true,
|
|
7892
|
+
false,
|
|
7893
|
+
false,
|
|
7894
|
+
false,
|
|
7895
|
+
false
|
|
7896
|
+
]
|
|
7897
|
+
},
|
|
7898
|
+
"outerFrequencyLow": {
|
|
7899
|
+
"type": "array",
|
|
7900
|
+
"minItems": 5,
|
|
7901
|
+
"maxItems": 5,
|
|
7902
|
+
"items": {
|
|
7903
|
+
"type": "number",
|
|
7904
|
+
"minimum": 20,
|
|
7905
|
+
"maximum": 40000,
|
|
7906
|
+
"x-effetune-unit": "Hz"
|
|
7907
|
+
},
|
|
7908
|
+
"default": [
|
|
7909
|
+
80,
|
|
7910
|
+
80,
|
|
7911
|
+
80,
|
|
7912
|
+
80,
|
|
7913
|
+
80
|
|
7914
|
+
]
|
|
7915
|
+
},
|
|
7916
|
+
"coreFrequencyLow": {
|
|
7917
|
+
"type": "array",
|
|
7918
|
+
"minItems": 5,
|
|
7919
|
+
"maxItems": 5,
|
|
7920
|
+
"items": {
|
|
7921
|
+
"type": "number",
|
|
7922
|
+
"minimum": 20,
|
|
7923
|
+
"maximum": 40000,
|
|
7924
|
+
"x-effetune-unit": "Hz"
|
|
7925
|
+
},
|
|
7926
|
+
"default": [
|
|
7927
|
+
100,
|
|
7928
|
+
100,
|
|
7929
|
+
100,
|
|
7930
|
+
100,
|
|
7931
|
+
100
|
|
7932
|
+
]
|
|
7933
|
+
},
|
|
7934
|
+
"coreFrequencyHigh": {
|
|
7935
|
+
"type": "array",
|
|
7936
|
+
"minItems": 5,
|
|
7937
|
+
"maxItems": 5,
|
|
7938
|
+
"items": {
|
|
7939
|
+
"type": "number",
|
|
7940
|
+
"minimum": 20,
|
|
7941
|
+
"maximum": 40000,
|
|
7942
|
+
"x-effetune-unit": "Hz"
|
|
7943
|
+
},
|
|
7944
|
+
"default": [
|
|
7945
|
+
10000,
|
|
7946
|
+
10000,
|
|
7947
|
+
10000,
|
|
7948
|
+
10000,
|
|
7949
|
+
10000
|
|
7950
|
+
]
|
|
7951
|
+
},
|
|
7952
|
+
"outerFrequencyHigh": {
|
|
7953
|
+
"type": "array",
|
|
7954
|
+
"minItems": 5,
|
|
7955
|
+
"maxItems": 5,
|
|
7956
|
+
"items": {
|
|
7957
|
+
"type": "number",
|
|
7958
|
+
"minimum": 20,
|
|
7959
|
+
"maximum": 40000,
|
|
7960
|
+
"x-effetune-unit": "Hz"
|
|
7961
|
+
},
|
|
7962
|
+
"default": [
|
|
7963
|
+
12000,
|
|
7964
|
+
12000,
|
|
7965
|
+
12000,
|
|
7966
|
+
12000,
|
|
7967
|
+
12000
|
|
7968
|
+
]
|
|
7969
|
+
},
|
|
7970
|
+
"outerPhaseLow": {
|
|
7971
|
+
"type": "array",
|
|
7972
|
+
"minItems": 5,
|
|
7973
|
+
"maxItems": 5,
|
|
7974
|
+
"items": {
|
|
7975
|
+
"type": "number",
|
|
7976
|
+
"minimum": 0,
|
|
7977
|
+
"maximum": 180,
|
|
7978
|
+
"x-effetune-unit": "degree"
|
|
7979
|
+
},
|
|
7980
|
+
"default": [
|
|
7981
|
+
0,
|
|
7982
|
+
0,
|
|
7983
|
+
0,
|
|
7984
|
+
0,
|
|
7985
|
+
0
|
|
7986
|
+
]
|
|
7987
|
+
},
|
|
7988
|
+
"corePhaseLow": {
|
|
7989
|
+
"type": "array",
|
|
7990
|
+
"minItems": 5,
|
|
7991
|
+
"maxItems": 5,
|
|
7992
|
+
"items": {
|
|
7993
|
+
"type": "number",
|
|
7994
|
+
"minimum": 0,
|
|
7995
|
+
"maximum": 180,
|
|
7996
|
+
"x-effetune-unit": "degree"
|
|
7997
|
+
},
|
|
7998
|
+
"default": [
|
|
7999
|
+
0,
|
|
8000
|
+
0,
|
|
8001
|
+
0,
|
|
8002
|
+
0,
|
|
8003
|
+
0
|
|
8004
|
+
]
|
|
8005
|
+
},
|
|
8006
|
+
"corePhaseHigh": {
|
|
8007
|
+
"type": "array",
|
|
8008
|
+
"minItems": 5,
|
|
8009
|
+
"maxItems": 5,
|
|
8010
|
+
"items": {
|
|
8011
|
+
"type": "number",
|
|
8012
|
+
"minimum": 0,
|
|
8013
|
+
"maximum": 180,
|
|
8014
|
+
"x-effetune-unit": "degree"
|
|
8015
|
+
},
|
|
8016
|
+
"default": [
|
|
8017
|
+
30,
|
|
8018
|
+
30,
|
|
8019
|
+
30,
|
|
8020
|
+
30,
|
|
8021
|
+
30
|
|
8022
|
+
]
|
|
8023
|
+
},
|
|
8024
|
+
"outerPhaseHigh": {
|
|
8025
|
+
"type": "array",
|
|
8026
|
+
"minItems": 5,
|
|
8027
|
+
"maxItems": 5,
|
|
8028
|
+
"items": {
|
|
8029
|
+
"type": "number",
|
|
8030
|
+
"minimum": 0,
|
|
8031
|
+
"maximum": 180,
|
|
8032
|
+
"x-effetune-unit": "degree"
|
|
8033
|
+
},
|
|
8034
|
+
"default": [
|
|
8035
|
+
45,
|
|
8036
|
+
45,
|
|
8037
|
+
45,
|
|
8038
|
+
45,
|
|
8039
|
+
45
|
|
8040
|
+
]
|
|
8041
|
+
},
|
|
8042
|
+
"gain": {
|
|
8043
|
+
"type": "array",
|
|
8044
|
+
"minItems": 5,
|
|
8045
|
+
"maxItems": 5,
|
|
8046
|
+
"items": {
|
|
8047
|
+
"type": "number",
|
|
8048
|
+
"minimum": 0,
|
|
8049
|
+
"maximum": 200,
|
|
8050
|
+
"x-effetune-unit": "%"
|
|
8051
|
+
},
|
|
8052
|
+
"default": [
|
|
8053
|
+
100,
|
|
8054
|
+
100,
|
|
8055
|
+
100,
|
|
8056
|
+
100,
|
|
8057
|
+
100
|
|
8058
|
+
]
|
|
8059
|
+
}
|
|
8060
|
+
}
|
|
8061
|
+
}
|
|
8062
|
+
}
|
|
8063
|
+
},
|
|
7211
8064
|
"StereoBlend": {
|
|
7212
8065
|
"type": "object",
|
|
7213
8066
|
"additionalProperties": false,
|