-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparams.json
More file actions
93 lines (93 loc) · 2.75 KB
/
params.json
File metadata and controls
93 lines (93 loc) · 2.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"effect_chain_order": [
"analog_saturation",
"harmonic_enhancer",
"parametric_eq",
"spectral_gate", // Added spectral_gate to the chain
"linear_phase_eq",
"ms_separator",
"exciter",
"gloss_enhancer",
"stereo_enhancer",
"multiband_compressor",
"mastering_limiter"
],
"analog_saturation": {
"enabled": true,
"drive": 2.5,
"mix": 0.6,
"type": "tube",
"description": "Warm tube-like saturation"
},
"harmonic_enhancer": {
"enabled": true,
"drive": 0.4,
"even_harmonics": 0.4,
"odd_harmonics": 0.15,
"mix": 0.8,
"description": "Add warmth with even harmonics"
},
"parametric_eq": {
"enabled": true,
"bands": [
{ "type": "hpf", "freq": 30.0, "q": 0.7, "gain_db": 0 },
{ "type": "peaking", "freq": 150.0, "q": 0.9, "gain_db": -1.0 },
{ "type": "peaking", "freq": 800.0, "q": 1.5, "gain_db": 0.5 },
{ "type": "peaking", "freq": 3500.0, "q": 2.0, "gain_db": 1.5 },
{ "type": "highshelf", "freq": 8000.0, "q": 0.7, "gain_db": 1.0 },
{ "type": "lpf", "freq": 18000.0, "q": 0.7, "gain_db": 0 }
]
},
"linear_phase_eq": {
"enabled": false,
"fft_size": 2048,
"bands": [
{ "type": "peaking", "freq": 500.0, "q": 1.0, "gain_db": -2.0 }
]
},
"ms_separator": {
"enabled": true,
"vocal_enhance": 0.2,
"instrument_enhance": 0.15,
"stereo_width": 1.08
},
"exciter": {
"enabled": true,
"crossover_freq": 7800,
"drive": 2.8,
"mix": 0.18,
"even_drive": 0.5
},
"gloss_enhancer": {
"enabled": true,
"harmonic_drive": 0.35, "even_harmonics": 0.28, "odd_harmonics": 0.18,
"presence_gain": 1.3, "air_gain": 1.0, "warmth_gain": 0.7,
"total_mix": 0.22
},
"stereo_enhancer": {
"enabled": true,
"width": 1.15,
"bass_mono_freq": 150.0
},
"multiband_compressor": {
"enabled": true,
"bands": [
{ "freq_low": 20.0, "freq_high": 250.0, "threshold_db": -12.0, "ratio": 1.8, "attack_ms": 15.0, "release_ms": 80.0, "makeup_gain_db": 1.0, "enabled": true },
{ "freq_low": 250.0, "freq_high": 2500.0, "threshold_db": -10.0, "ratio": 2.5, "attack_ms": 8.0, "release_ms": 120.0, "makeup_gain_db": 0.5, "enabled": true },
{ "freq_low": 2500.0, "freq_high": 20000.0, "threshold_db": -15.0, "ratio": 3.0, "attack_ms": 5.0, "release_ms": 150.0, "makeup_gain_db": 1.5, "enabled": true }
]
},
"spectral_gate": { // Added spectral_gate configuration
"enabled": true,
"threshold_db": -50.0, // Default threshold for noise reduction
"attack_ms": 3.0,
"release_ms": 100.0
},
"mastering_limiter": {
"enabled": true,
"threshold_db": -0.2,
"attack_ms": 1.5,
"release_ms": 40.0,
"lookahead_ms": 5.0
}
}