fix(bass-presets): move factory presets to channel subdirs + per-channel install
Root cause: factory presets for bass (banks 17-20) sat in the root factory dir alongside guitar presets, and install_factory_presets() used rglob() which picked up ALL presets into the GUITAR channel. Changes: - Move bank_17-20 from presets/factory/ → presets/factory/bass/ (matching the existing keys/, vocals/, backing_tracks/ layout) - Fix install_factory_presets() to scan channel-specific subdirectory: GUITAR scans root bank_* dirs, all others scan <channel>/bank_* - Fix main.py to iterate over all 5 channels when installing factory presets (was only installing into GUITAR) - Import Channel enum in main.py Tests: 56/56 preset manager tests pass. Integration verified: - GUITAR: 68 presets (banks 0-16) - BASS: 16 presets (banks 17-20, SansAmp/Darkglass/Ampeg SVT) - KEYS: 12 presets (banks 21-23) - VOCALS: 12 presets (banks 24-26) - BACKING_TRACKS: 12 presets (banks 27-29)
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"number": 17,
|
||||
"name": "Bass \u2014 Clean & Fingerstyle",
|
||||
"preset_count": 4
|
||||
}
|
||||
@@ -0,0 +1,86 @@
|
||||
{
|
||||
"name": "Flat & Thumpy (Jamerson)",
|
||||
"bank": 17,
|
||||
"program": 0,
|
||||
"master_volume": 0.75,
|
||||
"chain": [
|
||||
{
|
||||
"fx_type": "noise_gate",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"threshold": 0.008
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "compressor",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"threshold": 0.2,
|
||||
"ratio": 4.0,
|
||||
"gain": 0.4
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "nam_amp",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"level": 0.65
|
||||
},
|
||||
"nam_model_path": "/root/.pedal/models/Fender_Twin_Reverb_Clean_A2.nam",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "ir_cab",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"wet": 1.0,
|
||||
"dry": 0.0
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": "/root/.pedal/irs/bass-thick_classic.wav"
|
||||
},
|
||||
{
|
||||
"fx_type": "eq",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"bass": 0.45,
|
||||
"mid": 0.4,
|
||||
"treble": 0.25
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "reverb",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"subtype": "room",
|
||||
"decay": 0.2,
|
||||
"mix": 0.15
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "volume",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"level": 0.78
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
}
|
||||
],
|
||||
"midi_mappings": {}
|
||||
}
|
||||
@@ -0,0 +1,86 @@
|
||||
{
|
||||
"name": "Modern Fingerstyle",
|
||||
"bank": 17,
|
||||
"program": 1,
|
||||
"master_volume": 0.78,
|
||||
"chain": [
|
||||
{
|
||||
"fx_type": "noise_gate",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"threshold": 0.005
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "compressor",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"threshold": 0.25,
|
||||
"ratio": 3.0,
|
||||
"gain": 0.5
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "nam_amp",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"level": 0.7
|
||||
},
|
||||
"nam_model_path": "/root/.pedal/models/Fender_Deluxe_Reverb_A2.nam",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "ir_cab",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"wet": 1.0,
|
||||
"dry": 0.0
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": "/root/.pedal/irs/bass-balanced.wav"
|
||||
},
|
||||
{
|
||||
"fx_type": "eq",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"bass": 0.55,
|
||||
"mid": 0.5,
|
||||
"treble": 0.45
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "reverb",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"subtype": "room",
|
||||
"decay": 0.3,
|
||||
"mix": 0.25
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "volume",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"level": 0.82
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
}
|
||||
],
|
||||
"midi_mappings": {}
|
||||
}
|
||||
@@ -0,0 +1,110 @@
|
||||
{
|
||||
"name": "Jazz Fusion (Marcus Miller)",
|
||||
"bank": 17,
|
||||
"program": 2,
|
||||
"master_volume": 0.8,
|
||||
"chain": [
|
||||
{
|
||||
"fx_type": "noise_gate",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"threshold": 0.005
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "compressor",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"threshold": 0.3,
|
||||
"ratio": 2.5,
|
||||
"gain": 0.4
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "nam_amp",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"level": 0.72
|
||||
},
|
||||
"nam_model_path": "/root/.pedal/models/Fender_Deluxe_Reverb_A2.nam",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "ir_cab",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"wet": 1.0,
|
||||
"dry": 0.0
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": "/root/.pedal/irs/bass-more_mids.wav"
|
||||
},
|
||||
{
|
||||
"fx_type": "eq",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"bass": 0.5,
|
||||
"mid": 0.6,
|
||||
"treble": 0.5
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "overdrive",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"drive": 0.25,
|
||||
"tone": 0.55,
|
||||
"level": 0.6
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "chorus",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"rate": 0.4,
|
||||
"depth": 0.35,
|
||||
"mix": 0.25
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "reverb",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"subtype": "hall",
|
||||
"decay": 0.5,
|
||||
"mix": 0.25
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "volume",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"level": 0.85
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
}
|
||||
],
|
||||
"midi_mappings": {}
|
||||
}
|
||||
@@ -0,0 +1,86 @@
|
||||
{
|
||||
"name": "P-Pick Punch (Duck Dunn)",
|
||||
"bank": 17,
|
||||
"program": 3,
|
||||
"master_volume": 0.76,
|
||||
"chain": [
|
||||
{
|
||||
"fx_type": "noise_gate",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"threshold": 0.006
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "compressor",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"threshold": 0.25,
|
||||
"ratio": 3.5,
|
||||
"gain": 0.45
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "nam_amp",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"level": 0.68
|
||||
},
|
||||
"nam_model_path": "/root/.pedal/models/Fender_Tweed_Dlx_Edge.nam",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "ir_cab",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"wet": 1.0,
|
||||
"dry": 0.0
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": "/root/.pedal/irs/bass-classic.wav"
|
||||
},
|
||||
{
|
||||
"fx_type": "eq",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"bass": 0.5,
|
||||
"mid": 0.65,
|
||||
"treble": 0.4
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "reverb",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"subtype": "spring",
|
||||
"decay": 0.3,
|
||||
"mix": 0.2
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "volume",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"level": 0.8
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
}
|
||||
],
|
||||
"midi_mappings": {}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"number": 18,
|
||||
"name": "Bass \u2014 Driven & Rock",
|
||||
"preset_count": 4
|
||||
}
|
||||
@@ -0,0 +1,98 @@
|
||||
{
|
||||
"name": "Classic Rock Drive (JPJ)",
|
||||
"bank": 18,
|
||||
"program": 0,
|
||||
"master_volume": 0.82,
|
||||
"chain": [
|
||||
{
|
||||
"fx_type": "noise_gate",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"threshold": 0.006
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "compressor",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"threshold": 0.28,
|
||||
"ratio": 3.0,
|
||||
"gain": 0.5
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "nam_amp",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"level": 0.72
|
||||
},
|
||||
"nam_model_path": "/root/.pedal/models/Fender_Princeton_Clone_EOB.nam",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "ir_cab",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"wet": 1.0,
|
||||
"dry": 0.0
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": "/root/.pedal/irs/bass-half_and_half.wav"
|
||||
},
|
||||
{
|
||||
"fx_type": "eq",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"bass": 0.55,
|
||||
"mid": 0.5,
|
||||
"treble": 0.4
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "overdrive",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"drive": 0.3,
|
||||
"tone": 0.5,
|
||||
"level": 0.65
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "reverb",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"subtype": "spring",
|
||||
"decay": 0.3,
|
||||
"mix": 0.2
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "volume",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"level": 0.85
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
}
|
||||
],
|
||||
"midi_mappings": {}
|
||||
}
|
||||
@@ -0,0 +1,86 @@
|
||||
{
|
||||
"name": "Punk Pogo (Fat Mike)",
|
||||
"bank": 18,
|
||||
"program": 1,
|
||||
"master_volume": 0.88,
|
||||
"chain": [
|
||||
{
|
||||
"fx_type": "noise_gate",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"threshold": 0.01
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "compressor",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"threshold": 0.2,
|
||||
"ratio": 4.0,
|
||||
"gain": 0.6
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "nam_amp",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"level": 0.75
|
||||
},
|
||||
"nam_model_path": "/root/.pedal/models/Fender_Twin_Reverb_Clean_A2.nam",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "ir_cab",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"wet": 1.0,
|
||||
"dry": 0.0
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": "/root/.pedal/irs/bass-clanky.wav"
|
||||
},
|
||||
{
|
||||
"fx_type": "eq",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"bass": 0.6,
|
||||
"mid": 0.3,
|
||||
"treble": 0.55
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "overdrive",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"drive": 0.6,
|
||||
"tone": 0.3,
|
||||
"level": 0.75
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "volume",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"level": 0.9
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
}
|
||||
],
|
||||
"midi_mappings": {}
|
||||
}
|
||||
@@ -0,0 +1,98 @@
|
||||
{
|
||||
"name": "Grunge Grind (Krist Novoselic)",
|
||||
"bank": 18,
|
||||
"program": 2,
|
||||
"master_volume": 0.85,
|
||||
"chain": [
|
||||
{
|
||||
"fx_type": "noise_gate",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"threshold": 0.008
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "compressor",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"threshold": 0.3,
|
||||
"ratio": 2.5,
|
||||
"gain": 0.5
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "nam_amp",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"level": 0.78
|
||||
},
|
||||
"nam_model_path": "/root/.pedal/models/Fender_Tweed_Dlx_Edge.nam",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "ir_cab",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"wet": 1.0,
|
||||
"dry": 0.0
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": "/root/.pedal/irs/bass-rumble_bass.wav"
|
||||
},
|
||||
{
|
||||
"fx_type": "eq",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"bass": 0.55,
|
||||
"mid": 0.45,
|
||||
"treble": 0.45
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "distortion",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"drive": 0.5,
|
||||
"tone": 0.4,
|
||||
"level": 0.7
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "chorus",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"rate": 0.5,
|
||||
"depth": 0.4,
|
||||
"mix": 0.3
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "volume",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"level": 0.88
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
}
|
||||
],
|
||||
"midi_mappings": {}
|
||||
}
|
||||
@@ -0,0 +1,111 @@
|
||||
{
|
||||
"name": "Alternative Edge (Justin Chancellor)",
|
||||
"bank": 18,
|
||||
"program": 3,
|
||||
"master_volume": 0.83,
|
||||
"chain": [
|
||||
{
|
||||
"fx_type": "noise_gate",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"threshold": 0.005
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "compressor",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"threshold": 0.25,
|
||||
"ratio": 3.0,
|
||||
"gain": 0.55
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "nam_amp",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"level": 0.7
|
||||
},
|
||||
"nam_model_path": "/root/.pedal/models/Roland_JC-120_A2.nam",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "ir_cab",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"wet": 1.0,
|
||||
"dry": 0.0
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": "/root/.pedal/irs/bass-more_mids.wav"
|
||||
},
|
||||
{
|
||||
"fx_type": "eq",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"bass": 0.5,
|
||||
"mid": 0.6,
|
||||
"treble": 0.35
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "distortion",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"drive": 0.45,
|
||||
"tone": 0.55,
|
||||
"level": 0.7
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "phaser",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"rate": 0.3,
|
||||
"depth": 0.35,
|
||||
"feedback": 0.25
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "delay",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"subtype": "analog",
|
||||
"feedback": 0.25,
|
||||
"mix": 0.2,
|
||||
"time_ms": 350
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "volume",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"level": 0.86
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
}
|
||||
],
|
||||
"midi_mappings": {}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"number": 19,
|
||||
"name": "Bass \u2014 Modern & Metal",
|
||||
"preset_count": 4
|
||||
}
|
||||
@@ -0,0 +1,96 @@
|
||||
{
|
||||
"name": "Modern Metal (Darkglass B3K)",
|
||||
"bank": 19,
|
||||
"program": 0,
|
||||
"master_volume": 0.85,
|
||||
"chain": [
|
||||
{
|
||||
"fx_type": "noise_gate",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"threshold": 0.008
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "compressor",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"threshold": 0.15,
|
||||
"ratio": 4.5,
|
||||
"gain": 0.6
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "nam_amp",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"level": 0.7
|
||||
},
|
||||
"nam_model_path": "/root/.pedal/models/Fender_Twin_Reverb_Clean_A2.nam",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "ir_cab",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"wet": 1.0,
|
||||
"dry": 0.0
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": "/root/.pedal/irs/bass-clanky.wav"
|
||||
},
|
||||
{
|
||||
"fx_type": "eq",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"bass": 0.5,
|
||||
"mid": 0.6,
|
||||
"treble": 0.4
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "distortion",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"drive": 0.55,
|
||||
"tone": 0.5,
|
||||
"level": 0.75
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "noise_gate",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"threshold": 0.04
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "volume",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"level": 0.88
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
}
|
||||
],
|
||||
"midi_mappings": {}
|
||||
}
|
||||
@@ -0,0 +1,96 @@
|
||||
{
|
||||
"name": "Djent Bass (Darkglass AO)",
|
||||
"bank": 19,
|
||||
"program": 1,
|
||||
"master_volume": 0.83,
|
||||
"chain": [
|
||||
{
|
||||
"fx_type": "noise_gate",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"threshold": 0.008
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "compressor",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"threshold": 0.18,
|
||||
"ratio": 4.0,
|
||||
"gain": 0.55
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "nam_amp",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"level": 0.68
|
||||
},
|
||||
"nam_model_path": "/root/.pedal/models/Fender_Twin_Reverb_Clean_A2.nam",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "ir_cab",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"wet": 1.0,
|
||||
"dry": 0.0
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": "/root/.pedal/irs/bass-half_and_half.wav"
|
||||
},
|
||||
{
|
||||
"fx_type": "eq",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"bass": 0.4,
|
||||
"mid": 0.55,
|
||||
"treble": 0.3
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "distortion",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"drive": 0.5,
|
||||
"tone": 0.35,
|
||||
"level": 0.7
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "noise_gate",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"threshold": 0.05
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "volume",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"level": 0.85
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
}
|
||||
],
|
||||
"midi_mappings": {}
|
||||
}
|
||||
@@ -0,0 +1,111 @@
|
||||
{
|
||||
"name": "Thrash Attack (Cliff Burton)",
|
||||
"bank": 19,
|
||||
"program": 2,
|
||||
"master_volume": 0.88,
|
||||
"chain": [
|
||||
{
|
||||
"fx_type": "noise_gate",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"threshold": 0.006
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "compressor",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"threshold": 0.2,
|
||||
"ratio": 3.5,
|
||||
"gain": 0.5
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "nam_amp",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"level": 0.78
|
||||
},
|
||||
"nam_model_path": "/root/.pedal/models/JCM2000_Crunch.nam",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "ir_cab",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"wet": 1.0,
|
||||
"dry": 0.0
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": "/root/.pedal/irs/bass-rumble_bass.wav"
|
||||
},
|
||||
{
|
||||
"fx_type": "eq",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"bass": 0.6,
|
||||
"mid": 0.5,
|
||||
"treble": 0.5
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "distortion",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"drive": 0.65,
|
||||
"tone": 0.45,
|
||||
"level": 0.8
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "auto_wah",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"sensitivity": 0.3,
|
||||
"resonance": 0.4,
|
||||
"min_frequency": 0.2,
|
||||
"max_frequency": 0.7
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "reverb",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"subtype": "hall",
|
||||
"decay": 0.5,
|
||||
"mix": 0.2
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "volume",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"level": 0.9
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
}
|
||||
],
|
||||
"midi_mappings": {}
|
||||
}
|
||||
@@ -0,0 +1,98 @@
|
||||
{
|
||||
"name": "Nu-Metal Growl (Fieldy / Tim C)",
|
||||
"bank": 19,
|
||||
"program": 3,
|
||||
"master_volume": 0.86,
|
||||
"chain": [
|
||||
{
|
||||
"fx_type": "noise_gate",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"threshold": 0.008
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "compressor",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"threshold": 0.2,
|
||||
"ratio": 4.0,
|
||||
"gain": 0.6
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "nam_amp",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"level": 0.7
|
||||
},
|
||||
"nam_model_path": "/root/.pedal/models/Fender_Deluxe_Reverb_A2.nam",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "ir_cab",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"wet": 1.0,
|
||||
"dry": 0.0
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": "/root/.pedal/irs/bass-thick_classic.wav"
|
||||
},
|
||||
{
|
||||
"fx_type": "eq",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"bass": 0.7,
|
||||
"mid": 0.35,
|
||||
"treble": 0.4
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "distortion",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"drive": 0.6,
|
||||
"tone": 0.3,
|
||||
"level": 0.8
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "overdrive",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"drive": 0.3,
|
||||
"tone": 0.25,
|
||||
"level": 0.6
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "volume",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"level": 0.88
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
}
|
||||
],
|
||||
"midi_mappings": {}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"number": 20,
|
||||
"name": "Bass \u2014 FX & Specialty",
|
||||
"preset_count": 4
|
||||
}
|
||||
@@ -0,0 +1,98 @@
|
||||
{
|
||||
"name": "Envelope Filter (Les Claypool)",
|
||||
"bank": 20,
|
||||
"program": 0,
|
||||
"master_volume": 0.82,
|
||||
"chain": [
|
||||
{
|
||||
"fx_type": "noise_gate",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"threshold": 0.004
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "compressor",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"threshold": 0.3,
|
||||
"ratio": 2.5,
|
||||
"gain": 0.4
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "nam_amp",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"level": 0.7
|
||||
},
|
||||
"nam_model_path": "/root/.pedal/models/Fender_Twin_Reverb_Clean_A2.nam",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "ir_cab",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"wet": 1.0,
|
||||
"dry": 0.0
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": "/root/.pedal/irs/bass-balanced.wav"
|
||||
},
|
||||
{
|
||||
"fx_type": "eq",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"bass": 0.5,
|
||||
"mid": 0.5,
|
||||
"treble": 0.45
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "envelope_filter",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"sensitivity": 0.6,
|
||||
"frequency": 0.5,
|
||||
"resonance": 0.6
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "distortion",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"drive": 0.3,
|
||||
"tone": 0.5,
|
||||
"level": 0.65
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "volume",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"level": 0.85
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
}
|
||||
],
|
||||
"midi_mappings": {}
|
||||
}
|
||||
@@ -0,0 +1,111 @@
|
||||
{
|
||||
"name": "Chorus Bass (Geddy Lee)",
|
||||
"bank": 20,
|
||||
"program": 1,
|
||||
"master_volume": 0.8,
|
||||
"chain": [
|
||||
{
|
||||
"fx_type": "noise_gate",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"threshold": 0.005
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "compressor",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"threshold": 0.25,
|
||||
"ratio": 3.0,
|
||||
"gain": 0.45
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "nam_amp",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"level": 0.72
|
||||
},
|
||||
"nam_model_path": "/root/.pedal/models/Fender_TwinVerb_Clean.nam",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "ir_cab",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"wet": 1.0,
|
||||
"dry": 0.0
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": "/root/.pedal/irs/bass-more_mids.wav"
|
||||
},
|
||||
{
|
||||
"fx_type": "eq",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"bass": 0.5,
|
||||
"mid": 0.6,
|
||||
"treble": 0.45
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "overdrive",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"drive": 0.2,
|
||||
"tone": 0.5,
|
||||
"level": 0.6
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "chorus",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"rate": 0.45,
|
||||
"depth": 0.45,
|
||||
"mix": 0.35
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "delay",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"subtype": "digital",
|
||||
"feedback": 0.2,
|
||||
"mix": 0.2,
|
||||
"time_ms": 380
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "volume",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"level": 0.84
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
}
|
||||
],
|
||||
"midi_mappings": {}
|
||||
}
|
||||
@@ -0,0 +1,98 @@
|
||||
{
|
||||
"name": "Octave Down (Royal Blood)",
|
||||
"bank": 20,
|
||||
"program": 2,
|
||||
"master_volume": 0.88,
|
||||
"chain": [
|
||||
{
|
||||
"fx_type": "noise_gate",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"threshold": 0.008
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "compressor",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"threshold": 0.2,
|
||||
"ratio": 4.0,
|
||||
"gain": 0.6
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "octaver",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"mix": 0.5,
|
||||
"octave_down": 0.8,
|
||||
"octave_up": 0.0
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "nam_amp",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"level": 0.72
|
||||
},
|
||||
"nam_model_path": "/root/.pedal/models/Fender_Twin_Reverb_Clean_A2.nam",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "ir_cab",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"wet": 1.0,
|
||||
"dry": 0.0
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": "/root/.pedal/irs/bass-use_on_sub_track.wav"
|
||||
},
|
||||
{
|
||||
"fx_type": "eq",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"bass": 0.55,
|
||||
"mid": 0.5,
|
||||
"treble": 0.35
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "fuzz",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"drive": 0.75,
|
||||
"tone": 0.4,
|
||||
"level": 0.8
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "volume",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"level": 0.9
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
}
|
||||
],
|
||||
"midi_mappings": {}
|
||||
}
|
||||
@@ -0,0 +1,98 @@
|
||||
{
|
||||
"name": "Solo Lead (Flea)",
|
||||
"bank": 20,
|
||||
"program": 3,
|
||||
"master_volume": 0.84,
|
||||
"chain": [
|
||||
{
|
||||
"fx_type": "noise_gate",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"threshold": 0.004
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "compressor",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"threshold": 0.2,
|
||||
"ratio": 3.5,
|
||||
"gain": 0.55
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "nam_amp",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"level": 0.75
|
||||
},
|
||||
"nam_model_path": "/root/.pedal/models/Fender_Deluxe_Reverb_A2.nam",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "ir_cab",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"wet": 1.0,
|
||||
"dry": 0.0
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": "/root/.pedal/irs/bass-more_mids.wav"
|
||||
},
|
||||
{
|
||||
"fx_type": "eq",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"bass": 0.45,
|
||||
"mid": 0.7,
|
||||
"treble": 0.55
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "overdrive",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"drive": 0.35,
|
||||
"tone": 0.55,
|
||||
"level": 0.7
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "reverb",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"subtype": "hall",
|
||||
"decay": 0.4,
|
||||
"mix": 0.2
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
},
|
||||
{
|
||||
"fx_type": "volume",
|
||||
"enabled": true,
|
||||
"bypass": false,
|
||||
"params": {
|
||||
"level": 0.88
|
||||
},
|
||||
"nam_model_path": "",
|
||||
"ir_file_path": ""
|
||||
}
|
||||
],
|
||||
"midi_mappings": {}
|
||||
}
|
||||
Reference in New Issue
Block a user