@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
|
@@ -2551,6 +2551,12 @@
|
|
|
2551
2551
|
{
|
|
2552
2552
|
"type": "AMRadioSimulator",
|
|
2553
2553
|
"parameters": [
|
|
2554
|
+
{
|
|
2555
|
+
"name": "radio",
|
|
2556
|
+
"type": "boolean",
|
|
2557
|
+
"count": 1,
|
|
2558
|
+
"default": true
|
|
2559
|
+
},
|
|
2554
2560
|
{
|
|
2555
2561
|
"name": "txBandwidth",
|
|
2556
2562
|
"type": "number",
|
|
@@ -2798,6 +2804,214 @@
|
|
|
2798
2804
|
},
|
|
2799
2805
|
"assets": []
|
|
2800
2806
|
},
|
|
2807
|
+
{
|
|
2808
|
+
"type": "BluetoothSBCSimulator",
|
|
2809
|
+
"parameters": [
|
|
2810
|
+
{
|
|
2811
|
+
"name": "bitpool",
|
|
2812
|
+
"type": "integer",
|
|
2813
|
+
"count": 1,
|
|
2814
|
+
"default": 35,
|
|
2815
|
+
"minimum": 2,
|
|
2816
|
+
"maximum": 53
|
|
2817
|
+
},
|
|
2818
|
+
{
|
|
2819
|
+
"name": "channelMode",
|
|
2820
|
+
"type": "string",
|
|
2821
|
+
"count": 1,
|
|
2822
|
+
"default": "Joint Stereo",
|
|
2823
|
+
"values": [
|
|
2824
|
+
"Joint Stereo",
|
|
2825
|
+
"Stereo",
|
|
2826
|
+
"Dual Channel"
|
|
2827
|
+
]
|
|
2828
|
+
},
|
|
2829
|
+
{
|
|
2830
|
+
"name": "blocks",
|
|
2831
|
+
"type": "string",
|
|
2832
|
+
"count": 1,
|
|
2833
|
+
"default": "16",
|
|
2834
|
+
"values": [
|
|
2835
|
+
"4",
|
|
2836
|
+
"8",
|
|
2837
|
+
"12",
|
|
2838
|
+
"16"
|
|
2839
|
+
]
|
|
2840
|
+
},
|
|
2841
|
+
{
|
|
2842
|
+
"name": "outputGain",
|
|
2843
|
+
"type": "number",
|
|
2844
|
+
"count": 1,
|
|
2845
|
+
"default": 0,
|
|
2846
|
+
"unit": "dB",
|
|
2847
|
+
"minimum": -24,
|
|
2848
|
+
"maximum": 12
|
|
2849
|
+
},
|
|
2850
|
+
{
|
|
2851
|
+
"name": "mix",
|
|
2852
|
+
"type": "number",
|
|
2853
|
+
"count": 1,
|
|
2854
|
+
"default": 100,
|
|
2855
|
+
"unit": "%",
|
|
2856
|
+
"minimum": 0,
|
|
2857
|
+
"maximum": 100
|
|
2858
|
+
},
|
|
2859
|
+
{
|
|
2860
|
+
"name": "packetLoss",
|
|
2861
|
+
"type": "number",
|
|
2862
|
+
"count": 1,
|
|
2863
|
+
"default": 0,
|
|
2864
|
+
"unit": "%",
|
|
2865
|
+
"minimum": 0,
|
|
2866
|
+
"maximum": 20
|
|
2867
|
+
}
|
|
2868
|
+
],
|
|
2869
|
+
"seeded": true,
|
|
2870
|
+
"sampleRates": [
|
|
2871
|
+
44100,
|
|
2872
|
+
48000,
|
|
2873
|
+
88200,
|
|
2874
|
+
96000,
|
|
2875
|
+
176400,
|
|
2876
|
+
192000,
|
|
2877
|
+
352800,
|
|
2878
|
+
384000
|
|
2879
|
+
],
|
|
2880
|
+
"telemetry": [],
|
|
2881
|
+
"latency": {
|
|
2882
|
+
"kind": "sampleRateDependent",
|
|
2883
|
+
"dependsOn": [
|
|
2884
|
+
"sampleRate"
|
|
2885
|
+
]
|
|
2886
|
+
},
|
|
2887
|
+
"assets": []
|
|
2888
|
+
},
|
|
2889
|
+
{
|
|
2890
|
+
"type": "CassetteArtifacts",
|
|
2891
|
+
"parameters": [
|
|
2892
|
+
{
|
|
2893
|
+
"name": "deckGrade",
|
|
2894
|
+
"type": "string",
|
|
2895
|
+
"count": 1,
|
|
2896
|
+
"default": "Consumer",
|
|
2897
|
+
"values": [
|
|
2898
|
+
"Reference",
|
|
2899
|
+
"Hi-Fi",
|
|
2900
|
+
"Consumer",
|
|
2901
|
+
"Portable"
|
|
2902
|
+
]
|
|
2903
|
+
},
|
|
2904
|
+
{
|
|
2905
|
+
"name": "tapeType",
|
|
2906
|
+
"type": "string",
|
|
2907
|
+
"count": 1,
|
|
2908
|
+
"default": "Type I",
|
|
2909
|
+
"values": [
|
|
2910
|
+
"Type I",
|
|
2911
|
+
"Type II",
|
|
2912
|
+
"Type IV"
|
|
2913
|
+
]
|
|
2914
|
+
},
|
|
2915
|
+
{
|
|
2916
|
+
"name": "noiseReduction",
|
|
2917
|
+
"type": "string",
|
|
2918
|
+
"count": 1,
|
|
2919
|
+
"default": "Dolby B",
|
|
2920
|
+
"values": [
|
|
2921
|
+
"Off",
|
|
2922
|
+
"Dolby B",
|
|
2923
|
+
"Dolby C"
|
|
2924
|
+
]
|
|
2925
|
+
},
|
|
2926
|
+
{
|
|
2927
|
+
"name": "bias",
|
|
2928
|
+
"type": "number",
|
|
2929
|
+
"count": 1,
|
|
2930
|
+
"default": 0,
|
|
2931
|
+
"unit": "dB",
|
|
2932
|
+
"minimum": -6,
|
|
2933
|
+
"maximum": 6
|
|
2934
|
+
},
|
|
2935
|
+
{
|
|
2936
|
+
"name": "recordLevel",
|
|
2937
|
+
"type": "number",
|
|
2938
|
+
"count": 1,
|
|
2939
|
+
"default": 9,
|
|
2940
|
+
"unit": "dB",
|
|
2941
|
+
"minimum": -12,
|
|
2942
|
+
"maximum": 18
|
|
2943
|
+
},
|
|
2944
|
+
{
|
|
2945
|
+
"name": "wowFlutter",
|
|
2946
|
+
"type": "number",
|
|
2947
|
+
"count": 1,
|
|
2948
|
+
"default": 0.2,
|
|
2949
|
+
"unit": "%",
|
|
2950
|
+
"minimum": 0,
|
|
2951
|
+
"maximum": 1
|
|
2952
|
+
},
|
|
2953
|
+
{
|
|
2954
|
+
"name": "hiss",
|
|
2955
|
+
"type": "number",
|
|
2956
|
+
"count": 1,
|
|
2957
|
+
"default": -60.5,
|
|
2958
|
+
"unit": "dB re 250 nWb/m",
|
|
2959
|
+
"minimum": -92,
|
|
2960
|
+
"maximum": -42
|
|
2961
|
+
},
|
|
2962
|
+
{
|
|
2963
|
+
"name": "dropouts",
|
|
2964
|
+
"type": "number",
|
|
2965
|
+
"count": 1,
|
|
2966
|
+
"default": 2,
|
|
2967
|
+
"unit": "events/min",
|
|
2968
|
+
"minimum": 0,
|
|
2969
|
+
"maximum": 20
|
|
2970
|
+
},
|
|
2971
|
+
{
|
|
2972
|
+
"name": "azimuth",
|
|
2973
|
+
"type": "number",
|
|
2974
|
+
"count": 1,
|
|
2975
|
+
"default": 2,
|
|
2976
|
+
"unit": "arcmin",
|
|
2977
|
+
"minimum": -6,
|
|
2978
|
+
"maximum": 6
|
|
2979
|
+
},
|
|
2980
|
+
{
|
|
2981
|
+
"name": "dolbyLevelError",
|
|
2982
|
+
"type": "number",
|
|
2983
|
+
"count": 1,
|
|
2984
|
+
"default": 0,
|
|
2985
|
+
"unit": "dB",
|
|
2986
|
+
"minimum": -3,
|
|
2987
|
+
"maximum": 3
|
|
2988
|
+
},
|
|
2989
|
+
{
|
|
2990
|
+
"name": "output",
|
|
2991
|
+
"type": "number",
|
|
2992
|
+
"count": 1,
|
|
2993
|
+
"default": 0,
|
|
2994
|
+
"unit": "dB",
|
|
2995
|
+
"minimum": -24,
|
|
2996
|
+
"maximum": 24
|
|
2997
|
+
},
|
|
2998
|
+
{
|
|
2999
|
+
"name": "mix",
|
|
3000
|
+
"type": "number",
|
|
3001
|
+
"count": 1,
|
|
3002
|
+
"default": 100,
|
|
3003
|
+
"unit": "%",
|
|
3004
|
+
"minimum": 0,
|
|
3005
|
+
"maximum": 100
|
|
3006
|
+
}
|
|
3007
|
+
],
|
|
3008
|
+
"seeded": true,
|
|
3009
|
+
"telemetry": [],
|
|
3010
|
+
"latency": {
|
|
3011
|
+
"kind": "zero"
|
|
3012
|
+
},
|
|
3013
|
+
"assets": []
|
|
3014
|
+
},
|
|
2801
3015
|
{
|
|
2802
3016
|
"type": "DigitalErrorEmulator",
|
|
2803
3017
|
"parameters": [
|
|
@@ -2982,6 +3196,12 @@
|
|
|
2982
3196
|
{
|
|
2983
3197
|
"type": "FMRadioSimulator",
|
|
2984
3198
|
"parameters": [
|
|
3199
|
+
{
|
|
3200
|
+
"name": "radio",
|
|
3201
|
+
"type": "boolean",
|
|
3202
|
+
"count": 1,
|
|
3203
|
+
"default": true
|
|
3204
|
+
},
|
|
2985
3205
|
{
|
|
2986
3206
|
"name": "emphasis",
|
|
2987
3207
|
"type": "string",
|
|
@@ -3109,88 +3329,298 @@
|
|
|
3109
3329
|
"assets": []
|
|
3110
3330
|
},
|
|
3111
3331
|
{
|
|
3112
|
-
"type": "
|
|
3332
|
+
"type": "G726ADPCMSimulator",
|
|
3113
3333
|
"parameters": [
|
|
3114
3334
|
{
|
|
3115
|
-
"name": "
|
|
3116
|
-
"type": "number",
|
|
3117
|
-
"count": 1,
|
|
3118
|
-
"default": 50,
|
|
3119
|
-
"unit": "Hz",
|
|
3120
|
-
"minimum": 10,
|
|
3121
|
-
"maximum": 120
|
|
3122
|
-
},
|
|
3123
|
-
{
|
|
3124
|
-
"name": "humType",
|
|
3335
|
+
"name": "bitrate",
|
|
3125
3336
|
"type": "string",
|
|
3126
3337
|
"count": 1,
|
|
3127
|
-
"default": "
|
|
3338
|
+
"default": "32",
|
|
3339
|
+
"unit": "kbit/s",
|
|
3128
3340
|
"values": [
|
|
3129
|
-
"
|
|
3130
|
-
"
|
|
3131
|
-
"
|
|
3341
|
+
"16",
|
|
3342
|
+
"24",
|
|
3343
|
+
"32",
|
|
3344
|
+
"40"
|
|
3132
3345
|
]
|
|
3133
3346
|
},
|
|
3134
3347
|
{
|
|
3135
|
-
"name": "
|
|
3136
|
-
"type": "integer",
|
|
3137
|
-
"count": 1,
|
|
3138
|
-
"default": 50,
|
|
3139
|
-
"unit": "%",
|
|
3140
|
-
"minimum": 0,
|
|
3141
|
-
"maximum": 100
|
|
3142
|
-
},
|
|
3143
|
-
{
|
|
3144
|
-
"name": "tone",
|
|
3348
|
+
"name": "outputGain",
|
|
3145
3349
|
"type": "number",
|
|
3146
3350
|
"count": 1,
|
|
3147
|
-
"default":
|
|
3148
|
-
"unit": "
|
|
3149
|
-
"minimum":
|
|
3150
|
-
"maximum":
|
|
3351
|
+
"default": 0,
|
|
3352
|
+
"unit": "dB",
|
|
3353
|
+
"minimum": -24,
|
|
3354
|
+
"maximum": 12
|
|
3151
3355
|
},
|
|
3152
3356
|
{
|
|
3153
|
-
"name": "
|
|
3154
|
-
"type": "
|
|
3357
|
+
"name": "mix",
|
|
3358
|
+
"type": "integer",
|
|
3155
3359
|
"count": 1,
|
|
3156
|
-
"default":
|
|
3360
|
+
"default": 100,
|
|
3157
3361
|
"unit": "%",
|
|
3158
3362
|
"minimum": 0,
|
|
3159
|
-
"maximum":
|
|
3363
|
+
"maximum": 100
|
|
3160
3364
|
},
|
|
3161
3365
|
{
|
|
3162
|
-
"name": "
|
|
3366
|
+
"name": "radioBitErrorRate",
|
|
3163
3367
|
"type": "number",
|
|
3164
3368
|
"count": 1,
|
|
3165
|
-
"default":
|
|
3166
|
-
"
|
|
3167
|
-
"
|
|
3168
|
-
"maximum": 0
|
|
3369
|
+
"default": 0.000001,
|
|
3370
|
+
"minimum": 0.000001,
|
|
3371
|
+
"maximum": 0.01
|
|
3169
3372
|
}
|
|
3170
3373
|
],
|
|
3171
|
-
"seeded":
|
|
3374
|
+
"seeded": true,
|
|
3375
|
+
"sampleRates": [
|
|
3376
|
+
44100,
|
|
3377
|
+
48000,
|
|
3378
|
+
88200,
|
|
3379
|
+
96000,
|
|
3380
|
+
176400,
|
|
3381
|
+
192000,
|
|
3382
|
+
352800,
|
|
3383
|
+
384000
|
|
3384
|
+
],
|
|
3172
3385
|
"telemetry": [],
|
|
3173
3386
|
"latency": {
|
|
3174
|
-
"kind": "
|
|
3387
|
+
"kind": "sampleRateDependent",
|
|
3388
|
+
"dependsOn": [
|
|
3389
|
+
"sampleRate"
|
|
3390
|
+
]
|
|
3175
3391
|
},
|
|
3176
3392
|
"assets": []
|
|
3177
3393
|
},
|
|
3178
3394
|
{
|
|
3179
|
-
"type": "
|
|
3395
|
+
"type": "GSMFullRateSimulator",
|
|
3180
3396
|
"parameters": [
|
|
3181
3397
|
{
|
|
3182
|
-
"name": "
|
|
3183
|
-
"type": "
|
|
3398
|
+
"name": "transcodes",
|
|
3399
|
+
"type": "integer",
|
|
3184
3400
|
"count": 1,
|
|
3185
|
-
"default":
|
|
3186
|
-
"
|
|
3187
|
-
|
|
3188
|
-
"pink",
|
|
3189
|
-
"brown"
|
|
3190
|
-
]
|
|
3401
|
+
"default": 1,
|
|
3402
|
+
"minimum": 1,
|
|
3403
|
+
"maximum": 3
|
|
3191
3404
|
},
|
|
3192
3405
|
{
|
|
3193
|
-
"name": "
|
|
3406
|
+
"name": "outputGain",
|
|
3407
|
+
"type": "number",
|
|
3408
|
+
"count": 1,
|
|
3409
|
+
"default": 0,
|
|
3410
|
+
"unit": "dB",
|
|
3411
|
+
"minimum": -24,
|
|
3412
|
+
"maximum": 12
|
|
3413
|
+
},
|
|
3414
|
+
{
|
|
3415
|
+
"name": "mix",
|
|
3416
|
+
"type": "integer",
|
|
3417
|
+
"count": 1,
|
|
3418
|
+
"default": 100,
|
|
3419
|
+
"unit": "%",
|
|
3420
|
+
"minimum": 0,
|
|
3421
|
+
"maximum": 100
|
|
3422
|
+
},
|
|
3423
|
+
{
|
|
3424
|
+
"name": "carrierToInterference",
|
|
3425
|
+
"type": "number",
|
|
3426
|
+
"count": 1,
|
|
3427
|
+
"default": 30,
|
|
3428
|
+
"unit": "dB",
|
|
3429
|
+
"minimum": 4,
|
|
3430
|
+
"maximum": 30
|
|
3431
|
+
}
|
|
3432
|
+
],
|
|
3433
|
+
"seeded": true,
|
|
3434
|
+
"sampleRates": [
|
|
3435
|
+
44100,
|
|
3436
|
+
48000,
|
|
3437
|
+
88200,
|
|
3438
|
+
96000,
|
|
3439
|
+
176400,
|
|
3440
|
+
192000,
|
|
3441
|
+
352800,
|
|
3442
|
+
384000
|
|
3443
|
+
],
|
|
3444
|
+
"telemetry": [],
|
|
3445
|
+
"latency": {
|
|
3446
|
+
"kind": "sampleRateDependent",
|
|
3447
|
+
"dependsOn": [
|
|
3448
|
+
"sampleRate"
|
|
3449
|
+
]
|
|
3450
|
+
},
|
|
3451
|
+
"assets": []
|
|
3452
|
+
},
|
|
3453
|
+
{
|
|
3454
|
+
"type": "HumGenerator",
|
|
3455
|
+
"parameters": [
|
|
3456
|
+
{
|
|
3457
|
+
"name": "frequency",
|
|
3458
|
+
"type": "number",
|
|
3459
|
+
"count": 1,
|
|
3460
|
+
"default": 50,
|
|
3461
|
+
"unit": "Hz",
|
|
3462
|
+
"minimum": 10,
|
|
3463
|
+
"maximum": 120
|
|
3464
|
+
},
|
|
3465
|
+
{
|
|
3466
|
+
"name": "humType",
|
|
3467
|
+
"type": "string",
|
|
3468
|
+
"count": 1,
|
|
3469
|
+
"default": "Standard",
|
|
3470
|
+
"values": [
|
|
3471
|
+
"Standard",
|
|
3472
|
+
"Rich",
|
|
3473
|
+
"Dirty"
|
|
3474
|
+
]
|
|
3475
|
+
},
|
|
3476
|
+
{
|
|
3477
|
+
"name": "harmonics",
|
|
3478
|
+
"type": "integer",
|
|
3479
|
+
"count": 1,
|
|
3480
|
+
"default": 50,
|
|
3481
|
+
"unit": "%",
|
|
3482
|
+
"minimum": 0,
|
|
3483
|
+
"maximum": 100
|
|
3484
|
+
},
|
|
3485
|
+
{
|
|
3486
|
+
"name": "tone",
|
|
3487
|
+
"type": "number",
|
|
3488
|
+
"count": 1,
|
|
3489
|
+
"default": 10,
|
|
3490
|
+
"unit": "kHz",
|
|
3491
|
+
"minimum": 1,
|
|
3492
|
+
"maximum": 20
|
|
3493
|
+
},
|
|
3494
|
+
{
|
|
3495
|
+
"name": "instability",
|
|
3496
|
+
"type": "number",
|
|
3497
|
+
"count": 1,
|
|
3498
|
+
"default": 1,
|
|
3499
|
+
"unit": "%",
|
|
3500
|
+
"minimum": 0,
|
|
3501
|
+
"maximum": 10
|
|
3502
|
+
},
|
|
3503
|
+
{
|
|
3504
|
+
"name": "level",
|
|
3505
|
+
"type": "number",
|
|
3506
|
+
"count": 1,
|
|
3507
|
+
"default": -40,
|
|
3508
|
+
"unit": "dB",
|
|
3509
|
+
"minimum": -80,
|
|
3510
|
+
"maximum": 0
|
|
3511
|
+
}
|
|
3512
|
+
],
|
|
3513
|
+
"seeded": false,
|
|
3514
|
+
"telemetry": [],
|
|
3515
|
+
"latency": {
|
|
3516
|
+
"kind": "zero"
|
|
3517
|
+
},
|
|
3518
|
+
"assets": []
|
|
3519
|
+
},
|
|
3520
|
+
{
|
|
3521
|
+
"type": "MP3CodecSimulator",
|
|
3522
|
+
"parameters": [
|
|
3523
|
+
{
|
|
3524
|
+
"name": "codecRate",
|
|
3525
|
+
"type": "string",
|
|
3526
|
+
"count": 1,
|
|
3527
|
+
"default": "44.1 kHz (MPEG-1)",
|
|
3528
|
+
"values": [
|
|
3529
|
+
"22.05 kHz (MPEG-2)",
|
|
3530
|
+
"44.1 kHz (MPEG-1)"
|
|
3531
|
+
]
|
|
3532
|
+
},
|
|
3533
|
+
{
|
|
3534
|
+
"name": "bitrate",
|
|
3535
|
+
"type": "string",
|
|
3536
|
+
"count": 1,
|
|
3537
|
+
"default": "64",
|
|
3538
|
+
"values": [
|
|
3539
|
+
"32",
|
|
3540
|
+
"48",
|
|
3541
|
+
"64",
|
|
3542
|
+
"80",
|
|
3543
|
+
"96",
|
|
3544
|
+
"112",
|
|
3545
|
+
"128",
|
|
3546
|
+
"160",
|
|
3547
|
+
"192",
|
|
3548
|
+
"224",
|
|
3549
|
+
"256",
|
|
3550
|
+
"320"
|
|
3551
|
+
]
|
|
3552
|
+
},
|
|
3553
|
+
{
|
|
3554
|
+
"name": "stereoMode",
|
|
3555
|
+
"type": "string",
|
|
3556
|
+
"count": 1,
|
|
3557
|
+
"default": "Joint Stereo",
|
|
3558
|
+
"values": [
|
|
3559
|
+
"Joint Stereo",
|
|
3560
|
+
"Stereo"
|
|
3561
|
+
]
|
|
3562
|
+
},
|
|
3563
|
+
{
|
|
3564
|
+
"name": "bitReservoir",
|
|
3565
|
+
"type": "boolean",
|
|
3566
|
+
"count": 1,
|
|
3567
|
+
"default": true
|
|
3568
|
+
},
|
|
3569
|
+
{
|
|
3570
|
+
"name": "outputGain",
|
|
3571
|
+
"type": "number",
|
|
3572
|
+
"count": 1,
|
|
3573
|
+
"default": 0,
|
|
3574
|
+
"unit": "dB",
|
|
3575
|
+
"minimum": -24,
|
|
3576
|
+
"maximum": 12
|
|
3577
|
+
},
|
|
3578
|
+
{
|
|
3579
|
+
"name": "mix",
|
|
3580
|
+
"type": "number",
|
|
3581
|
+
"count": 1,
|
|
3582
|
+
"default": 100,
|
|
3583
|
+
"unit": "%",
|
|
3584
|
+
"minimum": 0,
|
|
3585
|
+
"maximum": 100
|
|
3586
|
+
}
|
|
3587
|
+
],
|
|
3588
|
+
"seeded": false,
|
|
3589
|
+
"sampleRates": [
|
|
3590
|
+
44100,
|
|
3591
|
+
48000,
|
|
3592
|
+
88200,
|
|
3593
|
+
96000,
|
|
3594
|
+
176400,
|
|
3595
|
+
192000,
|
|
3596
|
+
352800,
|
|
3597
|
+
384000
|
|
3598
|
+
],
|
|
3599
|
+
"telemetry": [],
|
|
3600
|
+
"latency": {
|
|
3601
|
+
"kind": "sampleRateDependent",
|
|
3602
|
+
"dependsOn": [
|
|
3603
|
+
"sampleRate"
|
|
3604
|
+
]
|
|
3605
|
+
},
|
|
3606
|
+
"assets": []
|
|
3607
|
+
},
|
|
3608
|
+
{
|
|
3609
|
+
"type": "NoiseBlender",
|
|
3610
|
+
"parameters": [
|
|
3611
|
+
{
|
|
3612
|
+
"name": "noiseType",
|
|
3613
|
+
"type": "string",
|
|
3614
|
+
"count": 1,
|
|
3615
|
+
"default": "pink",
|
|
3616
|
+
"values": [
|
|
3617
|
+
"white",
|
|
3618
|
+
"pink",
|
|
3619
|
+
"brown"
|
|
3620
|
+
]
|
|
3621
|
+
},
|
|
3622
|
+
{
|
|
3623
|
+
"name": "level",
|
|
3194
3624
|
"type": "number",
|
|
3195
3625
|
"count": 1,
|
|
3196
3626
|
"default": -36,
|
|
@@ -3235,6 +3665,12 @@
|
|
|
3235
3665
|
{
|
|
3236
3666
|
"type": "SWRadioSimulator",
|
|
3237
3667
|
"parameters": [
|
|
3668
|
+
{
|
|
3669
|
+
"name": "radio",
|
|
3670
|
+
"type": "boolean",
|
|
3671
|
+
"count": 1,
|
|
3672
|
+
"default": true
|
|
3673
|
+
},
|
|
3238
3674
|
{
|
|
3239
3675
|
"name": "txBandwidth",
|
|
3240
3676
|
"type": "number",
|
|
@@ -3429,6 +3865,26 @@
|
|
|
3429
3865
|
"unit": "%",
|
|
3430
3866
|
"minimum": 0,
|
|
3431
3867
|
"maximum": 100
|
|
3868
|
+
},
|
|
3869
|
+
{
|
|
3870
|
+
"name": "mode",
|
|
3871
|
+
"type": "string",
|
|
3872
|
+
"count": 1,
|
|
3873
|
+
"default": "AM",
|
|
3874
|
+
"values": [
|
|
3875
|
+
"AM",
|
|
3876
|
+
"USB",
|
|
3877
|
+
"LSB"
|
|
3878
|
+
]
|
|
3879
|
+
},
|
|
3880
|
+
{
|
|
3881
|
+
"name": "bfoOffset",
|
|
3882
|
+
"type": "number",
|
|
3883
|
+
"count": 1,
|
|
3884
|
+
"default": 0,
|
|
3885
|
+
"unit": "Hz",
|
|
3886
|
+
"minimum": -1000,
|
|
3887
|
+
"maximum": 1000
|
|
3432
3888
|
}
|
|
3433
3889
|
],
|
|
3434
3890
|
"seeded": true,
|
|
@@ -3441,47 +3897,133 @@
|
|
|
3441
3897
|
"assets": []
|
|
3442
3898
|
},
|
|
3443
3899
|
{
|
|
3444
|
-
"type": "
|
|
3900
|
+
"type": "TapeArtifacts",
|
|
3445
3901
|
"parameters": [
|
|
3446
3902
|
{
|
|
3447
|
-
"name": "
|
|
3448
|
-
"type": "
|
|
3903
|
+
"name": "speed",
|
|
3904
|
+
"type": "string",
|
|
3449
3905
|
"count": 1,
|
|
3450
|
-
"default":
|
|
3451
|
-
"
|
|
3452
|
-
|
|
3906
|
+
"default": "15",
|
|
3907
|
+
"values": [
|
|
3908
|
+
"7.5",
|
|
3909
|
+
"15",
|
|
3910
|
+
"30"
|
|
3911
|
+
]
|
|
3453
3912
|
},
|
|
3454
3913
|
{
|
|
3455
|
-
"name": "
|
|
3456
|
-
"type": "
|
|
3914
|
+
"name": "tape",
|
|
3915
|
+
"type": "string",
|
|
3457
3916
|
"count": 1,
|
|
3458
|
-
"default":
|
|
3459
|
-
"
|
|
3460
|
-
|
|
3461
|
-
|
|
3917
|
+
"default": "Standard",
|
|
3918
|
+
"values": [
|
|
3919
|
+
"Standard",
|
|
3920
|
+
"Master"
|
|
3921
|
+
]
|
|
3462
3922
|
},
|
|
3463
3923
|
{
|
|
3464
|
-
"name": "
|
|
3465
|
-
"type": "
|
|
3924
|
+
"name": "bias",
|
|
3925
|
+
"type": "number",
|
|
3466
3926
|
"count": 1,
|
|
3467
|
-
"default":
|
|
3468
|
-
"
|
|
3469
|
-
"
|
|
3927
|
+
"default": 0,
|
|
3928
|
+
"unit": "dB",
|
|
3929
|
+
"minimum": -6,
|
|
3930
|
+
"maximum": 6
|
|
3470
3931
|
},
|
|
3471
3932
|
{
|
|
3472
|
-
"name": "
|
|
3933
|
+
"name": "recordLevel",
|
|
3473
3934
|
"type": "number",
|
|
3474
3935
|
"count": 1,
|
|
3475
|
-
"default":
|
|
3936
|
+
"default": 6,
|
|
3476
3937
|
"unit": "dB",
|
|
3477
|
-
"minimum": -
|
|
3478
|
-
"maximum":
|
|
3938
|
+
"minimum": -12,
|
|
3939
|
+
"maximum": 18
|
|
3479
3940
|
},
|
|
3480
3941
|
{
|
|
3481
|
-
"name": "
|
|
3942
|
+
"name": "wowFlutter",
|
|
3482
3943
|
"type": "number",
|
|
3483
3944
|
"count": 1,
|
|
3484
|
-
"default":
|
|
3945
|
+
"default": 0.16,
|
|
3946
|
+
"unit": "%",
|
|
3947
|
+
"minimum": 0,
|
|
3948
|
+
"maximum": 1
|
|
3949
|
+
},
|
|
3950
|
+
{
|
|
3951
|
+
"name": "hiss",
|
|
3952
|
+
"type": "number",
|
|
3953
|
+
"count": 1,
|
|
3954
|
+
"default": -62.5,
|
|
3955
|
+
"unit": "dB re 320 nWb/m",
|
|
3956
|
+
"minimum": -89,
|
|
3957
|
+
"maximum": -39
|
|
3958
|
+
},
|
|
3959
|
+
{
|
|
3960
|
+
"name": "output",
|
|
3961
|
+
"type": "number",
|
|
3962
|
+
"count": 1,
|
|
3963
|
+
"default": 0,
|
|
3964
|
+
"unit": "dB",
|
|
3965
|
+
"minimum": -24,
|
|
3966
|
+
"maximum": 24
|
|
3967
|
+
},
|
|
3968
|
+
{
|
|
3969
|
+
"name": "mix",
|
|
3970
|
+
"type": "number",
|
|
3971
|
+
"count": 1,
|
|
3972
|
+
"default": 100,
|
|
3973
|
+
"unit": "%",
|
|
3974
|
+
"minimum": 0,
|
|
3975
|
+
"maximum": 100
|
|
3976
|
+
}
|
|
3977
|
+
],
|
|
3978
|
+
"seeded": true,
|
|
3979
|
+
"telemetry": [],
|
|
3980
|
+
"latency": {
|
|
3981
|
+
"kind": "zero"
|
|
3982
|
+
},
|
|
3983
|
+
"assets": []
|
|
3984
|
+
},
|
|
3985
|
+
{
|
|
3986
|
+
"type": "VinylArtifacts",
|
|
3987
|
+
"parameters": [
|
|
3988
|
+
{
|
|
3989
|
+
"name": "popsPerMinute",
|
|
3990
|
+
"type": "integer",
|
|
3991
|
+
"count": 1,
|
|
3992
|
+
"default": 20,
|
|
3993
|
+
"minimum": 0,
|
|
3994
|
+
"maximum": 120
|
|
3995
|
+
},
|
|
3996
|
+
{
|
|
3997
|
+
"name": "popLevel",
|
|
3998
|
+
"type": "number",
|
|
3999
|
+
"count": 1,
|
|
4000
|
+
"default": -24,
|
|
4001
|
+
"unit": "dB",
|
|
4002
|
+
"minimum": -80,
|
|
4003
|
+
"maximum": 0
|
|
4004
|
+
},
|
|
4005
|
+
{
|
|
4006
|
+
"name": "cracklesPerMinute",
|
|
4007
|
+
"type": "integer",
|
|
4008
|
+
"count": 1,
|
|
4009
|
+
"default": 500,
|
|
4010
|
+
"minimum": 0,
|
|
4011
|
+
"maximum": 2000
|
|
4012
|
+
},
|
|
4013
|
+
{
|
|
4014
|
+
"name": "crackleLevel",
|
|
4015
|
+
"type": "number",
|
|
4016
|
+
"count": 1,
|
|
4017
|
+
"default": -33,
|
|
4018
|
+
"unit": "dB",
|
|
4019
|
+
"minimum": -80,
|
|
4020
|
+
"maximum": 0
|
|
4021
|
+
},
|
|
4022
|
+
{
|
|
4023
|
+
"name": "hissLevel",
|
|
4024
|
+
"type": "number",
|
|
4025
|
+
"count": 1,
|
|
4026
|
+
"default": -42,
|
|
3485
4027
|
"unit": "dB",
|
|
3486
4028
|
"minimum": -80,
|
|
3487
4029
|
"maximum": 0
|
|
@@ -3760,90 +4302,129 @@
|
|
|
3760
4302
|
"assets": []
|
|
3761
4303
|
},
|
|
3762
4304
|
{
|
|
3763
|
-
"type": "
|
|
4305
|
+
"type": "AutoFilter",
|
|
3764
4306
|
"parameters": [
|
|
3765
4307
|
{
|
|
3766
|
-
"name": "
|
|
3767
|
-
"type": "
|
|
4308
|
+
"name": "mode",
|
|
4309
|
+
"type": "string",
|
|
3768
4310
|
"count": 1,
|
|
3769
|
-
"default":
|
|
3770
|
-
"
|
|
3771
|
-
|
|
3772
|
-
|
|
4311
|
+
"default": "LFO",
|
|
4312
|
+
"values": [
|
|
4313
|
+
"LFO",
|
|
4314
|
+
"Envelope"
|
|
4315
|
+
]
|
|
3773
4316
|
},
|
|
3774
4317
|
{
|
|
3775
|
-
"name": "
|
|
4318
|
+
"name": "filterType",
|
|
4319
|
+
"type": "string",
|
|
4320
|
+
"count": 1,
|
|
4321
|
+
"default": "Low-pass",
|
|
4322
|
+
"values": [
|
|
4323
|
+
"Low-pass",
|
|
4324
|
+
"Band-pass",
|
|
4325
|
+
"High-pass"
|
|
4326
|
+
]
|
|
4327
|
+
},
|
|
4328
|
+
{
|
|
4329
|
+
"name": "minimumFrequency",
|
|
3776
4330
|
"type": "number",
|
|
3777
4331
|
"count": 1,
|
|
3778
|
-
"default":
|
|
3779
|
-
"unit": "
|
|
3780
|
-
"minimum":
|
|
3781
|
-
"maximum":
|
|
4332
|
+
"default": 200,
|
|
4333
|
+
"unit": "Hz",
|
|
4334
|
+
"minimum": 20,
|
|
4335
|
+
"maximum": 20000
|
|
3782
4336
|
},
|
|
3783
4337
|
{
|
|
3784
|
-
"name": "
|
|
4338
|
+
"name": "maximumFrequency",
|
|
3785
4339
|
"type": "number",
|
|
3786
4340
|
"count": 1,
|
|
3787
|
-
"default":
|
|
3788
|
-
"unit": "
|
|
3789
|
-
"minimum":
|
|
3790
|
-
"maximum":
|
|
4341
|
+
"default": 4000,
|
|
4342
|
+
"unit": "Hz",
|
|
4343
|
+
"minimum": 20,
|
|
4344
|
+
"maximum": 20000
|
|
3791
4345
|
},
|
|
3792
4346
|
{
|
|
3793
|
-
"name": "
|
|
4347
|
+
"name": "resonance",
|
|
3794
4348
|
"type": "number",
|
|
3795
4349
|
"count": 1,
|
|
3796
4350
|
"default": 1.5,
|
|
3797
|
-
"unit": "
|
|
4351
|
+
"unit": "Q",
|
|
4352
|
+
"minimum": 0.5,
|
|
4353
|
+
"maximum": 20
|
|
4354
|
+
},
|
|
4355
|
+
{
|
|
4356
|
+
"name": "mix",
|
|
4357
|
+
"type": "number",
|
|
4358
|
+
"count": 1,
|
|
4359
|
+
"default": 80,
|
|
4360
|
+
"unit": "%",
|
|
3798
4361
|
"minimum": 0,
|
|
3799
|
-
"maximum":
|
|
3800
|
-
}
|
|
3801
|
-
],
|
|
3802
|
-
"seeded": false,
|
|
3803
|
-
"telemetry": [],
|
|
3804
|
-
"latency": {
|
|
3805
|
-
"kind": "zero"
|
|
3806
|
-
},
|
|
3807
|
-
"assets": []
|
|
3808
|
-
},
|
|
3809
|
-
{
|
|
3810
|
-
"type": "PitchShifter",
|
|
3811
|
-
"parameters": [
|
|
4362
|
+
"maximum": 100
|
|
4363
|
+
},
|
|
3812
4364
|
{
|
|
3813
|
-
"name": "
|
|
3814
|
-
"type": "
|
|
4365
|
+
"name": "rate",
|
|
4366
|
+
"type": "number",
|
|
3815
4367
|
"count": 1,
|
|
3816
|
-
"default": 0,
|
|
3817
|
-
"unit": "
|
|
3818
|
-
"minimum":
|
|
3819
|
-
"maximum":
|
|
4368
|
+
"default": 0.5,
|
|
4369
|
+
"unit": "Hz",
|
|
4370
|
+
"minimum": 0.05,
|
|
4371
|
+
"maximum": 20
|
|
3820
4372
|
},
|
|
3821
4373
|
{
|
|
3822
|
-
"name": "
|
|
3823
|
-
"type": "
|
|
4374
|
+
"name": "waveform",
|
|
4375
|
+
"type": "string",
|
|
4376
|
+
"count": 1,
|
|
4377
|
+
"default": "Sine",
|
|
4378
|
+
"values": [
|
|
4379
|
+
"Sine",
|
|
4380
|
+
"Triangle"
|
|
4381
|
+
]
|
|
4382
|
+
},
|
|
4383
|
+
{
|
|
4384
|
+
"name": "stereoPhase",
|
|
4385
|
+
"type": "number",
|
|
3824
4386
|
"count": 1,
|
|
3825
4387
|
"default": 0,
|
|
3826
|
-
"unit": "
|
|
3827
|
-
"minimum":
|
|
3828
|
-
"maximum":
|
|
4388
|
+
"unit": "deg",
|
|
4389
|
+
"minimum": 0,
|
|
4390
|
+
"maximum": 180
|
|
3829
4391
|
},
|
|
3830
4392
|
{
|
|
3831
|
-
"name": "
|
|
3832
|
-
"type": "
|
|
4393
|
+
"name": "sensitivity",
|
|
4394
|
+
"type": "number",
|
|
3833
4395
|
"count": 1,
|
|
3834
|
-
"default":
|
|
4396
|
+
"default": 24,
|
|
4397
|
+
"unit": "dB",
|
|
4398
|
+
"minimum": 0,
|
|
4399
|
+
"maximum": 60
|
|
4400
|
+
},
|
|
4401
|
+
{
|
|
4402
|
+
"name": "attack",
|
|
4403
|
+
"type": "number",
|
|
4404
|
+
"count": 1,
|
|
4405
|
+
"default": 20,
|
|
3835
4406
|
"unit": "ms",
|
|
3836
|
-
"minimum":
|
|
4407
|
+
"minimum": 1,
|
|
3837
4408
|
"maximum": 500
|
|
3838
4409
|
},
|
|
3839
4410
|
{
|
|
3840
|
-
"name": "
|
|
4411
|
+
"name": "release",
|
|
3841
4412
|
"type": "number",
|
|
3842
4413
|
"count": 1,
|
|
3843
|
-
"default":
|
|
4414
|
+
"default": 250,
|
|
3844
4415
|
"unit": "ms",
|
|
3845
|
-
"minimum":
|
|
3846
|
-
"maximum":
|
|
4416
|
+
"minimum": 10,
|
|
4417
|
+
"maximum": 2000
|
|
4418
|
+
},
|
|
4419
|
+
{
|
|
4420
|
+
"name": "direction",
|
|
4421
|
+
"type": "string",
|
|
4422
|
+
"count": 1,
|
|
4423
|
+
"default": "Up",
|
|
4424
|
+
"values": [
|
|
4425
|
+
"Up",
|
|
4426
|
+
"Down"
|
|
4427
|
+
]
|
|
3847
4428
|
}
|
|
3848
4429
|
],
|
|
3849
4430
|
"seeded": false,
|
|
@@ -3854,73 +4435,65 @@
|
|
|
3854
4435
|
"assets": []
|
|
3855
4436
|
},
|
|
3856
4437
|
{
|
|
3857
|
-
"type": "
|
|
4438
|
+
"type": "AutoPan",
|
|
3858
4439
|
"parameters": [
|
|
3859
4440
|
{
|
|
3860
4441
|
"name": "rate",
|
|
3861
4442
|
"type": "number",
|
|
3862
4443
|
"count": 1,
|
|
3863
|
-
"default":
|
|
4444
|
+
"default": 0.35,
|
|
3864
4445
|
"unit": "Hz",
|
|
3865
|
-
"minimum": 0.
|
|
3866
|
-
"maximum":
|
|
4446
|
+
"minimum": 0.05,
|
|
4447
|
+
"maximum": 20
|
|
3867
4448
|
},
|
|
3868
4449
|
{
|
|
3869
4450
|
"name": "depth",
|
|
3870
4451
|
"type": "number",
|
|
3871
4452
|
"count": 1,
|
|
3872
|
-
"default":
|
|
3873
|
-
"unit": "
|
|
4453
|
+
"default": 45,
|
|
4454
|
+
"unit": "%",
|
|
3874
4455
|
"minimum": 0,
|
|
3875
|
-
"maximum":
|
|
4456
|
+
"maximum": 100
|
|
3876
4457
|
},
|
|
3877
4458
|
{
|
|
3878
|
-
"name": "
|
|
4459
|
+
"name": "center",
|
|
3879
4460
|
"type": "number",
|
|
3880
4461
|
"count": 1,
|
|
3881
|
-
"default":
|
|
3882
|
-
"unit": "
|
|
3883
|
-
"minimum":
|
|
3884
|
-
"maximum":
|
|
4462
|
+
"default": 0,
|
|
4463
|
+
"unit": "%",
|
|
4464
|
+
"minimum": -100,
|
|
4465
|
+
"maximum": 100
|
|
3885
4466
|
},
|
|
3886
4467
|
{
|
|
3887
|
-
"name": "
|
|
4468
|
+
"name": "width",
|
|
3888
4469
|
"type": "number",
|
|
3889
4470
|
"count": 1,
|
|
3890
|
-
"default":
|
|
3891
|
-
"unit": "
|
|
3892
|
-
"minimum":
|
|
3893
|
-
"maximum":
|
|
4471
|
+
"default": 70,
|
|
4472
|
+
"unit": "%",
|
|
4473
|
+
"minimum": 0,
|
|
4474
|
+
"maximum": 100
|
|
3894
4475
|
},
|
|
3895
4476
|
{
|
|
3896
|
-
"name": "
|
|
3897
|
-
"type": "
|
|
4477
|
+
"name": "waveform",
|
|
4478
|
+
"type": "string",
|
|
3898
4479
|
"count": 1,
|
|
3899
|
-
"default":
|
|
3900
|
-
"
|
|
3901
|
-
|
|
3902
|
-
|
|
4480
|
+
"default": "Sine",
|
|
4481
|
+
"values": [
|
|
4482
|
+
"Sine",
|
|
4483
|
+
"Triangle"
|
|
4484
|
+
]
|
|
3903
4485
|
},
|
|
3904
4486
|
{
|
|
3905
|
-
"name": "
|
|
4487
|
+
"name": "phase",
|
|
3906
4488
|
"type": "number",
|
|
3907
4489
|
"count": 1,
|
|
3908
4490
|
"default": 0,
|
|
3909
|
-
"unit": "
|
|
3910
|
-
"minimum": -180,
|
|
3911
|
-
"maximum": 180
|
|
3912
|
-
},
|
|
3913
|
-
{
|
|
3914
|
-
"name": "channelSync",
|
|
3915
|
-
"type": "number",
|
|
3916
|
-
"count": 1,
|
|
3917
|
-
"default": 100,
|
|
3918
|
-
"unit": "%",
|
|
4491
|
+
"unit": "deg",
|
|
3919
4492
|
"minimum": 0,
|
|
3920
|
-
"maximum":
|
|
4493
|
+
"maximum": 360
|
|
3921
4494
|
}
|
|
3922
4495
|
],
|
|
3923
|
-
"seeded":
|
|
4496
|
+
"seeded": false,
|
|
3924
4497
|
"telemetry": [],
|
|
3925
4498
|
"latency": {
|
|
3926
4499
|
"kind": "zero"
|
|
@@ -3928,11 +4501,556 @@
|
|
|
3928
4501
|
"assets": []
|
|
3929
4502
|
},
|
|
3930
4503
|
{
|
|
3931
|
-
"type": "
|
|
4504
|
+
"type": "Chorus",
|
|
3932
4505
|
"parameters": [
|
|
3933
4506
|
{
|
|
3934
|
-
"name": "
|
|
3935
|
-
"type": "
|
|
4507
|
+
"name": "mode",
|
|
4508
|
+
"type": "string",
|
|
4509
|
+
"count": 1,
|
|
4510
|
+
"default": "Chorus",
|
|
4511
|
+
"values": [
|
|
4512
|
+
"Chorus",
|
|
4513
|
+
"Stereo Chorus",
|
|
4514
|
+
"Ensemble",
|
|
4515
|
+
"Flanger",
|
|
4516
|
+
"Vibrato"
|
|
4517
|
+
]
|
|
4518
|
+
},
|
|
4519
|
+
{
|
|
4520
|
+
"name": "rate",
|
|
4521
|
+
"type": "number",
|
|
4522
|
+
"count": 1,
|
|
4523
|
+
"default": 0.8,
|
|
4524
|
+
"unit": "Hz",
|
|
4525
|
+
"minimum": 0.05,
|
|
4526
|
+
"maximum": 10
|
|
4527
|
+
},
|
|
4528
|
+
{
|
|
4529
|
+
"name": "delay",
|
|
4530
|
+
"type": "number",
|
|
4531
|
+
"count": 1,
|
|
4532
|
+
"default": 12,
|
|
4533
|
+
"unit": "ms",
|
|
4534
|
+
"minimum": 0.5,
|
|
4535
|
+
"maximum": 30
|
|
4536
|
+
},
|
|
4537
|
+
{
|
|
4538
|
+
"name": "depth",
|
|
4539
|
+
"type": "number",
|
|
4540
|
+
"count": 1,
|
|
4541
|
+
"default": 3,
|
|
4542
|
+
"unit": "ms",
|
|
4543
|
+
"minimum": 0,
|
|
4544
|
+
"maximum": 20
|
|
4545
|
+
},
|
|
4546
|
+
{
|
|
4547
|
+
"name": "voices",
|
|
4548
|
+
"type": "integer",
|
|
4549
|
+
"count": 1,
|
|
4550
|
+
"default": 3,
|
|
4551
|
+
"minimum": 1,
|
|
4552
|
+
"maximum": 6
|
|
4553
|
+
},
|
|
4554
|
+
{
|
|
4555
|
+
"name": "stereoSpread",
|
|
4556
|
+
"type": "number",
|
|
4557
|
+
"count": 1,
|
|
4558
|
+
"default": 60,
|
|
4559
|
+
"unit": "%",
|
|
4560
|
+
"minimum": 0,
|
|
4561
|
+
"maximum": 100
|
|
4562
|
+
},
|
|
4563
|
+
{
|
|
4564
|
+
"name": "feedback",
|
|
4565
|
+
"type": "number",
|
|
4566
|
+
"count": 1,
|
|
4567
|
+
"default": 0,
|
|
4568
|
+
"unit": "%",
|
|
4569
|
+
"minimum": -75,
|
|
4570
|
+
"maximum": 75
|
|
4571
|
+
},
|
|
4572
|
+
{
|
|
4573
|
+
"name": "mix",
|
|
4574
|
+
"type": "number",
|
|
4575
|
+
"count": 1,
|
|
4576
|
+
"default": 45,
|
|
4577
|
+
"unit": "%",
|
|
4578
|
+
"minimum": 0,
|
|
4579
|
+
"maximum": 100
|
|
4580
|
+
}
|
|
4581
|
+
],
|
|
4582
|
+
"seeded": false,
|
|
4583
|
+
"telemetry": [],
|
|
4584
|
+
"latency": {
|
|
4585
|
+
"kind": "zero"
|
|
4586
|
+
},
|
|
4587
|
+
"assets": []
|
|
4588
|
+
},
|
|
4589
|
+
{
|
|
4590
|
+
"type": "DopplerDistortion",
|
|
4591
|
+
"parameters": [
|
|
4592
|
+
{
|
|
4593
|
+
"name": "coilForce",
|
|
4594
|
+
"type": "number",
|
|
4595
|
+
"count": 1,
|
|
4596
|
+
"default": 8,
|
|
4597
|
+
"unit": "N / V",
|
|
4598
|
+
"minimum": 0,
|
|
4599
|
+
"maximum": 100
|
|
4600
|
+
},
|
|
4601
|
+
{
|
|
4602
|
+
"name": "speakerMass",
|
|
4603
|
+
"type": "number",
|
|
4604
|
+
"count": 1,
|
|
4605
|
+
"default": 0.03,
|
|
4606
|
+
"unit": "kg",
|
|
4607
|
+
"minimum": 0.001,
|
|
4608
|
+
"maximum": 0.5
|
|
4609
|
+
},
|
|
4610
|
+
{
|
|
4611
|
+
"name": "springConstant",
|
|
4612
|
+
"type": "number",
|
|
4613
|
+
"count": 1,
|
|
4614
|
+
"default": 6000,
|
|
4615
|
+
"unit": "N/m",
|
|
4616
|
+
"minimum": 1,
|
|
4617
|
+
"maximum": 100000
|
|
4618
|
+
},
|
|
4619
|
+
{
|
|
4620
|
+
"name": "dampingFactor",
|
|
4621
|
+
"type": "number",
|
|
4622
|
+
"count": 1,
|
|
4623
|
+
"default": 1.5,
|
|
4624
|
+
"unit": "N*s/m",
|
|
4625
|
+
"minimum": 0,
|
|
4626
|
+
"maximum": 50
|
|
4627
|
+
}
|
|
4628
|
+
],
|
|
4629
|
+
"seeded": false,
|
|
4630
|
+
"telemetry": [],
|
|
4631
|
+
"latency": {
|
|
4632
|
+
"kind": "zero"
|
|
4633
|
+
},
|
|
4634
|
+
"assets": []
|
|
4635
|
+
},
|
|
4636
|
+
{
|
|
4637
|
+
"type": "FrequencyShifter",
|
|
4638
|
+
"parameters": [
|
|
4639
|
+
{
|
|
4640
|
+
"name": "mode",
|
|
4641
|
+
"type": "string",
|
|
4642
|
+
"count": 1,
|
|
4643
|
+
"default": "Shift",
|
|
4644
|
+
"values": [
|
|
4645
|
+
"Shift",
|
|
4646
|
+
"Ring Mod",
|
|
4647
|
+
"Barber-pole"
|
|
4648
|
+
]
|
|
4649
|
+
},
|
|
4650
|
+
{
|
|
4651
|
+
"name": "shift",
|
|
4652
|
+
"type": "number",
|
|
4653
|
+
"count": 1,
|
|
4654
|
+
"default": 8,
|
|
4655
|
+
"unit": "Hz",
|
|
4656
|
+
"minimum": -5000,
|
|
4657
|
+
"maximum": 5000
|
|
4658
|
+
},
|
|
4659
|
+
{
|
|
4660
|
+
"name": "carrierFrequency",
|
|
4661
|
+
"type": "number",
|
|
4662
|
+
"count": 1,
|
|
4663
|
+
"default": 440,
|
|
4664
|
+
"unit": "Hz",
|
|
4665
|
+
"minimum": 0.1,
|
|
4666
|
+
"maximum": 10000
|
|
4667
|
+
},
|
|
4668
|
+
{
|
|
4669
|
+
"name": "minimumShift",
|
|
4670
|
+
"type": "number",
|
|
4671
|
+
"count": 1,
|
|
4672
|
+
"default": 20,
|
|
4673
|
+
"unit": "Hz",
|
|
4674
|
+
"minimum": 0,
|
|
4675
|
+
"maximum": 5000
|
|
4676
|
+
},
|
|
4677
|
+
{
|
|
4678
|
+
"name": "maximumShift",
|
|
4679
|
+
"type": "number",
|
|
4680
|
+
"count": 1,
|
|
4681
|
+
"default": 800,
|
|
4682
|
+
"unit": "Hz",
|
|
4683
|
+
"minimum": 0,
|
|
4684
|
+
"maximum": 5000
|
|
4685
|
+
},
|
|
4686
|
+
{
|
|
4687
|
+
"name": "rate",
|
|
4688
|
+
"type": "number",
|
|
4689
|
+
"count": 1,
|
|
4690
|
+
"default": 0.15,
|
|
4691
|
+
"unit": "Hz",
|
|
4692
|
+
"minimum": 0.01,
|
|
4693
|
+
"maximum": 2
|
|
4694
|
+
},
|
|
4695
|
+
{
|
|
4696
|
+
"name": "direction",
|
|
4697
|
+
"type": "string",
|
|
4698
|
+
"count": 1,
|
|
4699
|
+
"default": "Up",
|
|
4700
|
+
"values": [
|
|
4701
|
+
"Up",
|
|
4702
|
+
"Down"
|
|
4703
|
+
]
|
|
4704
|
+
},
|
|
4705
|
+
{
|
|
4706
|
+
"name": "stereoPhase",
|
|
4707
|
+
"type": "number",
|
|
4708
|
+
"count": 1,
|
|
4709
|
+
"default": 0,
|
|
4710
|
+
"unit": "degrees",
|
|
4711
|
+
"minimum": 0,
|
|
4712
|
+
"maximum": 180
|
|
4713
|
+
},
|
|
4714
|
+
{
|
|
4715
|
+
"name": "mix",
|
|
4716
|
+
"type": "number",
|
|
4717
|
+
"count": 1,
|
|
4718
|
+
"default": 100,
|
|
4719
|
+
"unit": "%",
|
|
4720
|
+
"minimum": 0,
|
|
4721
|
+
"maximum": 100
|
|
4722
|
+
}
|
|
4723
|
+
],
|
|
4724
|
+
"seeded": false,
|
|
4725
|
+
"telemetry": [],
|
|
4726
|
+
"latency": {
|
|
4727
|
+
"kind": "sampleRateDependent",
|
|
4728
|
+
"dependsOn": [
|
|
4729
|
+
"sampleRate"
|
|
4730
|
+
]
|
|
4731
|
+
},
|
|
4732
|
+
"assets": []
|
|
4733
|
+
},
|
|
4734
|
+
{
|
|
4735
|
+
"type": "Phaser",
|
|
4736
|
+
"parameters": [
|
|
4737
|
+
{
|
|
4738
|
+
"name": "mode",
|
|
4739
|
+
"type": "string",
|
|
4740
|
+
"count": 1,
|
|
4741
|
+
"default": "Classic",
|
|
4742
|
+
"values": [
|
|
4743
|
+
"Classic",
|
|
4744
|
+
"Barber-pole"
|
|
4745
|
+
]
|
|
4746
|
+
},
|
|
4747
|
+
{
|
|
4748
|
+
"name": "rate",
|
|
4749
|
+
"type": "number",
|
|
4750
|
+
"count": 1,
|
|
4751
|
+
"default": 0.5,
|
|
4752
|
+
"unit": "Hz",
|
|
4753
|
+
"minimum": 0.05,
|
|
4754
|
+
"maximum": 10
|
|
4755
|
+
},
|
|
4756
|
+
{
|
|
4757
|
+
"name": "centerFrequency",
|
|
4758
|
+
"type": "number",
|
|
4759
|
+
"count": 1,
|
|
4760
|
+
"default": 1000,
|
|
4761
|
+
"unit": "Hz",
|
|
4762
|
+
"minimum": 80,
|
|
4763
|
+
"maximum": 8000
|
|
4764
|
+
},
|
|
4765
|
+
{
|
|
4766
|
+
"name": "range",
|
|
4767
|
+
"type": "number",
|
|
4768
|
+
"count": 1,
|
|
4769
|
+
"default": 3,
|
|
4770
|
+
"unit": "octaves",
|
|
4771
|
+
"minimum": 0,
|
|
4772
|
+
"maximum": 6
|
|
4773
|
+
},
|
|
4774
|
+
{
|
|
4775
|
+
"name": "stages",
|
|
4776
|
+
"type": "integer",
|
|
4777
|
+
"count": 1,
|
|
4778
|
+
"default": 6,
|
|
4779
|
+
"values": [
|
|
4780
|
+
2,
|
|
4781
|
+
4,
|
|
4782
|
+
6,
|
|
4783
|
+
8,
|
|
4784
|
+
10,
|
|
4785
|
+
12
|
|
4786
|
+
]
|
|
4787
|
+
},
|
|
4788
|
+
{
|
|
4789
|
+
"name": "feedback",
|
|
4790
|
+
"type": "number",
|
|
4791
|
+
"count": 1,
|
|
4792
|
+
"default": 20,
|
|
4793
|
+
"unit": "%",
|
|
4794
|
+
"minimum": -90,
|
|
4795
|
+
"maximum": 90
|
|
4796
|
+
},
|
|
4797
|
+
{
|
|
4798
|
+
"name": "stereoPhase",
|
|
4799
|
+
"type": "number",
|
|
4800
|
+
"count": 1,
|
|
4801
|
+
"default": 90,
|
|
4802
|
+
"unit": "degrees",
|
|
4803
|
+
"minimum": 0,
|
|
4804
|
+
"maximum": 180
|
|
4805
|
+
},
|
|
4806
|
+
{
|
|
4807
|
+
"name": "direction",
|
|
4808
|
+
"type": "string",
|
|
4809
|
+
"count": 1,
|
|
4810
|
+
"default": "Up",
|
|
4811
|
+
"values": [
|
|
4812
|
+
"Up",
|
|
4813
|
+
"Down"
|
|
4814
|
+
]
|
|
4815
|
+
},
|
|
4816
|
+
{
|
|
4817
|
+
"name": "mix",
|
|
4818
|
+
"type": "number",
|
|
4819
|
+
"count": 1,
|
|
4820
|
+
"default": 50,
|
|
4821
|
+
"unit": "%",
|
|
4822
|
+
"minimum": 0,
|
|
4823
|
+
"maximum": 100
|
|
4824
|
+
}
|
|
4825
|
+
],
|
|
4826
|
+
"seeded": false,
|
|
4827
|
+
"telemetry": [],
|
|
4828
|
+
"latency": {
|
|
4829
|
+
"kind": "zero"
|
|
4830
|
+
},
|
|
4831
|
+
"assets": []
|
|
4832
|
+
},
|
|
4833
|
+
{
|
|
4834
|
+
"type": "PitchShifter",
|
|
4835
|
+
"parameters": [
|
|
4836
|
+
{
|
|
4837
|
+
"name": "pitchShift",
|
|
4838
|
+
"type": "integer",
|
|
4839
|
+
"count": 1,
|
|
4840
|
+
"default": 0,
|
|
4841
|
+
"unit": "semitones",
|
|
4842
|
+
"minimum": -6,
|
|
4843
|
+
"maximum": 6
|
|
4844
|
+
},
|
|
4845
|
+
{
|
|
4846
|
+
"name": "fineTune",
|
|
4847
|
+
"type": "integer",
|
|
4848
|
+
"count": 1,
|
|
4849
|
+
"default": 0,
|
|
4850
|
+
"unit": "cents",
|
|
4851
|
+
"minimum": -50,
|
|
4852
|
+
"maximum": 50
|
|
4853
|
+
},
|
|
4854
|
+
{
|
|
4855
|
+
"name": "windowSize",
|
|
4856
|
+
"type": "integer",
|
|
4857
|
+
"count": 1,
|
|
4858
|
+
"default": 150,
|
|
4859
|
+
"unit": "ms",
|
|
4860
|
+
"minimum": 80,
|
|
4861
|
+
"maximum": 500
|
|
4862
|
+
},
|
|
4863
|
+
{
|
|
4864
|
+
"name": "crossfadeTime",
|
|
4865
|
+
"type": "number",
|
|
4866
|
+
"count": 1,
|
|
4867
|
+
"default": 35,
|
|
4868
|
+
"unit": "ms",
|
|
4869
|
+
"minimum": 20,
|
|
4870
|
+
"maximum": 40
|
|
4871
|
+
}
|
|
4872
|
+
],
|
|
4873
|
+
"seeded": false,
|
|
4874
|
+
"telemetry": [],
|
|
4875
|
+
"latency": {
|
|
4876
|
+
"kind": "zero"
|
|
4877
|
+
},
|
|
4878
|
+
"assets": []
|
|
4879
|
+
},
|
|
4880
|
+
{
|
|
4881
|
+
"type": "RotarySpeaker",
|
|
4882
|
+
"parameters": [
|
|
4883
|
+
{
|
|
4884
|
+
"name": "speedState",
|
|
4885
|
+
"type": "string",
|
|
4886
|
+
"count": 1,
|
|
4887
|
+
"default": "Slow",
|
|
4888
|
+
"values": [
|
|
4889
|
+
"Stop",
|
|
4890
|
+
"Slow",
|
|
4891
|
+
"Fast"
|
|
4892
|
+
]
|
|
4893
|
+
},
|
|
4894
|
+
{
|
|
4895
|
+
"name": "speed",
|
|
4896
|
+
"type": "number",
|
|
4897
|
+
"count": 1,
|
|
4898
|
+
"default": 100,
|
|
4899
|
+
"unit": "%",
|
|
4900
|
+
"minimum": 25,
|
|
4901
|
+
"maximum": 200
|
|
4902
|
+
},
|
|
4903
|
+
{
|
|
4904
|
+
"name": "acceleration",
|
|
4905
|
+
"type": "number",
|
|
4906
|
+
"count": 1,
|
|
4907
|
+
"default": 2.2,
|
|
4908
|
+
"unit": "s",
|
|
4909
|
+
"minimum": 0.1,
|
|
4910
|
+
"maximum": 10
|
|
4911
|
+
},
|
|
4912
|
+
{
|
|
4913
|
+
"name": "crossover",
|
|
4914
|
+
"type": "number",
|
|
4915
|
+
"count": 1,
|
|
4916
|
+
"default": 800,
|
|
4917
|
+
"unit": "Hz",
|
|
4918
|
+
"minimum": 200,
|
|
4919
|
+
"maximum": 2000
|
|
4920
|
+
},
|
|
4921
|
+
{
|
|
4922
|
+
"name": "rotorBalance",
|
|
4923
|
+
"type": "number",
|
|
4924
|
+
"count": 1,
|
|
4925
|
+
"default": 0,
|
|
4926
|
+
"unit": "%",
|
|
4927
|
+
"minimum": -100,
|
|
4928
|
+
"maximum": 100
|
|
4929
|
+
},
|
|
4930
|
+
{
|
|
4931
|
+
"name": "stereoWidth",
|
|
4932
|
+
"type": "number",
|
|
4933
|
+
"count": 1,
|
|
4934
|
+
"default": 75,
|
|
4935
|
+
"unit": "%",
|
|
4936
|
+
"minimum": 0,
|
|
4937
|
+
"maximum": 100
|
|
4938
|
+
},
|
|
4939
|
+
{
|
|
4940
|
+
"name": "dopplerDepth",
|
|
4941
|
+
"type": "number",
|
|
4942
|
+
"count": 1,
|
|
4943
|
+
"default": 45,
|
|
4944
|
+
"unit": "%",
|
|
4945
|
+
"minimum": 0,
|
|
4946
|
+
"maximum": 100
|
|
4947
|
+
},
|
|
4948
|
+
{
|
|
4949
|
+
"name": "amplitudeDepth",
|
|
4950
|
+
"type": "number",
|
|
4951
|
+
"count": 1,
|
|
4952
|
+
"default": 55,
|
|
4953
|
+
"unit": "%",
|
|
4954
|
+
"minimum": 0,
|
|
4955
|
+
"maximum": 100
|
|
4956
|
+
},
|
|
4957
|
+
{
|
|
4958
|
+
"name": "mix",
|
|
4959
|
+
"type": "number",
|
|
4960
|
+
"count": 1,
|
|
4961
|
+
"default": 70,
|
|
4962
|
+
"unit": "%",
|
|
4963
|
+
"minimum": 0,
|
|
4964
|
+
"maximum": 100
|
|
4965
|
+
}
|
|
4966
|
+
],
|
|
4967
|
+
"seeded": false,
|
|
4968
|
+
"telemetry": [],
|
|
4969
|
+
"latency": {
|
|
4970
|
+
"kind": "zero"
|
|
4971
|
+
},
|
|
4972
|
+
"assets": []
|
|
4973
|
+
},
|
|
4974
|
+
{
|
|
4975
|
+
"type": "Tremolo",
|
|
4976
|
+
"parameters": [
|
|
4977
|
+
{
|
|
4978
|
+
"name": "rate",
|
|
4979
|
+
"type": "number",
|
|
4980
|
+
"count": 1,
|
|
4981
|
+
"default": 10,
|
|
4982
|
+
"unit": "Hz",
|
|
4983
|
+
"minimum": 0.1,
|
|
4984
|
+
"maximum": 50
|
|
4985
|
+
},
|
|
4986
|
+
{
|
|
4987
|
+
"name": "depth",
|
|
4988
|
+
"type": "number",
|
|
4989
|
+
"count": 1,
|
|
4990
|
+
"default": 2,
|
|
4991
|
+
"unit": "dB",
|
|
4992
|
+
"minimum": 0,
|
|
4993
|
+
"maximum": 12
|
|
4994
|
+
},
|
|
4995
|
+
{
|
|
4996
|
+
"name": "randomness",
|
|
4997
|
+
"type": "number",
|
|
4998
|
+
"count": 1,
|
|
4999
|
+
"default": 6,
|
|
5000
|
+
"unit": "dB",
|
|
5001
|
+
"minimum": 0,
|
|
5002
|
+
"maximum": 96
|
|
5003
|
+
},
|
|
5004
|
+
{
|
|
5005
|
+
"name": "randomnessCutoff",
|
|
5006
|
+
"type": "number",
|
|
5007
|
+
"count": 1,
|
|
5008
|
+
"default": 200,
|
|
5009
|
+
"unit": "Hz",
|
|
5010
|
+
"minimum": 1,
|
|
5011
|
+
"maximum": 1000
|
|
5012
|
+
},
|
|
5013
|
+
{
|
|
5014
|
+
"name": "randomnessSlope",
|
|
5015
|
+
"type": "number",
|
|
5016
|
+
"count": 1,
|
|
5017
|
+
"default": -6,
|
|
5018
|
+
"unit": "dB",
|
|
5019
|
+
"minimum": -12,
|
|
5020
|
+
"maximum": 0
|
|
5021
|
+
},
|
|
5022
|
+
{
|
|
5023
|
+
"name": "channelPhase",
|
|
5024
|
+
"type": "number",
|
|
5025
|
+
"count": 1,
|
|
5026
|
+
"default": 0,
|
|
5027
|
+
"unit": "degrees",
|
|
5028
|
+
"minimum": -180,
|
|
5029
|
+
"maximum": 180
|
|
5030
|
+
},
|
|
5031
|
+
{
|
|
5032
|
+
"name": "channelSync",
|
|
5033
|
+
"type": "number",
|
|
5034
|
+
"count": 1,
|
|
5035
|
+
"default": 100,
|
|
5036
|
+
"unit": "%",
|
|
5037
|
+
"minimum": 0,
|
|
5038
|
+
"maximum": 100
|
|
5039
|
+
}
|
|
5040
|
+
],
|
|
5041
|
+
"seeded": true,
|
|
5042
|
+
"telemetry": [],
|
|
5043
|
+
"latency": {
|
|
5044
|
+
"kind": "zero"
|
|
5045
|
+
},
|
|
5046
|
+
"assets": []
|
|
5047
|
+
},
|
|
5048
|
+
{
|
|
5049
|
+
"type": "WowFlutter",
|
|
5050
|
+
"parameters": [
|
|
5051
|
+
{
|
|
5052
|
+
"name": "rate",
|
|
5053
|
+
"type": "number",
|
|
3936
5054
|
"count": 1,
|
|
3937
5055
|
"default": 0.5,
|
|
3938
5056
|
"unit": "Hz",
|
|
@@ -4631,6 +5749,12 @@
|
|
|
4631
5749
|
"minimum": -96,
|
|
4632
5750
|
"maximum": 12
|
|
4633
5751
|
},
|
|
5752
|
+
{
|
|
5753
|
+
"name": "dryEnabled",
|
|
5754
|
+
"type": "boolean",
|
|
5755
|
+
"count": 1,
|
|
5756
|
+
"default": true
|
|
5757
|
+
},
|
|
4634
5758
|
{
|
|
4635
5759
|
"name": "dryLevel",
|
|
4636
5760
|
"type": "number",
|
|
@@ -5072,124 +6196,375 @@
|
|
|
5072
6196
|
"type": "Saturation",
|
|
5073
6197
|
"parameters": [
|
|
5074
6198
|
{
|
|
5075
|
-
"name": "drive",
|
|
5076
|
-
"type": "number",
|
|
6199
|
+
"name": "drive",
|
|
6200
|
+
"type": "number",
|
|
6201
|
+
"count": 1,
|
|
6202
|
+
"default": 1.5,
|
|
6203
|
+
"minimum": 0,
|
|
6204
|
+
"maximum": 10
|
|
6205
|
+
},
|
|
6206
|
+
{
|
|
6207
|
+
"name": "bias",
|
|
6208
|
+
"type": "number",
|
|
6209
|
+
"count": 1,
|
|
6210
|
+
"default": 0.1,
|
|
6211
|
+
"minimum": -0.3,
|
|
6212
|
+
"maximum": 0.3
|
|
6213
|
+
},
|
|
6214
|
+
{
|
|
6215
|
+
"name": "mix",
|
|
6216
|
+
"type": "number",
|
|
6217
|
+
"count": 1,
|
|
6218
|
+
"default": 100,
|
|
6219
|
+
"unit": "%",
|
|
6220
|
+
"minimum": 0,
|
|
6221
|
+
"maximum": 100
|
|
6222
|
+
},
|
|
6223
|
+
{
|
|
6224
|
+
"name": "gain",
|
|
6225
|
+
"type": "number",
|
|
6226
|
+
"count": 1,
|
|
6227
|
+
"default": -2,
|
|
6228
|
+
"unit": "dB",
|
|
6229
|
+
"minimum": -18,
|
|
6230
|
+
"maximum": 18
|
|
6231
|
+
}
|
|
6232
|
+
],
|
|
6233
|
+
"seeded": false,
|
|
6234
|
+
"telemetry": [],
|
|
6235
|
+
"latency": {
|
|
6236
|
+
"kind": "zero"
|
|
6237
|
+
},
|
|
6238
|
+
"assets": []
|
|
6239
|
+
},
|
|
6240
|
+
{
|
|
6241
|
+
"type": "SubSynth",
|
|
6242
|
+
"parameters": [
|
|
6243
|
+
{
|
|
6244
|
+
"name": "subLevel",
|
|
6245
|
+
"type": "number",
|
|
6246
|
+
"count": 1,
|
|
6247
|
+
"default": 100,
|
|
6248
|
+
"unit": "%",
|
|
6249
|
+
"minimum": 0,
|
|
6250
|
+
"maximum": 200
|
|
6251
|
+
},
|
|
6252
|
+
{
|
|
6253
|
+
"name": "dryLevel",
|
|
6254
|
+
"type": "number",
|
|
6255
|
+
"count": 1,
|
|
6256
|
+
"default": 100,
|
|
6257
|
+
"unit": "%",
|
|
6258
|
+
"minimum": 0,
|
|
6259
|
+
"maximum": 200
|
|
6260
|
+
},
|
|
6261
|
+
{
|
|
6262
|
+
"name": "subLowPassFrequency",
|
|
6263
|
+
"type": "number",
|
|
6264
|
+
"count": 1,
|
|
6265
|
+
"default": 160,
|
|
6266
|
+
"unit": "Hz",
|
|
6267
|
+
"minimum": 5,
|
|
6268
|
+
"maximum": 400
|
|
6269
|
+
},
|
|
6270
|
+
{
|
|
6271
|
+
"name": "subLowPassSlope",
|
|
6272
|
+
"type": "integer",
|
|
6273
|
+
"count": 1,
|
|
6274
|
+
"default": -12,
|
|
6275
|
+
"unit": "dB/oct",
|
|
6276
|
+
"minimum": -24,
|
|
6277
|
+
"maximum": 0
|
|
6278
|
+
},
|
|
6279
|
+
{
|
|
6280
|
+
"name": "subHighPassFrequency",
|
|
6281
|
+
"type": "number",
|
|
6282
|
+
"count": 1,
|
|
6283
|
+
"default": 5,
|
|
6284
|
+
"unit": "Hz",
|
|
6285
|
+
"minimum": 5,
|
|
6286
|
+
"maximum": 400
|
|
6287
|
+
},
|
|
6288
|
+
{
|
|
6289
|
+
"name": "subHighPassSlope",
|
|
6290
|
+
"type": "integer",
|
|
6291
|
+
"count": 1,
|
|
6292
|
+
"default": -6,
|
|
6293
|
+
"unit": "dB/oct",
|
|
6294
|
+
"minimum": -24,
|
|
6295
|
+
"maximum": 0
|
|
6296
|
+
},
|
|
6297
|
+
{
|
|
6298
|
+
"name": "dryHighPassFrequency",
|
|
6299
|
+
"type": "number",
|
|
6300
|
+
"count": 1,
|
|
6301
|
+
"default": 40,
|
|
6302
|
+
"unit": "Hz",
|
|
6303
|
+
"minimum": 5,
|
|
6304
|
+
"maximum": 400
|
|
6305
|
+
},
|
|
6306
|
+
{
|
|
6307
|
+
"name": "dryHighPassSlope",
|
|
6308
|
+
"type": "integer",
|
|
6309
|
+
"count": 1,
|
|
6310
|
+
"default": 0,
|
|
6311
|
+
"unit": "dB/oct",
|
|
6312
|
+
"minimum": -24,
|
|
6313
|
+
"maximum": 0
|
|
6314
|
+
}
|
|
6315
|
+
],
|
|
6316
|
+
"seeded": false,
|
|
6317
|
+
"telemetry": [],
|
|
6318
|
+
"latency": {
|
|
6319
|
+
"kind": "zero"
|
|
6320
|
+
},
|
|
6321
|
+
"assets": []
|
|
6322
|
+
},
|
|
6323
|
+
{
|
|
6324
|
+
"type": "TubeSimulator",
|
|
6325
|
+
"parameters": [
|
|
6326
|
+
{
|
|
6327
|
+
"name": "inputVolume",
|
|
6328
|
+
"type": "number",
|
|
6329
|
+
"count": 1,
|
|
6330
|
+
"default": -44.0059,
|
|
6331
|
+
"unit": "dB",
|
|
6332
|
+
"minimum": -96,
|
|
6333
|
+
"maximum": 0
|
|
6334
|
+
},
|
|
6335
|
+
{
|
|
6336
|
+
"name": "tube",
|
|
6337
|
+
"type": "string",
|
|
6338
|
+
"count": 1,
|
|
6339
|
+
"default": "12AX7",
|
|
6340
|
+
"values": [
|
|
6341
|
+
"12AX7",
|
|
6342
|
+
"12AT7",
|
|
6343
|
+
"12AU7",
|
|
6344
|
+
"Bypass"
|
|
6345
|
+
]
|
|
6346
|
+
},
|
|
6347
|
+
{
|
|
6348
|
+
"name": "bias",
|
|
6349
|
+
"type": "number",
|
|
6350
|
+
"count": 1,
|
|
6351
|
+
"default": 0,
|
|
6352
|
+
"unit": "%",
|
|
6353
|
+
"minimum": -50,
|
|
6354
|
+
"maximum": 50
|
|
6355
|
+
},
|
|
6356
|
+
{
|
|
6357
|
+
"name": "plateVoltage",
|
|
6358
|
+
"type": "number",
|
|
6359
|
+
"count": 1,
|
|
6360
|
+
"default": 250,
|
|
6361
|
+
"unit": "V",
|
|
6362
|
+
"minimum": 150,
|
|
6363
|
+
"maximum": 300
|
|
6364
|
+
},
|
|
6365
|
+
{
|
|
6366
|
+
"name": "sourceImpedance",
|
|
6367
|
+
"type": "number",
|
|
6368
|
+
"count": 1,
|
|
6369
|
+
"default": 10,
|
|
6370
|
+
"unit": "kOhm",
|
|
6371
|
+
"minimum": 0.6,
|
|
6372
|
+
"maximum": 100
|
|
6373
|
+
},
|
|
6374
|
+
{
|
|
6375
|
+
"name": "supplyImpedance",
|
|
6376
|
+
"type": "number",
|
|
6377
|
+
"count": 1,
|
|
6378
|
+
"default": 10,
|
|
6379
|
+
"unit": "kOhm",
|
|
6380
|
+
"minimum": 0.1,
|
|
6381
|
+
"maximum": 47
|
|
6382
|
+
},
|
|
6383
|
+
{
|
|
6384
|
+
"name": "outputTrim",
|
|
6385
|
+
"type": "number",
|
|
6386
|
+
"count": 1,
|
|
6387
|
+
"default": -7.372,
|
|
6388
|
+
"unit": "dB",
|
|
6389
|
+
"minimum": -48,
|
|
6390
|
+
"maximum": 48
|
|
6391
|
+
},
|
|
6392
|
+
{
|
|
6393
|
+
"name": "mix",
|
|
6394
|
+
"type": "number",
|
|
6395
|
+
"count": 1,
|
|
6396
|
+
"default": 100,
|
|
6397
|
+
"unit": "%",
|
|
6398
|
+
"minimum": 0,
|
|
6399
|
+
"maximum": 100
|
|
6400
|
+
},
|
|
6401
|
+
{
|
|
6402
|
+
"name": "inputReference",
|
|
6403
|
+
"type": "number",
|
|
6404
|
+
"count": 1,
|
|
6405
|
+
"default": 2.828,
|
|
6406
|
+
"unit": "Vpk",
|
|
6407
|
+
"minimum": 0.1,
|
|
6408
|
+
"maximum": 300
|
|
6409
|
+
},
|
|
6410
|
+
{
|
|
6411
|
+
"name": "negativeFeedback",
|
|
6412
|
+
"type": "number",
|
|
6413
|
+
"count": 1,
|
|
6414
|
+
"default": 3,
|
|
6415
|
+
"unit": "dB",
|
|
6416
|
+
"minimum": 0,
|
|
6417
|
+
"maximum": 30
|
|
6418
|
+
},
|
|
6419
|
+
{
|
|
6420
|
+
"name": "outputStage",
|
|
6421
|
+
"type": "string",
|
|
6422
|
+
"count": 1,
|
|
6423
|
+
"default": "Power",
|
|
6424
|
+
"values": [
|
|
6425
|
+
"Line",
|
|
6426
|
+
"Power",
|
|
6427
|
+
"SingleEnded"
|
|
6428
|
+
]
|
|
6429
|
+
},
|
|
6430
|
+
{
|
|
6431
|
+
"name": "powerTube",
|
|
6432
|
+
"type": "string",
|
|
5077
6433
|
"count": 1,
|
|
5078
|
-
"default":
|
|
5079
|
-
"
|
|
5080
|
-
|
|
6434
|
+
"default": "EL84",
|
|
6435
|
+
"values": [
|
|
6436
|
+
"EL84",
|
|
6437
|
+
"EL34",
|
|
6438
|
+
"6L6GC",
|
|
6439
|
+
"KT88"
|
|
6440
|
+
]
|
|
5081
6441
|
},
|
|
5082
6442
|
{
|
|
5083
|
-
"name": "
|
|
6443
|
+
"name": "powerBPlus",
|
|
5084
6444
|
"type": "number",
|
|
5085
6445
|
"count": 1,
|
|
5086
|
-
"default":
|
|
5087
|
-
"
|
|
5088
|
-
"
|
|
6446
|
+
"default": 329.696,
|
|
6447
|
+
"unit": "V",
|
|
6448
|
+
"minimum": 300,
|
|
6449
|
+
"maximum": 470
|
|
5089
6450
|
},
|
|
5090
6451
|
{
|
|
5091
|
-
"name": "
|
|
6452
|
+
"name": "cathodeResistor",
|
|
5092
6453
|
"type": "number",
|
|
5093
6454
|
"count": 1,
|
|
5094
|
-
"default":
|
|
5095
|
-
"unit": "
|
|
5096
|
-
"minimum":
|
|
5097
|
-
"maximum":
|
|
6455
|
+
"default": 270,
|
|
6456
|
+
"unit": "Ohm",
|
|
6457
|
+
"minimum": 270,
|
|
6458
|
+
"maximum": 500
|
|
5098
6459
|
},
|
|
5099
6460
|
{
|
|
5100
|
-
"name": "
|
|
5101
|
-
"type": "
|
|
6461
|
+
"name": "screenTap",
|
|
6462
|
+
"type": "string",
|
|
5102
6463
|
"count": 1,
|
|
5103
|
-
"default":
|
|
5104
|
-
"
|
|
5105
|
-
|
|
5106
|
-
|
|
5107
|
-
|
|
5108
|
-
|
|
5109
|
-
|
|
5110
|
-
"telemetry": [],
|
|
5111
|
-
"latency": {
|
|
5112
|
-
"kind": "zero"
|
|
5113
|
-
},
|
|
5114
|
-
"assets": []
|
|
5115
|
-
},
|
|
5116
|
-
{
|
|
5117
|
-
"type": "SubSynth",
|
|
5118
|
-
"parameters": [
|
|
6464
|
+
"default": "0",
|
|
6465
|
+
"values": [
|
|
6466
|
+
"0",
|
|
6467
|
+
"20",
|
|
6468
|
+
"43"
|
|
6469
|
+
]
|
|
6470
|
+
},
|
|
5119
6471
|
{
|
|
5120
|
-
"name": "
|
|
5121
|
-
"type": "
|
|
6472
|
+
"name": "primaryImpedance",
|
|
6473
|
+
"type": "string",
|
|
5122
6474
|
"count": 1,
|
|
5123
|
-
"default":
|
|
5124
|
-
"
|
|
5125
|
-
|
|
5126
|
-
|
|
6475
|
+
"default": "8.0",
|
|
6476
|
+
"values": [
|
|
6477
|
+
"6.0",
|
|
6478
|
+
"6.6",
|
|
6479
|
+
"8.0"
|
|
6480
|
+
]
|
|
5127
6481
|
},
|
|
5128
6482
|
{
|
|
5129
|
-
"name": "
|
|
5130
|
-
"type": "
|
|
6483
|
+
"name": "speakerLoad",
|
|
6484
|
+
"type": "string",
|
|
5131
6485
|
"count": 1,
|
|
5132
|
-
"default":
|
|
5133
|
-
"
|
|
5134
|
-
|
|
5135
|
-
|
|
6486
|
+
"default": "15",
|
|
6487
|
+
"values": [
|
|
6488
|
+
"4",
|
|
6489
|
+
"8",
|
|
6490
|
+
"15",
|
|
6491
|
+
"16"
|
|
6492
|
+
]
|
|
5136
6493
|
},
|
|
5137
6494
|
{
|
|
5138
|
-
"name": "
|
|
6495
|
+
"name": "actualSpeakerLoad",
|
|
5139
6496
|
"type": "number",
|
|
5140
6497
|
"count": 1,
|
|
5141
|
-
"default":
|
|
5142
|
-
"unit": "
|
|
5143
|
-
"minimum":
|
|
5144
|
-
"maximum":
|
|
6498
|
+
"default": 15,
|
|
6499
|
+
"unit": "Ohm",
|
|
6500
|
+
"minimum": 2,
|
|
6501
|
+
"maximum": 32
|
|
5145
6502
|
},
|
|
5146
6503
|
{
|
|
5147
|
-
"name": "
|
|
5148
|
-
"type": "
|
|
6504
|
+
"name": "safetyTrim",
|
|
6505
|
+
"type": "number",
|
|
5149
6506
|
"count": 1,
|
|
5150
|
-
"default":
|
|
5151
|
-
"unit": "dB
|
|
5152
|
-
"minimum": -
|
|
6507
|
+
"default": 0,
|
|
6508
|
+
"unit": "dB",
|
|
6509
|
+
"minimum": -96,
|
|
5153
6510
|
"maximum": 0
|
|
5154
6511
|
},
|
|
5155
6512
|
{
|
|
5156
|
-
"name": "
|
|
5157
|
-
"type": "
|
|
6513
|
+
"name": "autoGainReduction",
|
|
6514
|
+
"type": "boolean",
|
|
5158
6515
|
"count": 1,
|
|
5159
|
-
"default":
|
|
5160
|
-
"unit": "Hz",
|
|
5161
|
-
"minimum": 5,
|
|
5162
|
-
"maximum": 400
|
|
6516
|
+
"default": true
|
|
5163
6517
|
},
|
|
5164
6518
|
{
|
|
5165
|
-
"name": "
|
|
5166
|
-
"type": "
|
|
6519
|
+
"name": "seTube",
|
|
6520
|
+
"type": "string",
|
|
5167
6521
|
"count": 1,
|
|
5168
|
-
"default":
|
|
5169
|
-
"
|
|
5170
|
-
|
|
5171
|
-
|
|
6522
|
+
"default": "300B",
|
|
6523
|
+
"values": [
|
|
6524
|
+
"300B",
|
|
6525
|
+
"2A3"
|
|
6526
|
+
]
|
|
5172
6527
|
},
|
|
5173
6528
|
{
|
|
5174
|
-
"name": "
|
|
6529
|
+
"name": "seBPlus",
|
|
5175
6530
|
"type": "number",
|
|
5176
6531
|
"count": 1,
|
|
5177
|
-
"default":
|
|
5178
|
-
"unit": "
|
|
5179
|
-
"minimum":
|
|
5180
|
-
"maximum":
|
|
6532
|
+
"default": 400,
|
|
6533
|
+
"unit": "V",
|
|
6534
|
+
"minimum": 250,
|
|
6535
|
+
"maximum": 450
|
|
5181
6536
|
},
|
|
5182
6537
|
{
|
|
5183
|
-
"name": "
|
|
5184
|
-
"type": "
|
|
6538
|
+
"name": "seCathodeResistor",
|
|
6539
|
+
"type": "number",
|
|
5185
6540
|
"count": 1,
|
|
5186
|
-
"default":
|
|
5187
|
-
"unit": "
|
|
5188
|
-
"minimum":
|
|
5189
|
-
"maximum":
|
|
6541
|
+
"default": 1000,
|
|
6542
|
+
"unit": "Ohm",
|
|
6543
|
+
"minimum": 700,
|
|
6544
|
+
"maximum": 1300
|
|
6545
|
+
},
|
|
6546
|
+
{
|
|
6547
|
+
"name": "sePrimaryImpedance",
|
|
6548
|
+
"type": "string",
|
|
6549
|
+
"count": 1,
|
|
6550
|
+
"default": "3.5",
|
|
6551
|
+
"values": [
|
|
6552
|
+
"2.5",
|
|
6553
|
+
"3.5",
|
|
6554
|
+
"5.0"
|
|
6555
|
+
]
|
|
5190
6556
|
}
|
|
5191
6557
|
],
|
|
5192
6558
|
"seeded": false,
|
|
6559
|
+
"sampleRates": [
|
|
6560
|
+
44100,
|
|
6561
|
+
48000,
|
|
6562
|
+
88200,
|
|
6563
|
+
96000,
|
|
6564
|
+
176400,
|
|
6565
|
+
192000
|
|
6566
|
+
],
|
|
6567
|
+
"effectiveDelaySamples": 64,
|
|
5193
6568
|
"telemetry": [],
|
|
5194
6569
|
"latency": {
|
|
5195
6570
|
"kind": "zero"
|
|
@@ -5341,6 +6716,167 @@
|
|
|
5341
6716
|
},
|
|
5342
6717
|
"assets": []
|
|
5343
6718
|
},
|
|
6719
|
+
{
|
|
6720
|
+
"type": "PhaseSelectEQ",
|
|
6721
|
+
"parameters": [
|
|
6722
|
+
{
|
|
6723
|
+
"name": "regionEnabled",
|
|
6724
|
+
"type": "boolean",
|
|
6725
|
+
"count": 5,
|
|
6726
|
+
"default": [
|
|
6727
|
+
true,
|
|
6728
|
+
false,
|
|
6729
|
+
false,
|
|
6730
|
+
false,
|
|
6731
|
+
false
|
|
6732
|
+
]
|
|
6733
|
+
},
|
|
6734
|
+
{
|
|
6735
|
+
"name": "outerFrequencyLow",
|
|
6736
|
+
"type": "number",
|
|
6737
|
+
"count": 5,
|
|
6738
|
+
"default": [
|
|
6739
|
+
80,
|
|
6740
|
+
80,
|
|
6741
|
+
80,
|
|
6742
|
+
80,
|
|
6743
|
+
80
|
|
6744
|
+
],
|
|
6745
|
+
"unit": "Hz",
|
|
6746
|
+
"minimum": 20,
|
|
6747
|
+
"maximum": 40000
|
|
6748
|
+
},
|
|
6749
|
+
{
|
|
6750
|
+
"name": "coreFrequencyLow",
|
|
6751
|
+
"type": "number",
|
|
6752
|
+
"count": 5,
|
|
6753
|
+
"default": [
|
|
6754
|
+
100,
|
|
6755
|
+
100,
|
|
6756
|
+
100,
|
|
6757
|
+
100,
|
|
6758
|
+
100
|
|
6759
|
+
],
|
|
6760
|
+
"unit": "Hz",
|
|
6761
|
+
"minimum": 20,
|
|
6762
|
+
"maximum": 40000
|
|
6763
|
+
},
|
|
6764
|
+
{
|
|
6765
|
+
"name": "coreFrequencyHigh",
|
|
6766
|
+
"type": "number",
|
|
6767
|
+
"count": 5,
|
|
6768
|
+
"default": [
|
|
6769
|
+
10000,
|
|
6770
|
+
10000,
|
|
6771
|
+
10000,
|
|
6772
|
+
10000,
|
|
6773
|
+
10000
|
|
6774
|
+
],
|
|
6775
|
+
"unit": "Hz",
|
|
6776
|
+
"minimum": 20,
|
|
6777
|
+
"maximum": 40000
|
|
6778
|
+
},
|
|
6779
|
+
{
|
|
6780
|
+
"name": "outerFrequencyHigh",
|
|
6781
|
+
"type": "number",
|
|
6782
|
+
"count": 5,
|
|
6783
|
+
"default": [
|
|
6784
|
+
12000,
|
|
6785
|
+
12000,
|
|
6786
|
+
12000,
|
|
6787
|
+
12000,
|
|
6788
|
+
12000
|
|
6789
|
+
],
|
|
6790
|
+
"unit": "Hz",
|
|
6791
|
+
"minimum": 20,
|
|
6792
|
+
"maximum": 40000
|
|
6793
|
+
},
|
|
6794
|
+
{
|
|
6795
|
+
"name": "outerPhaseLow",
|
|
6796
|
+
"type": "number",
|
|
6797
|
+
"count": 5,
|
|
6798
|
+
"default": [
|
|
6799
|
+
0,
|
|
6800
|
+
0,
|
|
6801
|
+
0,
|
|
6802
|
+
0,
|
|
6803
|
+
0
|
|
6804
|
+
],
|
|
6805
|
+
"unit": "degree",
|
|
6806
|
+
"minimum": 0,
|
|
6807
|
+
"maximum": 180
|
|
6808
|
+
},
|
|
6809
|
+
{
|
|
6810
|
+
"name": "corePhaseLow",
|
|
6811
|
+
"type": "number",
|
|
6812
|
+
"count": 5,
|
|
6813
|
+
"default": [
|
|
6814
|
+
0,
|
|
6815
|
+
0,
|
|
6816
|
+
0,
|
|
6817
|
+
0,
|
|
6818
|
+
0
|
|
6819
|
+
],
|
|
6820
|
+
"unit": "degree",
|
|
6821
|
+
"minimum": 0,
|
|
6822
|
+
"maximum": 180
|
|
6823
|
+
},
|
|
6824
|
+
{
|
|
6825
|
+
"name": "corePhaseHigh",
|
|
6826
|
+
"type": "number",
|
|
6827
|
+
"count": 5,
|
|
6828
|
+
"default": [
|
|
6829
|
+
30,
|
|
6830
|
+
30,
|
|
6831
|
+
30,
|
|
6832
|
+
30,
|
|
6833
|
+
30
|
|
6834
|
+
],
|
|
6835
|
+
"unit": "degree",
|
|
6836
|
+
"minimum": 0,
|
|
6837
|
+
"maximum": 180
|
|
6838
|
+
},
|
|
6839
|
+
{
|
|
6840
|
+
"name": "outerPhaseHigh",
|
|
6841
|
+
"type": "number",
|
|
6842
|
+
"count": 5,
|
|
6843
|
+
"default": [
|
|
6844
|
+
45,
|
|
6845
|
+
45,
|
|
6846
|
+
45,
|
|
6847
|
+
45,
|
|
6848
|
+
45
|
|
6849
|
+
],
|
|
6850
|
+
"unit": "degree",
|
|
6851
|
+
"minimum": 0,
|
|
6852
|
+
"maximum": 180
|
|
6853
|
+
},
|
|
6854
|
+
{
|
|
6855
|
+
"name": "gain",
|
|
6856
|
+
"type": "number",
|
|
6857
|
+
"count": 5,
|
|
6858
|
+
"default": [
|
|
6859
|
+
100,
|
|
6860
|
+
100,
|
|
6861
|
+
100,
|
|
6862
|
+
100,
|
|
6863
|
+
100
|
|
6864
|
+
],
|
|
6865
|
+
"unit": "%",
|
|
6866
|
+
"minimum": 0,
|
|
6867
|
+
"maximum": 200
|
|
6868
|
+
}
|
|
6869
|
+
],
|
|
6870
|
+
"seeded": false,
|
|
6871
|
+
"telemetry": [],
|
|
6872
|
+
"latency": {
|
|
6873
|
+
"kind": "sampleRateDependent",
|
|
6874
|
+
"dependsOn": [
|
|
6875
|
+
"sampleRate"
|
|
6876
|
+
]
|
|
6877
|
+
},
|
|
6878
|
+
"assets": []
|
|
6879
|
+
},
|
|
5344
6880
|
{
|
|
5345
6881
|
"type": "StereoBlend",
|
|
5346
6882
|
"parameters": [
|
|
@@ -5363,7 +6899,7 @@
|
|
|
5363
6899
|
}
|
|
5364
6900
|
],
|
|
5365
6901
|
"contractDigests": {
|
|
5366
|
-
"publicCatalogSha256": "
|
|
5367
|
-
"privateLayoutSha256": "
|
|
6902
|
+
"publicCatalogSha256": "1f7621279e4fd1cae842bda2498e76f8afbdd2c05990b246732947b520818d62",
|
|
6903
|
+
"privateLayoutSha256": "e63194ca2bd43f224ade8e5b387a89f68678c9e8c838f4a8faca600a61521c84"
|
|
5368
6904
|
}
|
|
5369
6905
|
}
|