@effetune/dsp 0.1.0 → 0.4.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 +3 -3
- package/dist/assets/effetune-dsp.meta.json +436 -6
- package/dist/assets/effetune-dsp.simd.wasm +0 -0
- package/dist/assets/effetune-dsp.wasm +0 -0
- package/dist/catalog/effects-v1.json +753 -3
- package/dist/generated-effects.d.ts +157 -1
- package/dist/generated-effects.js +94 -3
- package/dist/index.d.ts +21 -0
- package/dist/index.js +14 -0
- package/dist/internal/dsp-engine-binding.js +20 -0
- package/dist/internal/dsp-params.generated.js +185 -64
- package/dist/internal/dsp-wasm-loader.js +2 -0
- package/dist/schemas/chain-v1.schema.json +782 -62
- package/package.json +1 -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,6 +221,9 @@
|
|
|
206
221
|
{
|
|
207
222
|
"$ref": "#/$defs/SWRadioSimulator"
|
|
208
223
|
},
|
|
224
|
+
{
|
|
225
|
+
"$ref": "#/$defs/TapeArtifacts"
|
|
226
|
+
},
|
|
209
227
|
{
|
|
210
228
|
"$ref": "#/$defs/VinylArtifacts"
|
|
211
229
|
},
|
|
@@ -269,6 +287,9 @@
|
|
|
269
287
|
{
|
|
270
288
|
"$ref": "#/$defs/SubSynth"
|
|
271
289
|
},
|
|
290
|
+
{
|
|
291
|
+
"$ref": "#/$defs/TubeSimulator"
|
|
292
|
+
},
|
|
272
293
|
{
|
|
273
294
|
"$ref": "#/$defs/CrossfeedFilter"
|
|
274
295
|
},
|
|
@@ -3546,6 +3567,10 @@
|
|
|
3546
3567
|
"type": "object",
|
|
3547
3568
|
"additionalProperties": false,
|
|
3548
3569
|
"properties": {
|
|
3570
|
+
"radio": {
|
|
3571
|
+
"type": "boolean",
|
|
3572
|
+
"default": true
|
|
3573
|
+
},
|
|
3549
3574
|
"txBandwidth": {
|
|
3550
3575
|
"type": "number",
|
|
3551
3576
|
"minimum": 2,
|
|
@@ -3757,6 +3782,205 @@
|
|
|
3757
3782
|
}
|
|
3758
3783
|
}
|
|
3759
3784
|
},
|
|
3785
|
+
"BluetoothSBCSimulator": {
|
|
3786
|
+
"type": "object",
|
|
3787
|
+
"additionalProperties": false,
|
|
3788
|
+
"required": [
|
|
3789
|
+
"type",
|
|
3790
|
+
"parameters"
|
|
3791
|
+
],
|
|
3792
|
+
"properties": {
|
|
3793
|
+
"id": {
|
|
3794
|
+
"type": "string",
|
|
3795
|
+
"minLength": 1,
|
|
3796
|
+
"maxLength": 128
|
|
3797
|
+
},
|
|
3798
|
+
"type": {
|
|
3799
|
+
"const": "BluetoothSBCSimulator"
|
|
3800
|
+
},
|
|
3801
|
+
"enabled": {
|
|
3802
|
+
"type": "boolean",
|
|
3803
|
+
"default": true
|
|
3804
|
+
},
|
|
3805
|
+
"channel": {
|
|
3806
|
+
"$ref": "#/$defs/channel"
|
|
3807
|
+
},
|
|
3808
|
+
"parameters": {
|
|
3809
|
+
"type": "object",
|
|
3810
|
+
"additionalProperties": false,
|
|
3811
|
+
"properties": {
|
|
3812
|
+
"bitpool": {
|
|
3813
|
+
"type": "integer",
|
|
3814
|
+
"minimum": 2,
|
|
3815
|
+
"maximum": 53,
|
|
3816
|
+
"default": 35
|
|
3817
|
+
},
|
|
3818
|
+
"channelMode": {
|
|
3819
|
+
"type": "string",
|
|
3820
|
+
"enum": [
|
|
3821
|
+
"Joint Stereo",
|
|
3822
|
+
"Stereo",
|
|
3823
|
+
"Dual Channel"
|
|
3824
|
+
],
|
|
3825
|
+
"default": "Joint Stereo"
|
|
3826
|
+
},
|
|
3827
|
+
"blocks": {
|
|
3828
|
+
"type": "string",
|
|
3829
|
+
"enum": [
|
|
3830
|
+
"4",
|
|
3831
|
+
"8",
|
|
3832
|
+
"12",
|
|
3833
|
+
"16"
|
|
3834
|
+
],
|
|
3835
|
+
"default": "16"
|
|
3836
|
+
},
|
|
3837
|
+
"outputGain": {
|
|
3838
|
+
"type": "number",
|
|
3839
|
+
"minimum": -24,
|
|
3840
|
+
"maximum": 12,
|
|
3841
|
+
"x-effetune-unit": "dB",
|
|
3842
|
+
"default": 0
|
|
3843
|
+
},
|
|
3844
|
+
"mix": {
|
|
3845
|
+
"type": "number",
|
|
3846
|
+
"minimum": 0,
|
|
3847
|
+
"maximum": 100,
|
|
3848
|
+
"x-effetune-unit": "%",
|
|
3849
|
+
"default": 100
|
|
3850
|
+
},
|
|
3851
|
+
"packetLoss": {
|
|
3852
|
+
"type": "number",
|
|
3853
|
+
"minimum": 0,
|
|
3854
|
+
"maximum": 20,
|
|
3855
|
+
"x-effetune-unit": "%",
|
|
3856
|
+
"default": 0
|
|
3857
|
+
}
|
|
3858
|
+
}
|
|
3859
|
+
}
|
|
3860
|
+
}
|
|
3861
|
+
},
|
|
3862
|
+
"CassetteArtifacts": {
|
|
3863
|
+
"type": "object",
|
|
3864
|
+
"additionalProperties": false,
|
|
3865
|
+
"required": [
|
|
3866
|
+
"type",
|
|
3867
|
+
"parameters"
|
|
3868
|
+
],
|
|
3869
|
+
"properties": {
|
|
3870
|
+
"id": {
|
|
3871
|
+
"type": "string",
|
|
3872
|
+
"minLength": 1,
|
|
3873
|
+
"maxLength": 128
|
|
3874
|
+
},
|
|
3875
|
+
"type": {
|
|
3876
|
+
"const": "CassetteArtifacts"
|
|
3877
|
+
},
|
|
3878
|
+
"enabled": {
|
|
3879
|
+
"type": "boolean",
|
|
3880
|
+
"default": true
|
|
3881
|
+
},
|
|
3882
|
+
"channel": {
|
|
3883
|
+
"$ref": "#/$defs/channel"
|
|
3884
|
+
},
|
|
3885
|
+
"parameters": {
|
|
3886
|
+
"type": "object",
|
|
3887
|
+
"additionalProperties": false,
|
|
3888
|
+
"properties": {
|
|
3889
|
+
"deckGrade": {
|
|
3890
|
+
"type": "string",
|
|
3891
|
+
"enum": [
|
|
3892
|
+
"Reference",
|
|
3893
|
+
"Hi-Fi",
|
|
3894
|
+
"Consumer",
|
|
3895
|
+
"Portable"
|
|
3896
|
+
],
|
|
3897
|
+
"default": "Consumer"
|
|
3898
|
+
},
|
|
3899
|
+
"tapeType": {
|
|
3900
|
+
"type": "string",
|
|
3901
|
+
"enum": [
|
|
3902
|
+
"Type I",
|
|
3903
|
+
"Type II",
|
|
3904
|
+
"Type IV"
|
|
3905
|
+
],
|
|
3906
|
+
"default": "Type I"
|
|
3907
|
+
},
|
|
3908
|
+
"noiseReduction": {
|
|
3909
|
+
"type": "string",
|
|
3910
|
+
"enum": [
|
|
3911
|
+
"Off",
|
|
3912
|
+
"Dolby B",
|
|
3913
|
+
"Dolby C"
|
|
3914
|
+
],
|
|
3915
|
+
"default": "Dolby B"
|
|
3916
|
+
},
|
|
3917
|
+
"bias": {
|
|
3918
|
+
"type": "number",
|
|
3919
|
+
"minimum": -6,
|
|
3920
|
+
"maximum": 6,
|
|
3921
|
+
"x-effetune-unit": "dB",
|
|
3922
|
+
"default": 0
|
|
3923
|
+
},
|
|
3924
|
+
"recordLevel": {
|
|
3925
|
+
"type": "number",
|
|
3926
|
+
"minimum": -12,
|
|
3927
|
+
"maximum": 18,
|
|
3928
|
+
"x-effetune-unit": "dB",
|
|
3929
|
+
"default": 9
|
|
3930
|
+
},
|
|
3931
|
+
"wowFlutter": {
|
|
3932
|
+
"type": "number",
|
|
3933
|
+
"minimum": 0,
|
|
3934
|
+
"maximum": 1,
|
|
3935
|
+
"x-effetune-unit": "%",
|
|
3936
|
+
"default": 0.2
|
|
3937
|
+
},
|
|
3938
|
+
"hiss": {
|
|
3939
|
+
"type": "number",
|
|
3940
|
+
"minimum": -92,
|
|
3941
|
+
"maximum": -42,
|
|
3942
|
+
"x-effetune-unit": "dB re 250 nWb/m",
|
|
3943
|
+
"default": -60.5
|
|
3944
|
+
},
|
|
3945
|
+
"dropouts": {
|
|
3946
|
+
"type": "number",
|
|
3947
|
+
"minimum": 0,
|
|
3948
|
+
"maximum": 20,
|
|
3949
|
+
"x-effetune-unit": "events/min",
|
|
3950
|
+
"default": 2
|
|
3951
|
+
},
|
|
3952
|
+
"azimuth": {
|
|
3953
|
+
"type": "number",
|
|
3954
|
+
"minimum": -6,
|
|
3955
|
+
"maximum": 6,
|
|
3956
|
+
"x-effetune-unit": "arcmin",
|
|
3957
|
+
"default": 2
|
|
3958
|
+
},
|
|
3959
|
+
"dolbyLevelError": {
|
|
3960
|
+
"type": "number",
|
|
3961
|
+
"minimum": -3,
|
|
3962
|
+
"maximum": 3,
|
|
3963
|
+
"x-effetune-unit": "dB",
|
|
3964
|
+
"default": 0
|
|
3965
|
+
},
|
|
3966
|
+
"output": {
|
|
3967
|
+
"type": "number",
|
|
3968
|
+
"minimum": -24,
|
|
3969
|
+
"maximum": 24,
|
|
3970
|
+
"x-effetune-unit": "dB",
|
|
3971
|
+
"default": 0
|
|
3972
|
+
},
|
|
3973
|
+
"mix": {
|
|
3974
|
+
"type": "number",
|
|
3975
|
+
"minimum": 0,
|
|
3976
|
+
"maximum": 100,
|
|
3977
|
+
"x-effetune-unit": "%",
|
|
3978
|
+
"default": 100
|
|
3979
|
+
}
|
|
3980
|
+
}
|
|
3981
|
+
}
|
|
3982
|
+
}
|
|
3983
|
+
},
|
|
3760
3984
|
"DigitalErrorEmulator": {
|
|
3761
3985
|
"type": "object",
|
|
3762
3986
|
"additionalProperties": false,
|
|
@@ -3971,6 +4195,10 @@
|
|
|
3971
4195
|
"type": "object",
|
|
3972
4196
|
"additionalProperties": false,
|
|
3973
4197
|
"properties": {
|
|
4198
|
+
"radio": {
|
|
4199
|
+
"type": "boolean",
|
|
4200
|
+
"default": true
|
|
4201
|
+
},
|
|
3974
4202
|
"emphasis": {
|
|
3975
4203
|
"type": "string",
|
|
3976
4204
|
"enum": [
|
|
@@ -4055,7 +4283,7 @@
|
|
|
4055
4283
|
}
|
|
4056
4284
|
}
|
|
4057
4285
|
},
|
|
4058
|
-
"
|
|
4286
|
+
"G726ADPCMSimulator": {
|
|
4059
4287
|
"type": "object",
|
|
4060
4288
|
"additionalProperties": false,
|
|
4061
4289
|
"required": [
|
|
@@ -4069,7 +4297,7 @@
|
|
|
4069
4297
|
"maxLength": 128
|
|
4070
4298
|
},
|
|
4071
4299
|
"type": {
|
|
4072
|
-
"const": "
|
|
4300
|
+
"const": "G726ADPCMSimulator"
|
|
4073
4301
|
},
|
|
4074
4302
|
"enabled": {
|
|
4075
4303
|
"type": "boolean",
|
|
@@ -4082,55 +4310,42 @@
|
|
|
4082
4310
|
"type": "object",
|
|
4083
4311
|
"additionalProperties": false,
|
|
4084
4312
|
"properties": {
|
|
4085
|
-
"
|
|
4086
|
-
"type": "number",
|
|
4087
|
-
"minimum": 10,
|
|
4088
|
-
"maximum": 120,
|
|
4089
|
-
"x-effetune-unit": "Hz",
|
|
4090
|
-
"default": 50
|
|
4091
|
-
},
|
|
4092
|
-
"humType": {
|
|
4313
|
+
"bitrate": {
|
|
4093
4314
|
"type": "string",
|
|
4094
4315
|
"enum": [
|
|
4095
|
-
"
|
|
4096
|
-
"
|
|
4097
|
-
"
|
|
4316
|
+
"16",
|
|
4317
|
+
"24",
|
|
4318
|
+
"32",
|
|
4319
|
+
"40"
|
|
4098
4320
|
],
|
|
4099
|
-
"
|
|
4100
|
-
|
|
4101
|
-
"harmonics": {
|
|
4102
|
-
"type": "integer",
|
|
4103
|
-
"minimum": 0,
|
|
4104
|
-
"maximum": 100,
|
|
4105
|
-
"x-effetune-unit": "%",
|
|
4106
|
-
"default": 50
|
|
4321
|
+
"x-effetune-unit": "kbit/s",
|
|
4322
|
+
"default": "32"
|
|
4107
4323
|
},
|
|
4108
|
-
"
|
|
4324
|
+
"outputGain": {
|
|
4109
4325
|
"type": "number",
|
|
4110
|
-
"minimum":
|
|
4111
|
-
"maximum":
|
|
4112
|
-
"x-effetune-unit": "
|
|
4113
|
-
"default":
|
|
4326
|
+
"minimum": -24,
|
|
4327
|
+
"maximum": 12,
|
|
4328
|
+
"x-effetune-unit": "dB",
|
|
4329
|
+
"default": 0
|
|
4114
4330
|
},
|
|
4115
|
-
"
|
|
4116
|
-
"type": "
|
|
4331
|
+
"mix": {
|
|
4332
|
+
"type": "integer",
|
|
4117
4333
|
"minimum": 0,
|
|
4118
|
-
"maximum":
|
|
4334
|
+
"maximum": 100,
|
|
4119
4335
|
"x-effetune-unit": "%",
|
|
4120
|
-
"default":
|
|
4336
|
+
"default": 100
|
|
4121
4337
|
},
|
|
4122
|
-
"
|
|
4338
|
+
"radioBitErrorRate": {
|
|
4123
4339
|
"type": "number",
|
|
4124
|
-
"minimum":
|
|
4125
|
-
"maximum": 0,
|
|
4126
|
-
"
|
|
4127
|
-
"default": -40
|
|
4340
|
+
"minimum": 0.000001,
|
|
4341
|
+
"maximum": 0.01,
|
|
4342
|
+
"default": 0.000001
|
|
4128
4343
|
}
|
|
4129
4344
|
}
|
|
4130
4345
|
}
|
|
4131
4346
|
}
|
|
4132
4347
|
},
|
|
4133
|
-
"
|
|
4348
|
+
"GSMFullRateSimulator": {
|
|
4134
4349
|
"type": "object",
|
|
4135
4350
|
"additionalProperties": false,
|
|
4136
4351
|
"required": [
|
|
@@ -4144,7 +4359,7 @@
|
|
|
4144
4359
|
"maxLength": 128
|
|
4145
4360
|
},
|
|
4146
4361
|
"type": {
|
|
4147
|
-
"const": "
|
|
4362
|
+
"const": "GSMFullRateSimulator"
|
|
4148
4363
|
},
|
|
4149
4364
|
"enabled": {
|
|
4150
4365
|
"type": "boolean",
|
|
@@ -4157,35 +4372,251 @@
|
|
|
4157
4372
|
"type": "object",
|
|
4158
4373
|
"additionalProperties": false,
|
|
4159
4374
|
"properties": {
|
|
4160
|
-
"
|
|
4161
|
-
"type": "
|
|
4162
|
-
"
|
|
4163
|
-
|
|
4164
|
-
|
|
4165
|
-
"brown"
|
|
4166
|
-
],
|
|
4167
|
-
"default": "pink"
|
|
4375
|
+
"transcodes": {
|
|
4376
|
+
"type": "integer",
|
|
4377
|
+
"minimum": 1,
|
|
4378
|
+
"maximum": 3,
|
|
4379
|
+
"default": 1
|
|
4168
4380
|
},
|
|
4169
|
-
"
|
|
4381
|
+
"outputGain": {
|
|
4170
4382
|
"type": "number",
|
|
4171
|
-
"minimum": -
|
|
4172
|
-
"maximum":
|
|
4383
|
+
"minimum": -24,
|
|
4384
|
+
"maximum": 12,
|
|
4173
4385
|
"x-effetune-unit": "dB",
|
|
4174
|
-
"default":
|
|
4386
|
+
"default": 0
|
|
4175
4387
|
},
|
|
4176
|
-
"
|
|
4177
|
-
"type": "
|
|
4178
|
-
"
|
|
4179
|
-
|
|
4180
|
-
|
|
4181
|
-
|
|
4182
|
-
|
|
4183
|
-
|
|
4184
|
-
|
|
4185
|
-
|
|
4186
|
-
|
|
4187
|
-
|
|
4188
|
-
|
|
4388
|
+
"mix": {
|
|
4389
|
+
"type": "integer",
|
|
4390
|
+
"minimum": 0,
|
|
4391
|
+
"maximum": 100,
|
|
4392
|
+
"x-effetune-unit": "%",
|
|
4393
|
+
"default": 100
|
|
4394
|
+
},
|
|
4395
|
+
"carrierToInterference": {
|
|
4396
|
+
"type": "number",
|
|
4397
|
+
"minimum": 4,
|
|
4398
|
+
"maximum": 30,
|
|
4399
|
+
"x-effetune-unit": "dB",
|
|
4400
|
+
"default": 30
|
|
4401
|
+
}
|
|
4402
|
+
}
|
|
4403
|
+
}
|
|
4404
|
+
}
|
|
4405
|
+
},
|
|
4406
|
+
"HumGenerator": {
|
|
4407
|
+
"type": "object",
|
|
4408
|
+
"additionalProperties": false,
|
|
4409
|
+
"required": [
|
|
4410
|
+
"type",
|
|
4411
|
+
"parameters"
|
|
4412
|
+
],
|
|
4413
|
+
"properties": {
|
|
4414
|
+
"id": {
|
|
4415
|
+
"type": "string",
|
|
4416
|
+
"minLength": 1,
|
|
4417
|
+
"maxLength": 128
|
|
4418
|
+
},
|
|
4419
|
+
"type": {
|
|
4420
|
+
"const": "HumGenerator"
|
|
4421
|
+
},
|
|
4422
|
+
"enabled": {
|
|
4423
|
+
"type": "boolean",
|
|
4424
|
+
"default": true
|
|
4425
|
+
},
|
|
4426
|
+
"channel": {
|
|
4427
|
+
"$ref": "#/$defs/channel"
|
|
4428
|
+
},
|
|
4429
|
+
"parameters": {
|
|
4430
|
+
"type": "object",
|
|
4431
|
+
"additionalProperties": false,
|
|
4432
|
+
"properties": {
|
|
4433
|
+
"frequency": {
|
|
4434
|
+
"type": "number",
|
|
4435
|
+
"minimum": 10,
|
|
4436
|
+
"maximum": 120,
|
|
4437
|
+
"x-effetune-unit": "Hz",
|
|
4438
|
+
"default": 50
|
|
4439
|
+
},
|
|
4440
|
+
"humType": {
|
|
4441
|
+
"type": "string",
|
|
4442
|
+
"enum": [
|
|
4443
|
+
"Standard",
|
|
4444
|
+
"Rich",
|
|
4445
|
+
"Dirty"
|
|
4446
|
+
],
|
|
4447
|
+
"default": "Standard"
|
|
4448
|
+
},
|
|
4449
|
+
"harmonics": {
|
|
4450
|
+
"type": "integer",
|
|
4451
|
+
"minimum": 0,
|
|
4452
|
+
"maximum": 100,
|
|
4453
|
+
"x-effetune-unit": "%",
|
|
4454
|
+
"default": 50
|
|
4455
|
+
},
|
|
4456
|
+
"tone": {
|
|
4457
|
+
"type": "number",
|
|
4458
|
+
"minimum": 1,
|
|
4459
|
+
"maximum": 20,
|
|
4460
|
+
"x-effetune-unit": "kHz",
|
|
4461
|
+
"default": 10
|
|
4462
|
+
},
|
|
4463
|
+
"instability": {
|
|
4464
|
+
"type": "number",
|
|
4465
|
+
"minimum": 0,
|
|
4466
|
+
"maximum": 10,
|
|
4467
|
+
"x-effetune-unit": "%",
|
|
4468
|
+
"default": 1
|
|
4469
|
+
},
|
|
4470
|
+
"level": {
|
|
4471
|
+
"type": "number",
|
|
4472
|
+
"minimum": -80,
|
|
4473
|
+
"maximum": 0,
|
|
4474
|
+
"x-effetune-unit": "dB",
|
|
4475
|
+
"default": -40
|
|
4476
|
+
}
|
|
4477
|
+
}
|
|
4478
|
+
}
|
|
4479
|
+
}
|
|
4480
|
+
},
|
|
4481
|
+
"MP3CodecSimulator": {
|
|
4482
|
+
"type": "object",
|
|
4483
|
+
"additionalProperties": false,
|
|
4484
|
+
"required": [
|
|
4485
|
+
"type",
|
|
4486
|
+
"parameters"
|
|
4487
|
+
],
|
|
4488
|
+
"properties": {
|
|
4489
|
+
"id": {
|
|
4490
|
+
"type": "string",
|
|
4491
|
+
"minLength": 1,
|
|
4492
|
+
"maxLength": 128
|
|
4493
|
+
},
|
|
4494
|
+
"type": {
|
|
4495
|
+
"const": "MP3CodecSimulator"
|
|
4496
|
+
},
|
|
4497
|
+
"enabled": {
|
|
4498
|
+
"type": "boolean",
|
|
4499
|
+
"default": true
|
|
4500
|
+
},
|
|
4501
|
+
"channel": {
|
|
4502
|
+
"$ref": "#/$defs/channel"
|
|
4503
|
+
},
|
|
4504
|
+
"parameters": {
|
|
4505
|
+
"type": "object",
|
|
4506
|
+
"additionalProperties": false,
|
|
4507
|
+
"properties": {
|
|
4508
|
+
"codecRate": {
|
|
4509
|
+
"type": "string",
|
|
4510
|
+
"enum": [
|
|
4511
|
+
"22.05 kHz (MPEG-2)",
|
|
4512
|
+
"44.1 kHz (MPEG-1)"
|
|
4513
|
+
],
|
|
4514
|
+
"default": "44.1 kHz (MPEG-1)"
|
|
4515
|
+
},
|
|
4516
|
+
"bitrate": {
|
|
4517
|
+
"type": "string",
|
|
4518
|
+
"enum": [
|
|
4519
|
+
"32",
|
|
4520
|
+
"48",
|
|
4521
|
+
"64",
|
|
4522
|
+
"80",
|
|
4523
|
+
"96",
|
|
4524
|
+
"112",
|
|
4525
|
+
"128",
|
|
4526
|
+
"160",
|
|
4527
|
+
"192",
|
|
4528
|
+
"224",
|
|
4529
|
+
"256",
|
|
4530
|
+
"320"
|
|
4531
|
+
],
|
|
4532
|
+
"default": "64"
|
|
4533
|
+
},
|
|
4534
|
+
"stereoMode": {
|
|
4535
|
+
"type": "string",
|
|
4536
|
+
"enum": [
|
|
4537
|
+
"Joint Stereo",
|
|
4538
|
+
"Stereo"
|
|
4539
|
+
],
|
|
4540
|
+
"default": "Joint Stereo"
|
|
4541
|
+
},
|
|
4542
|
+
"bitReservoir": {
|
|
4543
|
+
"type": "boolean",
|
|
4544
|
+
"default": true
|
|
4545
|
+
},
|
|
4546
|
+
"outputGain": {
|
|
4547
|
+
"type": "number",
|
|
4548
|
+
"minimum": -24,
|
|
4549
|
+
"maximum": 12,
|
|
4550
|
+
"x-effetune-unit": "dB",
|
|
4551
|
+
"default": 0
|
|
4552
|
+
},
|
|
4553
|
+
"mix": {
|
|
4554
|
+
"type": "number",
|
|
4555
|
+
"minimum": 0,
|
|
4556
|
+
"maximum": 100,
|
|
4557
|
+
"x-effetune-unit": "%",
|
|
4558
|
+
"default": 100
|
|
4559
|
+
}
|
|
4560
|
+
}
|
|
4561
|
+
}
|
|
4562
|
+
}
|
|
4563
|
+
},
|
|
4564
|
+
"NoiseBlender": {
|
|
4565
|
+
"type": "object",
|
|
4566
|
+
"additionalProperties": false,
|
|
4567
|
+
"required": [
|
|
4568
|
+
"type",
|
|
4569
|
+
"parameters"
|
|
4570
|
+
],
|
|
4571
|
+
"properties": {
|
|
4572
|
+
"id": {
|
|
4573
|
+
"type": "string",
|
|
4574
|
+
"minLength": 1,
|
|
4575
|
+
"maxLength": 128
|
|
4576
|
+
},
|
|
4577
|
+
"type": {
|
|
4578
|
+
"const": "NoiseBlender"
|
|
4579
|
+
},
|
|
4580
|
+
"enabled": {
|
|
4581
|
+
"type": "boolean",
|
|
4582
|
+
"default": true
|
|
4583
|
+
},
|
|
4584
|
+
"channel": {
|
|
4585
|
+
"$ref": "#/$defs/channel"
|
|
4586
|
+
},
|
|
4587
|
+
"parameters": {
|
|
4588
|
+
"type": "object",
|
|
4589
|
+
"additionalProperties": false,
|
|
4590
|
+
"properties": {
|
|
4591
|
+
"noiseType": {
|
|
4592
|
+
"type": "string",
|
|
4593
|
+
"enum": [
|
|
4594
|
+
"white",
|
|
4595
|
+
"pink",
|
|
4596
|
+
"brown"
|
|
4597
|
+
],
|
|
4598
|
+
"default": "pink"
|
|
4599
|
+
},
|
|
4600
|
+
"level": {
|
|
4601
|
+
"type": "number",
|
|
4602
|
+
"minimum": -96,
|
|
4603
|
+
"maximum": 0,
|
|
4604
|
+
"x-effetune-unit": "dB",
|
|
4605
|
+
"default": -36
|
|
4606
|
+
},
|
|
4607
|
+
"perChannel": {
|
|
4608
|
+
"type": "boolean",
|
|
4609
|
+
"default": true
|
|
4610
|
+
}
|
|
4611
|
+
}
|
|
4612
|
+
}
|
|
4613
|
+
}
|
|
4614
|
+
},
|
|
4615
|
+
"SimpleJitter": {
|
|
4616
|
+
"type": "object",
|
|
4617
|
+
"additionalProperties": false,
|
|
4618
|
+
"required": [
|
|
4619
|
+
"type",
|
|
4189
4620
|
"parameters"
|
|
4190
4621
|
],
|
|
4191
4622
|
"properties": {
|
|
@@ -4246,6 +4677,10 @@
|
|
|
4246
4677
|
"type": "object",
|
|
4247
4678
|
"additionalProperties": false,
|
|
4248
4679
|
"properties": {
|
|
4680
|
+
"radio": {
|
|
4681
|
+
"type": "boolean",
|
|
4682
|
+
"default": true
|
|
4683
|
+
},
|
|
4249
4684
|
"txBandwidth": {
|
|
4250
4685
|
"type": "number",
|
|
4251
4686
|
"minimum": 2,
|
|
@@ -4392,6 +4827,112 @@
|
|
|
4392
4827
|
"x-effetune-unit": "dB",
|
|
4393
4828
|
"default": 0
|
|
4394
4829
|
},
|
|
4830
|
+
"mix": {
|
|
4831
|
+
"type": "number",
|
|
4832
|
+
"minimum": 0,
|
|
4833
|
+
"maximum": 100,
|
|
4834
|
+
"x-effetune-unit": "%",
|
|
4835
|
+
"default": 100
|
|
4836
|
+
},
|
|
4837
|
+
"mode": {
|
|
4838
|
+
"type": "string",
|
|
4839
|
+
"enum": [
|
|
4840
|
+
"AM",
|
|
4841
|
+
"USB",
|
|
4842
|
+
"LSB"
|
|
4843
|
+
],
|
|
4844
|
+
"default": "AM"
|
|
4845
|
+
},
|
|
4846
|
+
"bfoOffset": {
|
|
4847
|
+
"type": "number",
|
|
4848
|
+
"minimum": -1000,
|
|
4849
|
+
"maximum": 1000,
|
|
4850
|
+
"x-effetune-unit": "Hz",
|
|
4851
|
+
"default": 0
|
|
4852
|
+
}
|
|
4853
|
+
}
|
|
4854
|
+
}
|
|
4855
|
+
}
|
|
4856
|
+
},
|
|
4857
|
+
"TapeArtifacts": {
|
|
4858
|
+
"type": "object",
|
|
4859
|
+
"additionalProperties": false,
|
|
4860
|
+
"required": [
|
|
4861
|
+
"type",
|
|
4862
|
+
"parameters"
|
|
4863
|
+
],
|
|
4864
|
+
"properties": {
|
|
4865
|
+
"id": {
|
|
4866
|
+
"type": "string",
|
|
4867
|
+
"minLength": 1,
|
|
4868
|
+
"maxLength": 128
|
|
4869
|
+
},
|
|
4870
|
+
"type": {
|
|
4871
|
+
"const": "TapeArtifacts"
|
|
4872
|
+
},
|
|
4873
|
+
"enabled": {
|
|
4874
|
+
"type": "boolean",
|
|
4875
|
+
"default": true
|
|
4876
|
+
},
|
|
4877
|
+
"channel": {
|
|
4878
|
+
"$ref": "#/$defs/channel"
|
|
4879
|
+
},
|
|
4880
|
+
"parameters": {
|
|
4881
|
+
"type": "object",
|
|
4882
|
+
"additionalProperties": false,
|
|
4883
|
+
"properties": {
|
|
4884
|
+
"speed": {
|
|
4885
|
+
"type": "string",
|
|
4886
|
+
"enum": [
|
|
4887
|
+
"7.5",
|
|
4888
|
+
"15",
|
|
4889
|
+
"30"
|
|
4890
|
+
],
|
|
4891
|
+
"default": "15"
|
|
4892
|
+
},
|
|
4893
|
+
"tape": {
|
|
4894
|
+
"type": "string",
|
|
4895
|
+
"enum": [
|
|
4896
|
+
"Standard",
|
|
4897
|
+
"Master"
|
|
4898
|
+
],
|
|
4899
|
+
"default": "Standard"
|
|
4900
|
+
},
|
|
4901
|
+
"bias": {
|
|
4902
|
+
"type": "number",
|
|
4903
|
+
"minimum": -6,
|
|
4904
|
+
"maximum": 6,
|
|
4905
|
+
"x-effetune-unit": "dB",
|
|
4906
|
+
"default": 0
|
|
4907
|
+
},
|
|
4908
|
+
"recordLevel": {
|
|
4909
|
+
"type": "number",
|
|
4910
|
+
"minimum": -12,
|
|
4911
|
+
"maximum": 18,
|
|
4912
|
+
"x-effetune-unit": "dB",
|
|
4913
|
+
"default": 6
|
|
4914
|
+
},
|
|
4915
|
+
"wowFlutter": {
|
|
4916
|
+
"type": "number",
|
|
4917
|
+
"minimum": 0,
|
|
4918
|
+
"maximum": 1,
|
|
4919
|
+
"x-effetune-unit": "%",
|
|
4920
|
+
"default": 0.16
|
|
4921
|
+
},
|
|
4922
|
+
"hiss": {
|
|
4923
|
+
"type": "number",
|
|
4924
|
+
"minimum": -89,
|
|
4925
|
+
"maximum": -39,
|
|
4926
|
+
"x-effetune-unit": "dB re 320 nWb/m",
|
|
4927
|
+
"default": -62.5
|
|
4928
|
+
},
|
|
4929
|
+
"output": {
|
|
4930
|
+
"type": "number",
|
|
4931
|
+
"minimum": -24,
|
|
4932
|
+
"maximum": 24,
|
|
4933
|
+
"x-effetune-unit": "dB",
|
|
4934
|
+
"default": 0
|
|
4935
|
+
},
|
|
4395
4936
|
"mix": {
|
|
4396
4937
|
"type": "number",
|
|
4397
4938
|
"minimum": 0,
|
|
@@ -6302,6 +6843,185 @@
|
|
|
6302
6843
|
}
|
|
6303
6844
|
}
|
|
6304
6845
|
},
|
|
6846
|
+
"TubeSimulator": {
|
|
6847
|
+
"type": "object",
|
|
6848
|
+
"additionalProperties": false,
|
|
6849
|
+
"required": [
|
|
6850
|
+
"type",
|
|
6851
|
+
"parameters"
|
|
6852
|
+
],
|
|
6853
|
+
"properties": {
|
|
6854
|
+
"id": {
|
|
6855
|
+
"type": "string",
|
|
6856
|
+
"minLength": 1,
|
|
6857
|
+
"maxLength": 128
|
|
6858
|
+
},
|
|
6859
|
+
"type": {
|
|
6860
|
+
"const": "TubeSimulator"
|
|
6861
|
+
},
|
|
6862
|
+
"enabled": {
|
|
6863
|
+
"type": "boolean",
|
|
6864
|
+
"default": true
|
|
6865
|
+
},
|
|
6866
|
+
"channel": {
|
|
6867
|
+
"$ref": "#/$defs/channel"
|
|
6868
|
+
},
|
|
6869
|
+
"parameters": {
|
|
6870
|
+
"type": "object",
|
|
6871
|
+
"additionalProperties": false,
|
|
6872
|
+
"properties": {
|
|
6873
|
+
"inputVolume": {
|
|
6874
|
+
"type": "number",
|
|
6875
|
+
"minimum": -96,
|
|
6876
|
+
"maximum": 0,
|
|
6877
|
+
"x-effetune-unit": "dB",
|
|
6878
|
+
"default": -55.9648
|
|
6879
|
+
},
|
|
6880
|
+
"tube": {
|
|
6881
|
+
"type": "string",
|
|
6882
|
+
"enum": [
|
|
6883
|
+
"12AX7",
|
|
6884
|
+
"12AT7",
|
|
6885
|
+
"12AU7"
|
|
6886
|
+
],
|
|
6887
|
+
"default": "12AX7"
|
|
6888
|
+
},
|
|
6889
|
+
"bias": {
|
|
6890
|
+
"type": "number",
|
|
6891
|
+
"minimum": -50,
|
|
6892
|
+
"maximum": 50,
|
|
6893
|
+
"x-effetune-unit": "%",
|
|
6894
|
+
"default": 0
|
|
6895
|
+
},
|
|
6896
|
+
"plateVoltage": {
|
|
6897
|
+
"type": "number",
|
|
6898
|
+
"minimum": 150,
|
|
6899
|
+
"maximum": 300,
|
|
6900
|
+
"x-effetune-unit": "V",
|
|
6901
|
+
"default": 250
|
|
6902
|
+
},
|
|
6903
|
+
"sourceImpedance": {
|
|
6904
|
+
"type": "number",
|
|
6905
|
+
"minimum": 0.6,
|
|
6906
|
+
"maximum": 100,
|
|
6907
|
+
"x-effetune-unit": "kOhm",
|
|
6908
|
+
"default": 10
|
|
6909
|
+
},
|
|
6910
|
+
"supplyImpedance": {
|
|
6911
|
+
"type": "number",
|
|
6912
|
+
"minimum": 0.1,
|
|
6913
|
+
"maximum": 47,
|
|
6914
|
+
"x-effetune-unit": "kOhm",
|
|
6915
|
+
"default": 10
|
|
6916
|
+
},
|
|
6917
|
+
"outputTrim": {
|
|
6918
|
+
"type": "number",
|
|
6919
|
+
"minimum": -48,
|
|
6920
|
+
"maximum": 48,
|
|
6921
|
+
"x-effetune-unit": "dB",
|
|
6922
|
+
"default": 4.626
|
|
6923
|
+
},
|
|
6924
|
+
"mix": {
|
|
6925
|
+
"type": "number",
|
|
6926
|
+
"minimum": 0,
|
|
6927
|
+
"maximum": 100,
|
|
6928
|
+
"x-effetune-unit": "%",
|
|
6929
|
+
"default": 100
|
|
6930
|
+
},
|
|
6931
|
+
"inputReference": {
|
|
6932
|
+
"type": "number",
|
|
6933
|
+
"minimum": 0.1,
|
|
6934
|
+
"maximum": 20,
|
|
6935
|
+
"x-effetune-unit": "Vpk",
|
|
6936
|
+
"default": 2.828
|
|
6937
|
+
},
|
|
6938
|
+
"negativeFeedback": {
|
|
6939
|
+
"type": "number",
|
|
6940
|
+
"minimum": 0,
|
|
6941
|
+
"maximum": 30,
|
|
6942
|
+
"x-effetune-unit": "dB",
|
|
6943
|
+
"default": 3
|
|
6944
|
+
},
|
|
6945
|
+
"outputStage": {
|
|
6946
|
+
"type": "string",
|
|
6947
|
+
"enum": [
|
|
6948
|
+
"Line",
|
|
6949
|
+
"Power"
|
|
6950
|
+
],
|
|
6951
|
+
"default": "Power"
|
|
6952
|
+
},
|
|
6953
|
+
"powerTube": {
|
|
6954
|
+
"type": "string",
|
|
6955
|
+
"enum": [
|
|
6956
|
+
"EL84",
|
|
6957
|
+
"EL34"
|
|
6958
|
+
],
|
|
6959
|
+
"default": "EL84"
|
|
6960
|
+
},
|
|
6961
|
+
"powerBPlus": {
|
|
6962
|
+
"type": "number",
|
|
6963
|
+
"minimum": 300,
|
|
6964
|
+
"maximum": 470,
|
|
6965
|
+
"x-effetune-unit": "V",
|
|
6966
|
+
"default": 329.696
|
|
6967
|
+
},
|
|
6968
|
+
"cathodeResistor": {
|
|
6969
|
+
"type": "number",
|
|
6970
|
+
"minimum": 270,
|
|
6971
|
+
"maximum": 500,
|
|
6972
|
+
"x-effetune-unit": "Ohm",
|
|
6973
|
+
"default": 270
|
|
6974
|
+
},
|
|
6975
|
+
"screenTap": {
|
|
6976
|
+
"type": "string",
|
|
6977
|
+
"enum": [
|
|
6978
|
+
"0",
|
|
6979
|
+
"20",
|
|
6980
|
+
"43"
|
|
6981
|
+
],
|
|
6982
|
+
"default": "0"
|
|
6983
|
+
},
|
|
6984
|
+
"primaryImpedance": {
|
|
6985
|
+
"type": "string",
|
|
6986
|
+
"enum": [
|
|
6987
|
+
"6.0",
|
|
6988
|
+
"6.6",
|
|
6989
|
+
"8.0"
|
|
6990
|
+
],
|
|
6991
|
+
"default": "8.0"
|
|
6992
|
+
},
|
|
6993
|
+
"speakerLoad": {
|
|
6994
|
+
"type": "string",
|
|
6995
|
+
"enum": [
|
|
6996
|
+
"4",
|
|
6997
|
+
"8",
|
|
6998
|
+
"15",
|
|
6999
|
+
"16"
|
|
7000
|
+
],
|
|
7001
|
+
"default": "15"
|
|
7002
|
+
},
|
|
7003
|
+
"actualSpeakerLoad": {
|
|
7004
|
+
"type": "number",
|
|
7005
|
+
"minimum": 2,
|
|
7006
|
+
"maximum": 32,
|
|
7007
|
+
"x-effetune-unit": "Ohm",
|
|
7008
|
+
"default": 15
|
|
7009
|
+
},
|
|
7010
|
+
"safetyTrim": {
|
|
7011
|
+
"type": "number",
|
|
7012
|
+
"minimum": -96,
|
|
7013
|
+
"maximum": 0,
|
|
7014
|
+
"x-effetune-unit": "dB",
|
|
7015
|
+
"default": 0
|
|
7016
|
+
},
|
|
7017
|
+
"autoGainReduction": {
|
|
7018
|
+
"type": "boolean",
|
|
7019
|
+
"default": true
|
|
7020
|
+
}
|
|
7021
|
+
}
|
|
7022
|
+
}
|
|
7023
|
+
}
|
|
7024
|
+
},
|
|
6305
7025
|
"CrossfeedFilter": {
|
|
6306
7026
|
"type": "object",
|
|
6307
7027
|
"additionalProperties": false,
|