@effetune/dsp 0.1.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 +491 -7
- package/dist/assets/effetune-dsp.simd.wasm +0 -0
- package/dist/assets/effetune-dsp.wasm +0 -0
- package/dist/catalog/effects-v1.json +1778 -242
- package/dist/errors.js +21 -0
- package/dist/generated-effects.d.ts +317 -1
- package/dist/generated-effects.js +185 -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 +268 -1
- package/dist/index.js +36 -0
- package/dist/internal/dsp-engine-binding.js +162 -1
- package/dist/internal/dsp-params.generated.js +537 -70
- package/dist/internal/dsp-wasm-loader.js +2 -0
- package/dist/preset.js +29 -0
- package/dist/runtime.js +73 -5
- package/dist/schemas/chain-v1.schema.json +1740 -167
- 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
|
@@ -185,6 +185,12 @@
|
|
|
185
185
|
{
|
|
186
186
|
"$ref": "#/$defs/BitCrusher"
|
|
187
187
|
},
|
|
188
|
+
{
|
|
189
|
+
"$ref": "#/$defs/BluetoothSBCSimulator"
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
"$ref": "#/$defs/CassetteArtifacts"
|
|
193
|
+
},
|
|
188
194
|
{
|
|
189
195
|
"$ref": "#/$defs/DigitalErrorEmulator"
|
|
190
196
|
},
|
|
@@ -194,9 +200,18 @@
|
|
|
194
200
|
{
|
|
195
201
|
"$ref": "#/$defs/FMRadioSimulator"
|
|
196
202
|
},
|
|
203
|
+
{
|
|
204
|
+
"$ref": "#/$defs/G726ADPCMSimulator"
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
"$ref": "#/$defs/GSMFullRateSimulator"
|
|
208
|
+
},
|
|
197
209
|
{
|
|
198
210
|
"$ref": "#/$defs/HumGenerator"
|
|
199
211
|
},
|
|
212
|
+
{
|
|
213
|
+
"$ref": "#/$defs/MP3CodecSimulator"
|
|
214
|
+
},
|
|
200
215
|
{
|
|
201
216
|
"$ref": "#/$defs/NoiseBlender"
|
|
202
217
|
},
|
|
@@ -206,18 +221,39 @@
|
|
|
206
221
|
{
|
|
207
222
|
"$ref": "#/$defs/SWRadioSimulator"
|
|
208
223
|
},
|
|
224
|
+
{
|
|
225
|
+
"$ref": "#/$defs/TapeArtifacts"
|
|
226
|
+
},
|
|
209
227
|
{
|
|
210
228
|
"$ref": "#/$defs/VinylArtifacts"
|
|
211
229
|
},
|
|
212
230
|
{
|
|
213
231
|
"$ref": "#/$defs/VinylSimulator"
|
|
214
232
|
},
|
|
233
|
+
{
|
|
234
|
+
"$ref": "#/$defs/AutoFilter"
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
"$ref": "#/$defs/AutoPan"
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"$ref": "#/$defs/Chorus"
|
|
241
|
+
},
|
|
215
242
|
{
|
|
216
243
|
"$ref": "#/$defs/DopplerDistortion"
|
|
217
244
|
},
|
|
245
|
+
{
|
|
246
|
+
"$ref": "#/$defs/FrequencyShifter"
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
"$ref": "#/$defs/Phaser"
|
|
250
|
+
},
|
|
218
251
|
{
|
|
219
252
|
"$ref": "#/$defs/PitchShifter"
|
|
220
253
|
},
|
|
254
|
+
{
|
|
255
|
+
"$ref": "#/$defs/RotarySpeaker"
|
|
256
|
+
},
|
|
221
257
|
{
|
|
222
258
|
"$ref": "#/$defs/Tremolo"
|
|
223
259
|
},
|
|
@@ -269,6 +305,9 @@
|
|
|
269
305
|
{
|
|
270
306
|
"$ref": "#/$defs/SubSynth"
|
|
271
307
|
},
|
|
308
|
+
{
|
|
309
|
+
"$ref": "#/$defs/TubeSimulator"
|
|
310
|
+
},
|
|
272
311
|
{
|
|
273
312
|
"$ref": "#/$defs/CrossfeedFilter"
|
|
274
313
|
},
|
|
@@ -278,6 +317,9 @@
|
|
|
278
317
|
{
|
|
279
318
|
"$ref": "#/$defs/MultibandBalance"
|
|
280
319
|
},
|
|
320
|
+
{
|
|
321
|
+
"$ref": "#/$defs/PhaseSelectEQ"
|
|
322
|
+
},
|
|
281
323
|
{
|
|
282
324
|
"$ref": "#/$defs/StereoBlend"
|
|
283
325
|
}
|
|
@@ -3546,6 +3588,10 @@
|
|
|
3546
3588
|
"type": "object",
|
|
3547
3589
|
"additionalProperties": false,
|
|
3548
3590
|
"properties": {
|
|
3591
|
+
"radio": {
|
|
3592
|
+
"type": "boolean",
|
|
3593
|
+
"default": true
|
|
3594
|
+
},
|
|
3549
3595
|
"txBandwidth": {
|
|
3550
3596
|
"type": "number",
|
|
3551
3597
|
"minimum": 2,
|
|
@@ -3757,6 +3803,205 @@
|
|
|
3757
3803
|
}
|
|
3758
3804
|
}
|
|
3759
3805
|
},
|
|
3806
|
+
"BluetoothSBCSimulator": {
|
|
3807
|
+
"type": "object",
|
|
3808
|
+
"additionalProperties": false,
|
|
3809
|
+
"required": [
|
|
3810
|
+
"type",
|
|
3811
|
+
"parameters"
|
|
3812
|
+
],
|
|
3813
|
+
"properties": {
|
|
3814
|
+
"id": {
|
|
3815
|
+
"type": "string",
|
|
3816
|
+
"minLength": 1,
|
|
3817
|
+
"maxLength": 128
|
|
3818
|
+
},
|
|
3819
|
+
"type": {
|
|
3820
|
+
"const": "BluetoothSBCSimulator"
|
|
3821
|
+
},
|
|
3822
|
+
"enabled": {
|
|
3823
|
+
"type": "boolean",
|
|
3824
|
+
"default": true
|
|
3825
|
+
},
|
|
3826
|
+
"channel": {
|
|
3827
|
+
"$ref": "#/$defs/channel"
|
|
3828
|
+
},
|
|
3829
|
+
"parameters": {
|
|
3830
|
+
"type": "object",
|
|
3831
|
+
"additionalProperties": false,
|
|
3832
|
+
"properties": {
|
|
3833
|
+
"bitpool": {
|
|
3834
|
+
"type": "integer",
|
|
3835
|
+
"minimum": 2,
|
|
3836
|
+
"maximum": 53,
|
|
3837
|
+
"default": 35
|
|
3838
|
+
},
|
|
3839
|
+
"channelMode": {
|
|
3840
|
+
"type": "string",
|
|
3841
|
+
"enum": [
|
|
3842
|
+
"Joint Stereo",
|
|
3843
|
+
"Stereo",
|
|
3844
|
+
"Dual Channel"
|
|
3845
|
+
],
|
|
3846
|
+
"default": "Joint Stereo"
|
|
3847
|
+
},
|
|
3848
|
+
"blocks": {
|
|
3849
|
+
"type": "string",
|
|
3850
|
+
"enum": [
|
|
3851
|
+
"4",
|
|
3852
|
+
"8",
|
|
3853
|
+
"12",
|
|
3854
|
+
"16"
|
|
3855
|
+
],
|
|
3856
|
+
"default": "16"
|
|
3857
|
+
},
|
|
3858
|
+
"outputGain": {
|
|
3859
|
+
"type": "number",
|
|
3860
|
+
"minimum": -24,
|
|
3861
|
+
"maximum": 12,
|
|
3862
|
+
"x-effetune-unit": "dB",
|
|
3863
|
+
"default": 0
|
|
3864
|
+
},
|
|
3865
|
+
"mix": {
|
|
3866
|
+
"type": "number",
|
|
3867
|
+
"minimum": 0,
|
|
3868
|
+
"maximum": 100,
|
|
3869
|
+
"x-effetune-unit": "%",
|
|
3870
|
+
"default": 100
|
|
3871
|
+
},
|
|
3872
|
+
"packetLoss": {
|
|
3873
|
+
"type": "number",
|
|
3874
|
+
"minimum": 0,
|
|
3875
|
+
"maximum": 20,
|
|
3876
|
+
"x-effetune-unit": "%",
|
|
3877
|
+
"default": 0
|
|
3878
|
+
}
|
|
3879
|
+
}
|
|
3880
|
+
}
|
|
3881
|
+
}
|
|
3882
|
+
},
|
|
3883
|
+
"CassetteArtifacts": {
|
|
3884
|
+
"type": "object",
|
|
3885
|
+
"additionalProperties": false,
|
|
3886
|
+
"required": [
|
|
3887
|
+
"type",
|
|
3888
|
+
"parameters"
|
|
3889
|
+
],
|
|
3890
|
+
"properties": {
|
|
3891
|
+
"id": {
|
|
3892
|
+
"type": "string",
|
|
3893
|
+
"minLength": 1,
|
|
3894
|
+
"maxLength": 128
|
|
3895
|
+
},
|
|
3896
|
+
"type": {
|
|
3897
|
+
"const": "CassetteArtifacts"
|
|
3898
|
+
},
|
|
3899
|
+
"enabled": {
|
|
3900
|
+
"type": "boolean",
|
|
3901
|
+
"default": true
|
|
3902
|
+
},
|
|
3903
|
+
"channel": {
|
|
3904
|
+
"$ref": "#/$defs/channel"
|
|
3905
|
+
},
|
|
3906
|
+
"parameters": {
|
|
3907
|
+
"type": "object",
|
|
3908
|
+
"additionalProperties": false,
|
|
3909
|
+
"properties": {
|
|
3910
|
+
"deckGrade": {
|
|
3911
|
+
"type": "string",
|
|
3912
|
+
"enum": [
|
|
3913
|
+
"Reference",
|
|
3914
|
+
"Hi-Fi",
|
|
3915
|
+
"Consumer",
|
|
3916
|
+
"Portable"
|
|
3917
|
+
],
|
|
3918
|
+
"default": "Consumer"
|
|
3919
|
+
},
|
|
3920
|
+
"tapeType": {
|
|
3921
|
+
"type": "string",
|
|
3922
|
+
"enum": [
|
|
3923
|
+
"Type I",
|
|
3924
|
+
"Type II",
|
|
3925
|
+
"Type IV"
|
|
3926
|
+
],
|
|
3927
|
+
"default": "Type I"
|
|
3928
|
+
},
|
|
3929
|
+
"noiseReduction": {
|
|
3930
|
+
"type": "string",
|
|
3931
|
+
"enum": [
|
|
3932
|
+
"Off",
|
|
3933
|
+
"Dolby B",
|
|
3934
|
+
"Dolby C"
|
|
3935
|
+
],
|
|
3936
|
+
"default": "Dolby B"
|
|
3937
|
+
},
|
|
3938
|
+
"bias": {
|
|
3939
|
+
"type": "number",
|
|
3940
|
+
"minimum": -6,
|
|
3941
|
+
"maximum": 6,
|
|
3942
|
+
"x-effetune-unit": "dB",
|
|
3943
|
+
"default": 0
|
|
3944
|
+
},
|
|
3945
|
+
"recordLevel": {
|
|
3946
|
+
"type": "number",
|
|
3947
|
+
"minimum": -12,
|
|
3948
|
+
"maximum": 18,
|
|
3949
|
+
"x-effetune-unit": "dB",
|
|
3950
|
+
"default": 9
|
|
3951
|
+
},
|
|
3952
|
+
"wowFlutter": {
|
|
3953
|
+
"type": "number",
|
|
3954
|
+
"minimum": 0,
|
|
3955
|
+
"maximum": 1,
|
|
3956
|
+
"x-effetune-unit": "%",
|
|
3957
|
+
"default": 0.2
|
|
3958
|
+
},
|
|
3959
|
+
"hiss": {
|
|
3960
|
+
"type": "number",
|
|
3961
|
+
"minimum": -92,
|
|
3962
|
+
"maximum": -42,
|
|
3963
|
+
"x-effetune-unit": "dB re 250 nWb/m",
|
|
3964
|
+
"default": -60.5
|
|
3965
|
+
},
|
|
3966
|
+
"dropouts": {
|
|
3967
|
+
"type": "number",
|
|
3968
|
+
"minimum": 0,
|
|
3969
|
+
"maximum": 20,
|
|
3970
|
+
"x-effetune-unit": "events/min",
|
|
3971
|
+
"default": 2
|
|
3972
|
+
},
|
|
3973
|
+
"azimuth": {
|
|
3974
|
+
"type": "number",
|
|
3975
|
+
"minimum": -6,
|
|
3976
|
+
"maximum": 6,
|
|
3977
|
+
"x-effetune-unit": "arcmin",
|
|
3978
|
+
"default": 2
|
|
3979
|
+
},
|
|
3980
|
+
"dolbyLevelError": {
|
|
3981
|
+
"type": "number",
|
|
3982
|
+
"minimum": -3,
|
|
3983
|
+
"maximum": 3,
|
|
3984
|
+
"x-effetune-unit": "dB",
|
|
3985
|
+
"default": 0
|
|
3986
|
+
},
|
|
3987
|
+
"output": {
|
|
3988
|
+
"type": "number",
|
|
3989
|
+
"minimum": -24,
|
|
3990
|
+
"maximum": 24,
|
|
3991
|
+
"x-effetune-unit": "dB",
|
|
3992
|
+
"default": 0
|
|
3993
|
+
},
|
|
3994
|
+
"mix": {
|
|
3995
|
+
"type": "number",
|
|
3996
|
+
"minimum": 0,
|
|
3997
|
+
"maximum": 100,
|
|
3998
|
+
"x-effetune-unit": "%",
|
|
3999
|
+
"default": 100
|
|
4000
|
+
}
|
|
4001
|
+
}
|
|
4002
|
+
}
|
|
4003
|
+
}
|
|
4004
|
+
},
|
|
3760
4005
|
"DigitalErrorEmulator": {
|
|
3761
4006
|
"type": "object",
|
|
3762
4007
|
"additionalProperties": false,
|
|
@@ -3971,6 +4216,10 @@
|
|
|
3971
4216
|
"type": "object",
|
|
3972
4217
|
"additionalProperties": false,
|
|
3973
4218
|
"properties": {
|
|
4219
|
+
"radio": {
|
|
4220
|
+
"type": "boolean",
|
|
4221
|
+
"default": true
|
|
4222
|
+
},
|
|
3974
4223
|
"emphasis": {
|
|
3975
4224
|
"type": "string",
|
|
3976
4225
|
"enum": [
|
|
@@ -4055,7 +4304,7 @@
|
|
|
4055
4304
|
}
|
|
4056
4305
|
}
|
|
4057
4306
|
},
|
|
4058
|
-
"
|
|
4307
|
+
"G726ADPCMSimulator": {
|
|
4059
4308
|
"type": "object",
|
|
4060
4309
|
"additionalProperties": false,
|
|
4061
4310
|
"required": [
|
|
@@ -4069,7 +4318,7 @@
|
|
|
4069
4318
|
"maxLength": 128
|
|
4070
4319
|
},
|
|
4071
4320
|
"type": {
|
|
4072
|
-
"const": "
|
|
4321
|
+
"const": "G726ADPCMSimulator"
|
|
4073
4322
|
},
|
|
4074
4323
|
"enabled": {
|
|
4075
4324
|
"type": "boolean",
|
|
@@ -4082,55 +4331,42 @@
|
|
|
4082
4331
|
"type": "object",
|
|
4083
4332
|
"additionalProperties": false,
|
|
4084
4333
|
"properties": {
|
|
4085
|
-
"
|
|
4086
|
-
"type": "number",
|
|
4087
|
-
"minimum": 10,
|
|
4088
|
-
"maximum": 120,
|
|
4089
|
-
"x-effetune-unit": "Hz",
|
|
4090
|
-
"default": 50
|
|
4091
|
-
},
|
|
4092
|
-
"humType": {
|
|
4334
|
+
"bitrate": {
|
|
4093
4335
|
"type": "string",
|
|
4094
4336
|
"enum": [
|
|
4095
|
-
"
|
|
4096
|
-
"
|
|
4097
|
-
"
|
|
4337
|
+
"16",
|
|
4338
|
+
"24",
|
|
4339
|
+
"32",
|
|
4340
|
+
"40"
|
|
4098
4341
|
],
|
|
4099
|
-
"
|
|
4100
|
-
|
|
4101
|
-
"harmonics": {
|
|
4102
|
-
"type": "integer",
|
|
4103
|
-
"minimum": 0,
|
|
4104
|
-
"maximum": 100,
|
|
4105
|
-
"x-effetune-unit": "%",
|
|
4106
|
-
"default": 50
|
|
4342
|
+
"x-effetune-unit": "kbit/s",
|
|
4343
|
+
"default": "32"
|
|
4107
4344
|
},
|
|
4108
|
-
"
|
|
4345
|
+
"outputGain": {
|
|
4109
4346
|
"type": "number",
|
|
4110
|
-
"minimum":
|
|
4111
|
-
"maximum":
|
|
4112
|
-
"x-effetune-unit": "
|
|
4113
|
-
"default":
|
|
4347
|
+
"minimum": -24,
|
|
4348
|
+
"maximum": 12,
|
|
4349
|
+
"x-effetune-unit": "dB",
|
|
4350
|
+
"default": 0
|
|
4114
4351
|
},
|
|
4115
|
-
"
|
|
4116
|
-
"type": "
|
|
4352
|
+
"mix": {
|
|
4353
|
+
"type": "integer",
|
|
4117
4354
|
"minimum": 0,
|
|
4118
|
-
"maximum":
|
|
4355
|
+
"maximum": 100,
|
|
4119
4356
|
"x-effetune-unit": "%",
|
|
4120
|
-
"default":
|
|
4357
|
+
"default": 100
|
|
4121
4358
|
},
|
|
4122
|
-
"
|
|
4359
|
+
"radioBitErrorRate": {
|
|
4123
4360
|
"type": "number",
|
|
4124
|
-
"minimum":
|
|
4125
|
-
"maximum": 0,
|
|
4126
|
-
"
|
|
4127
|
-
"default": -40
|
|
4361
|
+
"minimum": 0.000001,
|
|
4362
|
+
"maximum": 0.01,
|
|
4363
|
+
"default": 0.000001
|
|
4128
4364
|
}
|
|
4129
4365
|
}
|
|
4130
4366
|
}
|
|
4131
4367
|
}
|
|
4132
4368
|
},
|
|
4133
|
-
"
|
|
4369
|
+
"GSMFullRateSimulator": {
|
|
4134
4370
|
"type": "object",
|
|
4135
4371
|
"additionalProperties": false,
|
|
4136
4372
|
"required": [
|
|
@@ -4144,7 +4380,7 @@
|
|
|
4144
4380
|
"maxLength": 128
|
|
4145
4381
|
},
|
|
4146
4382
|
"type": {
|
|
4147
|
-
"const": "
|
|
4383
|
+
"const": "GSMFullRateSimulator"
|
|
4148
4384
|
},
|
|
4149
4385
|
"enabled": {
|
|
4150
4386
|
"type": "boolean",
|
|
@@ -4157,21 +4393,237 @@
|
|
|
4157
4393
|
"type": "object",
|
|
4158
4394
|
"additionalProperties": false,
|
|
4159
4395
|
"properties": {
|
|
4160
|
-
"
|
|
4161
|
-
"type": "
|
|
4162
|
-
"
|
|
4163
|
-
|
|
4164
|
-
|
|
4165
|
-
"brown"
|
|
4166
|
-
],
|
|
4167
|
-
"default": "pink"
|
|
4396
|
+
"transcodes": {
|
|
4397
|
+
"type": "integer",
|
|
4398
|
+
"minimum": 1,
|
|
4399
|
+
"maximum": 3,
|
|
4400
|
+
"default": 1
|
|
4168
4401
|
},
|
|
4169
|
-
"
|
|
4402
|
+
"outputGain": {
|
|
4170
4403
|
"type": "number",
|
|
4171
|
-
"minimum": -
|
|
4172
|
-
"maximum":
|
|
4404
|
+
"minimum": -24,
|
|
4405
|
+
"maximum": 12,
|
|
4173
4406
|
"x-effetune-unit": "dB",
|
|
4174
|
-
"default":
|
|
4407
|
+
"default": 0
|
|
4408
|
+
},
|
|
4409
|
+
"mix": {
|
|
4410
|
+
"type": "integer",
|
|
4411
|
+
"minimum": 0,
|
|
4412
|
+
"maximum": 100,
|
|
4413
|
+
"x-effetune-unit": "%",
|
|
4414
|
+
"default": 100
|
|
4415
|
+
},
|
|
4416
|
+
"carrierToInterference": {
|
|
4417
|
+
"type": "number",
|
|
4418
|
+
"minimum": 4,
|
|
4419
|
+
"maximum": 30,
|
|
4420
|
+
"x-effetune-unit": "dB",
|
|
4421
|
+
"default": 30
|
|
4422
|
+
}
|
|
4423
|
+
}
|
|
4424
|
+
}
|
|
4425
|
+
}
|
|
4426
|
+
},
|
|
4427
|
+
"HumGenerator": {
|
|
4428
|
+
"type": "object",
|
|
4429
|
+
"additionalProperties": false,
|
|
4430
|
+
"required": [
|
|
4431
|
+
"type",
|
|
4432
|
+
"parameters"
|
|
4433
|
+
],
|
|
4434
|
+
"properties": {
|
|
4435
|
+
"id": {
|
|
4436
|
+
"type": "string",
|
|
4437
|
+
"minLength": 1,
|
|
4438
|
+
"maxLength": 128
|
|
4439
|
+
},
|
|
4440
|
+
"type": {
|
|
4441
|
+
"const": "HumGenerator"
|
|
4442
|
+
},
|
|
4443
|
+
"enabled": {
|
|
4444
|
+
"type": "boolean",
|
|
4445
|
+
"default": true
|
|
4446
|
+
},
|
|
4447
|
+
"channel": {
|
|
4448
|
+
"$ref": "#/$defs/channel"
|
|
4449
|
+
},
|
|
4450
|
+
"parameters": {
|
|
4451
|
+
"type": "object",
|
|
4452
|
+
"additionalProperties": false,
|
|
4453
|
+
"properties": {
|
|
4454
|
+
"frequency": {
|
|
4455
|
+
"type": "number",
|
|
4456
|
+
"minimum": 10,
|
|
4457
|
+
"maximum": 120,
|
|
4458
|
+
"x-effetune-unit": "Hz",
|
|
4459
|
+
"default": 50
|
|
4460
|
+
},
|
|
4461
|
+
"humType": {
|
|
4462
|
+
"type": "string",
|
|
4463
|
+
"enum": [
|
|
4464
|
+
"Standard",
|
|
4465
|
+
"Rich",
|
|
4466
|
+
"Dirty"
|
|
4467
|
+
],
|
|
4468
|
+
"default": "Standard"
|
|
4469
|
+
},
|
|
4470
|
+
"harmonics": {
|
|
4471
|
+
"type": "integer",
|
|
4472
|
+
"minimum": 0,
|
|
4473
|
+
"maximum": 100,
|
|
4474
|
+
"x-effetune-unit": "%",
|
|
4475
|
+
"default": 50
|
|
4476
|
+
},
|
|
4477
|
+
"tone": {
|
|
4478
|
+
"type": "number",
|
|
4479
|
+
"minimum": 1,
|
|
4480
|
+
"maximum": 20,
|
|
4481
|
+
"x-effetune-unit": "kHz",
|
|
4482
|
+
"default": 10
|
|
4483
|
+
},
|
|
4484
|
+
"instability": {
|
|
4485
|
+
"type": "number",
|
|
4486
|
+
"minimum": 0,
|
|
4487
|
+
"maximum": 10,
|
|
4488
|
+
"x-effetune-unit": "%",
|
|
4489
|
+
"default": 1
|
|
4490
|
+
},
|
|
4491
|
+
"level": {
|
|
4492
|
+
"type": "number",
|
|
4493
|
+
"minimum": -80,
|
|
4494
|
+
"maximum": 0,
|
|
4495
|
+
"x-effetune-unit": "dB",
|
|
4496
|
+
"default": -40
|
|
4497
|
+
}
|
|
4498
|
+
}
|
|
4499
|
+
}
|
|
4500
|
+
}
|
|
4501
|
+
},
|
|
4502
|
+
"MP3CodecSimulator": {
|
|
4503
|
+
"type": "object",
|
|
4504
|
+
"additionalProperties": false,
|
|
4505
|
+
"required": [
|
|
4506
|
+
"type",
|
|
4507
|
+
"parameters"
|
|
4508
|
+
],
|
|
4509
|
+
"properties": {
|
|
4510
|
+
"id": {
|
|
4511
|
+
"type": "string",
|
|
4512
|
+
"minLength": 1,
|
|
4513
|
+
"maxLength": 128
|
|
4514
|
+
},
|
|
4515
|
+
"type": {
|
|
4516
|
+
"const": "MP3CodecSimulator"
|
|
4517
|
+
},
|
|
4518
|
+
"enabled": {
|
|
4519
|
+
"type": "boolean",
|
|
4520
|
+
"default": true
|
|
4521
|
+
},
|
|
4522
|
+
"channel": {
|
|
4523
|
+
"$ref": "#/$defs/channel"
|
|
4524
|
+
},
|
|
4525
|
+
"parameters": {
|
|
4526
|
+
"type": "object",
|
|
4527
|
+
"additionalProperties": false,
|
|
4528
|
+
"properties": {
|
|
4529
|
+
"codecRate": {
|
|
4530
|
+
"type": "string",
|
|
4531
|
+
"enum": [
|
|
4532
|
+
"22.05 kHz (MPEG-2)",
|
|
4533
|
+
"44.1 kHz (MPEG-1)"
|
|
4534
|
+
],
|
|
4535
|
+
"default": "44.1 kHz (MPEG-1)"
|
|
4536
|
+
},
|
|
4537
|
+
"bitrate": {
|
|
4538
|
+
"type": "string",
|
|
4539
|
+
"enum": [
|
|
4540
|
+
"32",
|
|
4541
|
+
"48",
|
|
4542
|
+
"64",
|
|
4543
|
+
"80",
|
|
4544
|
+
"96",
|
|
4545
|
+
"112",
|
|
4546
|
+
"128",
|
|
4547
|
+
"160",
|
|
4548
|
+
"192",
|
|
4549
|
+
"224",
|
|
4550
|
+
"256",
|
|
4551
|
+
"320"
|
|
4552
|
+
],
|
|
4553
|
+
"default": "64"
|
|
4554
|
+
},
|
|
4555
|
+
"stereoMode": {
|
|
4556
|
+
"type": "string",
|
|
4557
|
+
"enum": [
|
|
4558
|
+
"Joint Stereo",
|
|
4559
|
+
"Stereo"
|
|
4560
|
+
],
|
|
4561
|
+
"default": "Joint Stereo"
|
|
4562
|
+
},
|
|
4563
|
+
"bitReservoir": {
|
|
4564
|
+
"type": "boolean",
|
|
4565
|
+
"default": true
|
|
4566
|
+
},
|
|
4567
|
+
"outputGain": {
|
|
4568
|
+
"type": "number",
|
|
4569
|
+
"minimum": -24,
|
|
4570
|
+
"maximum": 12,
|
|
4571
|
+
"x-effetune-unit": "dB",
|
|
4572
|
+
"default": 0
|
|
4573
|
+
},
|
|
4574
|
+
"mix": {
|
|
4575
|
+
"type": "number",
|
|
4576
|
+
"minimum": 0,
|
|
4577
|
+
"maximum": 100,
|
|
4578
|
+
"x-effetune-unit": "%",
|
|
4579
|
+
"default": 100
|
|
4580
|
+
}
|
|
4581
|
+
}
|
|
4582
|
+
}
|
|
4583
|
+
}
|
|
4584
|
+
},
|
|
4585
|
+
"NoiseBlender": {
|
|
4586
|
+
"type": "object",
|
|
4587
|
+
"additionalProperties": false,
|
|
4588
|
+
"required": [
|
|
4589
|
+
"type",
|
|
4590
|
+
"parameters"
|
|
4591
|
+
],
|
|
4592
|
+
"properties": {
|
|
4593
|
+
"id": {
|
|
4594
|
+
"type": "string",
|
|
4595
|
+
"minLength": 1,
|
|
4596
|
+
"maxLength": 128
|
|
4597
|
+
},
|
|
4598
|
+
"type": {
|
|
4599
|
+
"const": "NoiseBlender"
|
|
4600
|
+
},
|
|
4601
|
+
"enabled": {
|
|
4602
|
+
"type": "boolean",
|
|
4603
|
+
"default": true
|
|
4604
|
+
},
|
|
4605
|
+
"channel": {
|
|
4606
|
+
"$ref": "#/$defs/channel"
|
|
4607
|
+
},
|
|
4608
|
+
"parameters": {
|
|
4609
|
+
"type": "object",
|
|
4610
|
+
"additionalProperties": false,
|
|
4611
|
+
"properties": {
|
|
4612
|
+
"noiseType": {
|
|
4613
|
+
"type": "string",
|
|
4614
|
+
"enum": [
|
|
4615
|
+
"white",
|
|
4616
|
+
"pink",
|
|
4617
|
+
"brown"
|
|
4618
|
+
],
|
|
4619
|
+
"default": "pink"
|
|
4620
|
+
},
|
|
4621
|
+
"level": {
|
|
4622
|
+
"type": "number",
|
|
4623
|
+
"minimum": -96,
|
|
4624
|
+
"maximum": 0,
|
|
4625
|
+
"x-effetune-unit": "dB",
|
|
4626
|
+
"default": -36
|
|
4175
4627
|
},
|
|
4176
4628
|
"perChannel": {
|
|
4177
4629
|
"type": "boolean",
|
|
@@ -4246,6 +4698,10 @@
|
|
|
4246
4698
|
"type": "object",
|
|
4247
4699
|
"additionalProperties": false,
|
|
4248
4700
|
"properties": {
|
|
4701
|
+
"radio": {
|
|
4702
|
+
"type": "boolean",
|
|
4703
|
+
"default": true
|
|
4704
|
+
},
|
|
4249
4705
|
"txBandwidth": {
|
|
4250
4706
|
"type": "number",
|
|
4251
4707
|
"minimum": 2,
|
|
@@ -4398,12 +4854,28 @@
|
|
|
4398
4854
|
"maximum": 100,
|
|
4399
4855
|
"x-effetune-unit": "%",
|
|
4400
4856
|
"default": 100
|
|
4857
|
+
},
|
|
4858
|
+
"mode": {
|
|
4859
|
+
"type": "string",
|
|
4860
|
+
"enum": [
|
|
4861
|
+
"AM",
|
|
4862
|
+
"USB",
|
|
4863
|
+
"LSB"
|
|
4864
|
+
],
|
|
4865
|
+
"default": "AM"
|
|
4866
|
+
},
|
|
4867
|
+
"bfoOffset": {
|
|
4868
|
+
"type": "number",
|
|
4869
|
+
"minimum": -1000,
|
|
4870
|
+
"maximum": 1000,
|
|
4871
|
+
"x-effetune-unit": "Hz",
|
|
4872
|
+
"default": 0
|
|
4401
4873
|
}
|
|
4402
4874
|
}
|
|
4403
4875
|
}
|
|
4404
4876
|
}
|
|
4405
4877
|
},
|
|
4406
|
-
"
|
|
4878
|
+
"TapeArtifacts": {
|
|
4407
4879
|
"type": "object",
|
|
4408
4880
|
"additionalProperties": false,
|
|
4409
4881
|
"required": [
|
|
@@ -4417,7 +4889,7 @@
|
|
|
4417
4889
|
"maxLength": 128
|
|
4418
4890
|
},
|
|
4419
4891
|
"type": {
|
|
4420
|
-
"const": "
|
|
4892
|
+
"const": "TapeArtifacts"
|
|
4421
4893
|
},
|
|
4422
4894
|
"enabled": {
|
|
4423
4895
|
"type": "boolean",
|
|
@@ -4430,43 +4902,133 @@
|
|
|
4430
4902
|
"type": "object",
|
|
4431
4903
|
"additionalProperties": false,
|
|
4432
4904
|
"properties": {
|
|
4433
|
-
"
|
|
4434
|
-
"type": "
|
|
4435
|
-
"
|
|
4436
|
-
|
|
4437
|
-
|
|
4438
|
-
|
|
4439
|
-
|
|
4440
|
-
"
|
|
4441
|
-
"minimum": -80,
|
|
4442
|
-
"maximum": 0,
|
|
4443
|
-
"x-effetune-unit": "dB",
|
|
4444
|
-
"default": -24
|
|
4905
|
+
"speed": {
|
|
4906
|
+
"type": "string",
|
|
4907
|
+
"enum": [
|
|
4908
|
+
"7.5",
|
|
4909
|
+
"15",
|
|
4910
|
+
"30"
|
|
4911
|
+
],
|
|
4912
|
+
"default": "15"
|
|
4445
4913
|
},
|
|
4446
|
-
"
|
|
4447
|
-
"type": "
|
|
4448
|
-
"
|
|
4449
|
-
|
|
4450
|
-
|
|
4914
|
+
"tape": {
|
|
4915
|
+
"type": "string",
|
|
4916
|
+
"enum": [
|
|
4917
|
+
"Standard",
|
|
4918
|
+
"Master"
|
|
4919
|
+
],
|
|
4920
|
+
"default": "Standard"
|
|
4451
4921
|
},
|
|
4452
|
-
"
|
|
4922
|
+
"bias": {
|
|
4453
4923
|
"type": "number",
|
|
4454
|
-
"minimum": -
|
|
4455
|
-
"maximum":
|
|
4924
|
+
"minimum": -6,
|
|
4925
|
+
"maximum": 6,
|
|
4456
4926
|
"x-effetune-unit": "dB",
|
|
4457
|
-
"default":
|
|
4927
|
+
"default": 0
|
|
4458
4928
|
},
|
|
4459
|
-
"
|
|
4929
|
+
"recordLevel": {
|
|
4460
4930
|
"type": "number",
|
|
4461
|
-
"minimum": -
|
|
4462
|
-
"maximum":
|
|
4931
|
+
"minimum": -12,
|
|
4932
|
+
"maximum": 18,
|
|
4463
4933
|
"x-effetune-unit": "dB",
|
|
4464
|
-
"default":
|
|
4934
|
+
"default": 6
|
|
4465
4935
|
},
|
|
4466
|
-
"
|
|
4936
|
+
"wowFlutter": {
|
|
4467
4937
|
"type": "number",
|
|
4468
|
-
"minimum":
|
|
4469
|
-
"maximum":
|
|
4938
|
+
"minimum": 0,
|
|
4939
|
+
"maximum": 1,
|
|
4940
|
+
"x-effetune-unit": "%",
|
|
4941
|
+
"default": 0.16
|
|
4942
|
+
},
|
|
4943
|
+
"hiss": {
|
|
4944
|
+
"type": "number",
|
|
4945
|
+
"minimum": -89,
|
|
4946
|
+
"maximum": -39,
|
|
4947
|
+
"x-effetune-unit": "dB re 320 nWb/m",
|
|
4948
|
+
"default": -62.5
|
|
4949
|
+
},
|
|
4950
|
+
"output": {
|
|
4951
|
+
"type": "number",
|
|
4952
|
+
"minimum": -24,
|
|
4953
|
+
"maximum": 24,
|
|
4954
|
+
"x-effetune-unit": "dB",
|
|
4955
|
+
"default": 0
|
|
4956
|
+
},
|
|
4957
|
+
"mix": {
|
|
4958
|
+
"type": "number",
|
|
4959
|
+
"minimum": 0,
|
|
4960
|
+
"maximum": 100,
|
|
4961
|
+
"x-effetune-unit": "%",
|
|
4962
|
+
"default": 100
|
|
4963
|
+
}
|
|
4964
|
+
}
|
|
4965
|
+
}
|
|
4966
|
+
}
|
|
4967
|
+
},
|
|
4968
|
+
"VinylArtifacts": {
|
|
4969
|
+
"type": "object",
|
|
4970
|
+
"additionalProperties": false,
|
|
4971
|
+
"required": [
|
|
4972
|
+
"type",
|
|
4973
|
+
"parameters"
|
|
4974
|
+
],
|
|
4975
|
+
"properties": {
|
|
4976
|
+
"id": {
|
|
4977
|
+
"type": "string",
|
|
4978
|
+
"minLength": 1,
|
|
4979
|
+
"maxLength": 128
|
|
4980
|
+
},
|
|
4981
|
+
"type": {
|
|
4982
|
+
"const": "VinylArtifacts"
|
|
4983
|
+
},
|
|
4984
|
+
"enabled": {
|
|
4985
|
+
"type": "boolean",
|
|
4986
|
+
"default": true
|
|
4987
|
+
},
|
|
4988
|
+
"channel": {
|
|
4989
|
+
"$ref": "#/$defs/channel"
|
|
4990
|
+
},
|
|
4991
|
+
"parameters": {
|
|
4992
|
+
"type": "object",
|
|
4993
|
+
"additionalProperties": false,
|
|
4994
|
+
"properties": {
|
|
4995
|
+
"popsPerMinute": {
|
|
4996
|
+
"type": "integer",
|
|
4997
|
+
"minimum": 0,
|
|
4998
|
+
"maximum": 120,
|
|
4999
|
+
"default": 20
|
|
5000
|
+
},
|
|
5001
|
+
"popLevel": {
|
|
5002
|
+
"type": "number",
|
|
5003
|
+
"minimum": -80,
|
|
5004
|
+
"maximum": 0,
|
|
5005
|
+
"x-effetune-unit": "dB",
|
|
5006
|
+
"default": -24
|
|
5007
|
+
},
|
|
5008
|
+
"cracklesPerMinute": {
|
|
5009
|
+
"type": "integer",
|
|
5010
|
+
"minimum": 0,
|
|
5011
|
+
"maximum": 2000,
|
|
5012
|
+
"default": 500
|
|
5013
|
+
},
|
|
5014
|
+
"crackleLevel": {
|
|
5015
|
+
"type": "number",
|
|
5016
|
+
"minimum": -80,
|
|
5017
|
+
"maximum": 0,
|
|
5018
|
+
"x-effetune-unit": "dB",
|
|
5019
|
+
"default": -33
|
|
5020
|
+
},
|
|
5021
|
+
"hissLevel": {
|
|
5022
|
+
"type": "number",
|
|
5023
|
+
"minimum": -80,
|
|
5024
|
+
"maximum": 0,
|
|
5025
|
+
"x-effetune-unit": "dB",
|
|
5026
|
+
"default": -42
|
|
5027
|
+
},
|
|
5028
|
+
"rumbleLevel": {
|
|
5029
|
+
"type": "number",
|
|
5030
|
+
"minimum": -80,
|
|
5031
|
+
"maximum": 0,
|
|
4470
5032
|
"x-effetune-unit": "dB",
|
|
4471
5033
|
"default": -50
|
|
4472
5034
|
},
|
|
@@ -4693,7 +5255,7 @@
|
|
|
4693
5255
|
}
|
|
4694
5256
|
}
|
|
4695
5257
|
},
|
|
4696
|
-
"
|
|
5258
|
+
"AutoFilter": {
|
|
4697
5259
|
"type": "object",
|
|
4698
5260
|
"additionalProperties": false,
|
|
4699
5261
|
"required": [
|
|
@@ -4707,7 +5269,7 @@
|
|
|
4707
5269
|
"maxLength": 128
|
|
4708
5270
|
},
|
|
4709
5271
|
"type": {
|
|
4710
|
-
"const": "
|
|
5272
|
+
"const": "AutoFilter"
|
|
4711
5273
|
},
|
|
4712
5274
|
"enabled": {
|
|
4713
5275
|
"type": "boolean",
|
|
@@ -4720,39 +5282,107 @@
|
|
|
4720
5282
|
"type": "object",
|
|
4721
5283
|
"additionalProperties": false,
|
|
4722
5284
|
"properties": {
|
|
4723
|
-
"
|
|
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": {
|
|
4724
5324
|
"type": "number",
|
|
4725
5325
|
"minimum": 0,
|
|
4726
5326
|
"maximum": 100,
|
|
4727
|
-
"x-effetune-unit": "
|
|
4728
|
-
"default":
|
|
5327
|
+
"x-effetune-unit": "%",
|
|
5328
|
+
"default": 80
|
|
4729
5329
|
},
|
|
4730
|
-
"
|
|
5330
|
+
"rate": {
|
|
4731
5331
|
"type": "number",
|
|
4732
|
-
"minimum": 0.
|
|
4733
|
-
"maximum":
|
|
4734
|
-
"x-effetune-unit": "
|
|
4735
|
-
"default": 0.
|
|
5332
|
+
"minimum": 0.05,
|
|
5333
|
+
"maximum": 20,
|
|
5334
|
+
"x-effetune-unit": "Hz",
|
|
5335
|
+
"default": 0.5
|
|
4736
5336
|
},
|
|
4737
|
-
"
|
|
5337
|
+
"waveform": {
|
|
5338
|
+
"type": "string",
|
|
5339
|
+
"enum": [
|
|
5340
|
+
"Sine",
|
|
5341
|
+
"Triangle"
|
|
5342
|
+
],
|
|
5343
|
+
"default": "Sine"
|
|
5344
|
+
},
|
|
5345
|
+
"stereoPhase": {
|
|
4738
5346
|
"type": "number",
|
|
4739
|
-
"minimum":
|
|
4740
|
-
"maximum":
|
|
4741
|
-
"x-effetune-unit": "
|
|
4742
|
-
"default":
|
|
5347
|
+
"minimum": 0,
|
|
5348
|
+
"maximum": 180,
|
|
5349
|
+
"x-effetune-unit": "deg",
|
|
5350
|
+
"default": 0
|
|
4743
5351
|
},
|
|
4744
|
-
"
|
|
5352
|
+
"sensitivity": {
|
|
4745
5353
|
"type": "number",
|
|
4746
5354
|
"minimum": 0,
|
|
4747
|
-
"maximum":
|
|
4748
|
-
"x-effetune-unit": "
|
|
4749
|
-
"default":
|
|
5355
|
+
"maximum": 60,
|
|
5356
|
+
"x-effetune-unit": "dB",
|
|
5357
|
+
"default": 24
|
|
5358
|
+
},
|
|
5359
|
+
"attack": {
|
|
5360
|
+
"type": "number",
|
|
5361
|
+
"minimum": 1,
|
|
5362
|
+
"maximum": 500,
|
|
5363
|
+
"x-effetune-unit": "ms",
|
|
5364
|
+
"default": 20
|
|
5365
|
+
},
|
|
5366
|
+
"release": {
|
|
5367
|
+
"type": "number",
|
|
5368
|
+
"minimum": 10,
|
|
5369
|
+
"maximum": 2000,
|
|
5370
|
+
"x-effetune-unit": "ms",
|
|
5371
|
+
"default": 250
|
|
5372
|
+
},
|
|
5373
|
+
"direction": {
|
|
5374
|
+
"type": "string",
|
|
5375
|
+
"enum": [
|
|
5376
|
+
"Up",
|
|
5377
|
+
"Down"
|
|
5378
|
+
],
|
|
5379
|
+
"default": "Up"
|
|
4750
5380
|
}
|
|
4751
5381
|
}
|
|
4752
5382
|
}
|
|
4753
5383
|
}
|
|
4754
5384
|
},
|
|
4755
|
-
"
|
|
5385
|
+
"AutoPan": {
|
|
4756
5386
|
"type": "object",
|
|
4757
5387
|
"additionalProperties": false,
|
|
4758
5388
|
"required": [
|
|
@@ -4766,7 +5396,7 @@
|
|
|
4766
5396
|
"maxLength": 128
|
|
4767
5397
|
},
|
|
4768
5398
|
"type": {
|
|
4769
|
-
"const": "
|
|
5399
|
+
"const": "AutoPan"
|
|
4770
5400
|
},
|
|
4771
5401
|
"enabled": {
|
|
4772
5402
|
"type": "boolean",
|
|
@@ -4779,39 +5409,54 @@
|
|
|
4779
5409
|
"type": "object",
|
|
4780
5410
|
"additionalProperties": false,
|
|
4781
5411
|
"properties": {
|
|
4782
|
-
"
|
|
4783
|
-
"type": "
|
|
4784
|
-
"minimum":
|
|
4785
|
-
"maximum":
|
|
4786
|
-
"x-effetune-unit": "
|
|
4787
|
-
"default": 0
|
|
5412
|
+
"rate": {
|
|
5413
|
+
"type": "number",
|
|
5414
|
+
"minimum": 0.05,
|
|
5415
|
+
"maximum": 20,
|
|
5416
|
+
"x-effetune-unit": "Hz",
|
|
5417
|
+
"default": 0.35
|
|
4788
5418
|
},
|
|
4789
|
-
"
|
|
4790
|
-
"type": "
|
|
4791
|
-
"minimum":
|
|
4792
|
-
"maximum":
|
|
4793
|
-
"x-effetune-unit": "
|
|
5419
|
+
"depth": {
|
|
5420
|
+
"type": "number",
|
|
5421
|
+
"minimum": 0,
|
|
5422
|
+
"maximum": 100,
|
|
5423
|
+
"x-effetune-unit": "%",
|
|
5424
|
+
"default": 45
|
|
5425
|
+
},
|
|
5426
|
+
"center": {
|
|
5427
|
+
"type": "number",
|
|
5428
|
+
"minimum": -100,
|
|
5429
|
+
"maximum": 100,
|
|
5430
|
+
"x-effetune-unit": "%",
|
|
4794
5431
|
"default": 0
|
|
4795
5432
|
},
|
|
4796
|
-
"
|
|
4797
|
-
"type": "
|
|
4798
|
-
"minimum":
|
|
4799
|
-
"maximum":
|
|
4800
|
-
"x-effetune-unit": "
|
|
4801
|
-
"default":
|
|
5433
|
+
"width": {
|
|
5434
|
+
"type": "number",
|
|
5435
|
+
"minimum": 0,
|
|
5436
|
+
"maximum": 100,
|
|
5437
|
+
"x-effetune-unit": "%",
|
|
5438
|
+
"default": 70
|
|
4802
5439
|
},
|
|
4803
|
-
"
|
|
5440
|
+
"waveform": {
|
|
5441
|
+
"type": "string",
|
|
5442
|
+
"enum": [
|
|
5443
|
+
"Sine",
|
|
5444
|
+
"Triangle"
|
|
5445
|
+
],
|
|
5446
|
+
"default": "Sine"
|
|
5447
|
+
},
|
|
5448
|
+
"phase": {
|
|
4804
5449
|
"type": "number",
|
|
4805
|
-
"minimum":
|
|
4806
|
-
"maximum":
|
|
4807
|
-
"x-effetune-unit": "
|
|
4808
|
-
"default":
|
|
5450
|
+
"minimum": 0,
|
|
5451
|
+
"maximum": 360,
|
|
5452
|
+
"x-effetune-unit": "deg",
|
|
5453
|
+
"default": 0
|
|
4809
5454
|
}
|
|
4810
5455
|
}
|
|
4811
5456
|
}
|
|
4812
5457
|
}
|
|
4813
5458
|
},
|
|
4814
|
-
"
|
|
5459
|
+
"Chorus": {
|
|
4815
5460
|
"type": "object",
|
|
4816
5461
|
"additionalProperties": false,
|
|
4817
5462
|
"required": [
|
|
@@ -4825,7 +5470,7 @@
|
|
|
4825
5470
|
"maxLength": 128
|
|
4826
5471
|
},
|
|
4827
5472
|
"type": {
|
|
4828
|
-
"const": "
|
|
5473
|
+
"const": "Chorus"
|
|
4829
5474
|
},
|
|
4830
5475
|
"enabled": {
|
|
4831
5476
|
"type": "boolean",
|
|
@@ -4838,21 +5483,523 @@
|
|
|
4838
5483
|
"type": "object",
|
|
4839
5484
|
"additionalProperties": false,
|
|
4840
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
|
+
},
|
|
4841
5497
|
"rate": {
|
|
4842
5498
|
"type": "number",
|
|
4843
|
-
"minimum": 0.
|
|
4844
|
-
"maximum":
|
|
5499
|
+
"minimum": 0.05,
|
|
5500
|
+
"maximum": 10,
|
|
4845
5501
|
"x-effetune-unit": "Hz",
|
|
4846
|
-
"default":
|
|
5502
|
+
"default": 0.8
|
|
5503
|
+
},
|
|
5504
|
+
"delay": {
|
|
5505
|
+
"type": "number",
|
|
5506
|
+
"minimum": 0.5,
|
|
5507
|
+
"maximum": 30,
|
|
5508
|
+
"x-effetune-unit": "ms",
|
|
5509
|
+
"default": 12
|
|
4847
5510
|
},
|
|
4848
5511
|
"depth": {
|
|
4849
5512
|
"type": "number",
|
|
4850
5513
|
"minimum": 0,
|
|
4851
|
-
"maximum":
|
|
4852
|
-
"x-effetune-unit": "
|
|
4853
|
-
"default":
|
|
5514
|
+
"maximum": 20,
|
|
5515
|
+
"x-effetune-unit": "ms",
|
|
5516
|
+
"default": 3
|
|
4854
5517
|
},
|
|
4855
|
-
"
|
|
5518
|
+
"voices": {
|
|
5519
|
+
"type": "integer",
|
|
5520
|
+
"minimum": 1,
|
|
5521
|
+
"maximum": 6,
|
|
5522
|
+
"default": 3
|
|
5523
|
+
},
|
|
5524
|
+
"stereoSpread": {
|
|
5525
|
+
"type": "number",
|
|
5526
|
+
"minimum": 0,
|
|
5527
|
+
"maximum": 100,
|
|
5528
|
+
"x-effetune-unit": "%",
|
|
5529
|
+
"default": 60
|
|
5530
|
+
},
|
|
5531
|
+
"feedback": {
|
|
5532
|
+
"type": "number",
|
|
5533
|
+
"minimum": -75,
|
|
5534
|
+
"maximum": 75,
|
|
5535
|
+
"x-effetune-unit": "%",
|
|
5536
|
+
"default": 0
|
|
5537
|
+
},
|
|
5538
|
+
"mix": {
|
|
5539
|
+
"type": "number",
|
|
5540
|
+
"minimum": 0,
|
|
5541
|
+
"maximum": 100,
|
|
5542
|
+
"x-effetune-unit": "%",
|
|
5543
|
+
"default": 45
|
|
5544
|
+
}
|
|
5545
|
+
}
|
|
5546
|
+
}
|
|
5547
|
+
}
|
|
5548
|
+
},
|
|
5549
|
+
"DopplerDistortion": {
|
|
5550
|
+
"type": "object",
|
|
5551
|
+
"additionalProperties": false,
|
|
5552
|
+
"required": [
|
|
5553
|
+
"type",
|
|
5554
|
+
"parameters"
|
|
5555
|
+
],
|
|
5556
|
+
"properties": {
|
|
5557
|
+
"id": {
|
|
5558
|
+
"type": "string",
|
|
5559
|
+
"minLength": 1,
|
|
5560
|
+
"maxLength": 128
|
|
5561
|
+
},
|
|
5562
|
+
"type": {
|
|
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": {
|
|
4856
6003
|
"type": "number",
|
|
4857
6004
|
"minimum": 0,
|
|
4858
6005
|
"maximum": 96,
|
|
@@ -5660,6 +6807,10 @@
|
|
|
5660
6807
|
"x-effetune-unit": "dB",
|
|
5661
6808
|
"default": -15
|
|
5662
6809
|
},
|
|
6810
|
+
"dryEnabled": {
|
|
6811
|
+
"type": "boolean",
|
|
6812
|
+
"default": true
|
|
6813
|
+
},
|
|
5663
6814
|
"dryLevel": {
|
|
5664
6815
|
"type": "number",
|
|
5665
6816
|
"minimum": -96,
|
|
@@ -6249,54 +7400,268 @@
|
|
|
6249
7400
|
"x-effetune-unit": "%",
|
|
6250
7401
|
"default": 100
|
|
6251
7402
|
},
|
|
6252
|
-
"dryLevel": {
|
|
7403
|
+
"dryLevel": {
|
|
7404
|
+
"type": "number",
|
|
7405
|
+
"minimum": 0,
|
|
7406
|
+
"maximum": 200,
|
|
7407
|
+
"x-effetune-unit": "%",
|
|
7408
|
+
"default": 100
|
|
7409
|
+
},
|
|
7410
|
+
"subLowPassFrequency": {
|
|
7411
|
+
"type": "number",
|
|
7412
|
+
"minimum": 5,
|
|
7413
|
+
"maximum": 400,
|
|
7414
|
+
"x-effetune-unit": "Hz",
|
|
7415
|
+
"default": 160
|
|
7416
|
+
},
|
|
7417
|
+
"subLowPassSlope": {
|
|
7418
|
+
"type": "integer",
|
|
7419
|
+
"minimum": -24,
|
|
7420
|
+
"maximum": 0,
|
|
7421
|
+
"x-effetune-unit": "dB/oct",
|
|
7422
|
+
"default": -12
|
|
7423
|
+
},
|
|
7424
|
+
"subHighPassFrequency": {
|
|
7425
|
+
"type": "number",
|
|
7426
|
+
"minimum": 5,
|
|
7427
|
+
"maximum": 400,
|
|
7428
|
+
"x-effetune-unit": "Hz",
|
|
7429
|
+
"default": 5
|
|
7430
|
+
},
|
|
7431
|
+
"subHighPassSlope": {
|
|
7432
|
+
"type": "integer",
|
|
7433
|
+
"minimum": -24,
|
|
7434
|
+
"maximum": 0,
|
|
7435
|
+
"x-effetune-unit": "dB/oct",
|
|
7436
|
+
"default": -6
|
|
7437
|
+
},
|
|
7438
|
+
"dryHighPassFrequency": {
|
|
7439
|
+
"type": "number",
|
|
7440
|
+
"minimum": 5,
|
|
7441
|
+
"maximum": 400,
|
|
7442
|
+
"x-effetune-unit": "Hz",
|
|
7443
|
+
"default": 40
|
|
7444
|
+
},
|
|
7445
|
+
"dryHighPassSlope": {
|
|
7446
|
+
"type": "integer",
|
|
7447
|
+
"minimum": -24,
|
|
7448
|
+
"maximum": 0,
|
|
7449
|
+
"x-effetune-unit": "dB/oct",
|
|
7450
|
+
"default": 0
|
|
7451
|
+
}
|
|
7452
|
+
}
|
|
7453
|
+
}
|
|
7454
|
+
}
|
|
7455
|
+
},
|
|
7456
|
+
"TubeSimulator": {
|
|
7457
|
+
"type": "object",
|
|
7458
|
+
"additionalProperties": false,
|
|
7459
|
+
"required": [
|
|
7460
|
+
"type",
|
|
7461
|
+
"parameters"
|
|
7462
|
+
],
|
|
7463
|
+
"properties": {
|
|
7464
|
+
"id": {
|
|
7465
|
+
"type": "string",
|
|
7466
|
+
"minLength": 1,
|
|
7467
|
+
"maxLength": 128
|
|
7468
|
+
},
|
|
7469
|
+
"type": {
|
|
7470
|
+
"const": "TubeSimulator"
|
|
7471
|
+
},
|
|
7472
|
+
"enabled": {
|
|
7473
|
+
"type": "boolean",
|
|
7474
|
+
"default": true
|
|
7475
|
+
},
|
|
7476
|
+
"channel": {
|
|
7477
|
+
"$ref": "#/$defs/channel"
|
|
7478
|
+
},
|
|
7479
|
+
"parameters": {
|
|
7480
|
+
"type": "object",
|
|
7481
|
+
"additionalProperties": false,
|
|
7482
|
+
"properties": {
|
|
7483
|
+
"inputVolume": {
|
|
7484
|
+
"type": "number",
|
|
7485
|
+
"minimum": -96,
|
|
7486
|
+
"maximum": 0,
|
|
7487
|
+
"x-effetune-unit": "dB",
|
|
7488
|
+
"default": -44.0059
|
|
7489
|
+
},
|
|
7490
|
+
"tube": {
|
|
7491
|
+
"type": "string",
|
|
7492
|
+
"enum": [
|
|
7493
|
+
"12AX7",
|
|
7494
|
+
"12AT7",
|
|
7495
|
+
"12AU7",
|
|
7496
|
+
"Bypass"
|
|
7497
|
+
],
|
|
7498
|
+
"default": "12AX7"
|
|
7499
|
+
},
|
|
7500
|
+
"bias": {
|
|
7501
|
+
"type": "number",
|
|
7502
|
+
"minimum": -50,
|
|
7503
|
+
"maximum": 50,
|
|
7504
|
+
"x-effetune-unit": "%",
|
|
7505
|
+
"default": 0
|
|
7506
|
+
},
|
|
7507
|
+
"plateVoltage": {
|
|
7508
|
+
"type": "number",
|
|
7509
|
+
"minimum": 150,
|
|
7510
|
+
"maximum": 300,
|
|
7511
|
+
"x-effetune-unit": "V",
|
|
7512
|
+
"default": 250
|
|
7513
|
+
},
|
|
7514
|
+
"sourceImpedance": {
|
|
7515
|
+
"type": "number",
|
|
7516
|
+
"minimum": 0.6,
|
|
7517
|
+
"maximum": 100,
|
|
7518
|
+
"x-effetune-unit": "kOhm",
|
|
7519
|
+
"default": 10
|
|
7520
|
+
},
|
|
7521
|
+
"supplyImpedance": {
|
|
7522
|
+
"type": "number",
|
|
7523
|
+
"minimum": 0.1,
|
|
7524
|
+
"maximum": 47,
|
|
7525
|
+
"x-effetune-unit": "kOhm",
|
|
7526
|
+
"default": 10
|
|
7527
|
+
},
|
|
7528
|
+
"outputTrim": {
|
|
7529
|
+
"type": "number",
|
|
7530
|
+
"minimum": -48,
|
|
7531
|
+
"maximum": 48,
|
|
7532
|
+
"x-effetune-unit": "dB",
|
|
7533
|
+
"default": -7.372
|
|
7534
|
+
},
|
|
7535
|
+
"mix": {
|
|
7536
|
+
"type": "number",
|
|
7537
|
+
"minimum": 0,
|
|
7538
|
+
"maximum": 100,
|
|
7539
|
+
"x-effetune-unit": "%",
|
|
7540
|
+
"default": 100
|
|
7541
|
+
},
|
|
7542
|
+
"inputReference": {
|
|
7543
|
+
"type": "number",
|
|
7544
|
+
"minimum": 0.1,
|
|
7545
|
+
"maximum": 300,
|
|
7546
|
+
"x-effetune-unit": "Vpk",
|
|
7547
|
+
"default": 2.828
|
|
7548
|
+
},
|
|
7549
|
+
"negativeFeedback": {
|
|
6253
7550
|
"type": "number",
|
|
6254
7551
|
"minimum": 0,
|
|
6255
|
-
"maximum":
|
|
6256
|
-
"x-effetune-unit": "
|
|
6257
|
-
"default":
|
|
7552
|
+
"maximum": 30,
|
|
7553
|
+
"x-effetune-unit": "dB",
|
|
7554
|
+
"default": 3
|
|
6258
7555
|
},
|
|
6259
|
-
"
|
|
6260
|
-
"type": "
|
|
6261
|
-
"
|
|
6262
|
-
|
|
6263
|
-
|
|
6264
|
-
|
|
7556
|
+
"outputStage": {
|
|
7557
|
+
"type": "string",
|
|
7558
|
+
"enum": [
|
|
7559
|
+
"Line",
|
|
7560
|
+
"Power",
|
|
7561
|
+
"SingleEnded"
|
|
7562
|
+
],
|
|
7563
|
+
"default": "Power"
|
|
6265
7564
|
},
|
|
6266
|
-
"
|
|
6267
|
-
"type": "
|
|
6268
|
-
"
|
|
6269
|
-
|
|
6270
|
-
|
|
6271
|
-
|
|
7565
|
+
"powerTube": {
|
|
7566
|
+
"type": "string",
|
|
7567
|
+
"enum": [
|
|
7568
|
+
"EL84",
|
|
7569
|
+
"EL34",
|
|
7570
|
+
"6L6GC",
|
|
7571
|
+
"KT88"
|
|
7572
|
+
],
|
|
7573
|
+
"default": "EL84"
|
|
6272
7574
|
},
|
|
6273
|
-
"
|
|
7575
|
+
"powerBPlus": {
|
|
6274
7576
|
"type": "number",
|
|
6275
|
-
"minimum":
|
|
6276
|
-
"maximum":
|
|
6277
|
-
"x-effetune-unit": "
|
|
6278
|
-
"default":
|
|
7577
|
+
"minimum": 300,
|
|
7578
|
+
"maximum": 470,
|
|
7579
|
+
"x-effetune-unit": "V",
|
|
7580
|
+
"default": 329.696
|
|
6279
7581
|
},
|
|
6280
|
-
"
|
|
6281
|
-
"type": "
|
|
6282
|
-
"minimum":
|
|
6283
|
-
"maximum":
|
|
6284
|
-
"x-effetune-unit": "
|
|
6285
|
-
"default":
|
|
7582
|
+
"cathodeResistor": {
|
|
7583
|
+
"type": "number",
|
|
7584
|
+
"minimum": 270,
|
|
7585
|
+
"maximum": 500,
|
|
7586
|
+
"x-effetune-unit": "Ohm",
|
|
7587
|
+
"default": 270
|
|
6286
7588
|
},
|
|
6287
|
-
"
|
|
7589
|
+
"screenTap": {
|
|
7590
|
+
"type": "string",
|
|
7591
|
+
"enum": [
|
|
7592
|
+
"0",
|
|
7593
|
+
"20",
|
|
7594
|
+
"43"
|
|
7595
|
+
],
|
|
7596
|
+
"default": "0"
|
|
7597
|
+
},
|
|
7598
|
+
"primaryImpedance": {
|
|
7599
|
+
"type": "string",
|
|
7600
|
+
"enum": [
|
|
7601
|
+
"6.0",
|
|
7602
|
+
"6.6",
|
|
7603
|
+
"8.0"
|
|
7604
|
+
],
|
|
7605
|
+
"default": "8.0"
|
|
7606
|
+
},
|
|
7607
|
+
"speakerLoad": {
|
|
7608
|
+
"type": "string",
|
|
7609
|
+
"enum": [
|
|
7610
|
+
"4",
|
|
7611
|
+
"8",
|
|
7612
|
+
"15",
|
|
7613
|
+
"16"
|
|
7614
|
+
],
|
|
7615
|
+
"default": "15"
|
|
7616
|
+
},
|
|
7617
|
+
"actualSpeakerLoad": {
|
|
6288
7618
|
"type": "number",
|
|
6289
|
-
"minimum":
|
|
6290
|
-
"maximum":
|
|
6291
|
-
"x-effetune-unit": "
|
|
6292
|
-
"default":
|
|
7619
|
+
"minimum": 2,
|
|
7620
|
+
"maximum": 32,
|
|
7621
|
+
"x-effetune-unit": "Ohm",
|
|
7622
|
+
"default": 15
|
|
6293
7623
|
},
|
|
6294
|
-
"
|
|
6295
|
-
"type": "
|
|
6296
|
-
"minimum": -
|
|
7624
|
+
"safetyTrim": {
|
|
7625
|
+
"type": "number",
|
|
7626
|
+
"minimum": -96,
|
|
6297
7627
|
"maximum": 0,
|
|
6298
|
-
"x-effetune-unit": "dB
|
|
7628
|
+
"x-effetune-unit": "dB",
|
|
6299
7629
|
"default": 0
|
|
7630
|
+
},
|
|
7631
|
+
"autoGainReduction": {
|
|
7632
|
+
"type": "boolean",
|
|
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"
|
|
6300
7665
|
}
|
|
6301
7666
|
}
|
|
6302
7667
|
}
|
|
@@ -6488,6 +7853,214 @@
|
|
|
6488
7853
|
}
|
|
6489
7854
|
}
|
|
6490
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
|
+
},
|
|
6491
8064
|
"StereoBlend": {
|
|
6492
8065
|
"type": "object",
|
|
6493
8066
|
"additionalProperties": false,
|