Skip to content

Commit

Permalink
Impulse response plugin works
Browse files Browse the repository at this point in the history
new: Tangamp plugin
  • Loading branch information
Shaji Khan committed Feb 12, 2025
1 parent 494906c commit ced3241
Show file tree
Hide file tree
Showing 20 changed files with 465 additions and 13 deletions.
55 changes: 55 additions & 0 deletions app/src/main/assets/amps.json
Original file line number Diff line number Diff line change
Expand Up @@ -754,5 +754,60 @@
"Single ended EL84",
"Single ended 6V6"
]
},
"TamgAmp": {
"2": [
"none",
"12AT7 preamp",
"12AT7 feed",
"12AT7 + master 6V6",
"12AT7 + push/pull 6V6",
"12AU7 preamp",
"12AU7 feed",
"12AU7 + master 6V6",
"12AU7 + push/pull 6V6",
"12AX7 preamp",
"12AX7 feed",
"12AX7 + master 6V6",
"12AX7 + push/pull 6V6",
"6C16 preamp",
"6DJ8 preamp",
"6DJ8 feed",
"6DJ8 + master 6V6",
"6DJ8 + push/pull 6V6",
"Master 6V6"
],
"3": [
"none",
"default",
"VOX AC-15",
"VOX AC-30 59/86",
"Ampeg VL 501",
"Ampeg Reverbrocket",
"Fender 59 Bassman 5F6-A",
"Bogner Triple Giant Preamp",
"Hughes&Kettner",
"Engl",
"Fender Blues Junior",
"Fender default",
"Fender Hot Rod",
"Fender 64 Princeton AA1164",
"Fender 69 Twin Reverb AA270",
"Gibsen GS 12 Reverbrocket",
"Trio Preamp",
"Ibanez GX 20",
"Marshall JCM 2000",
"Marshall JCM 800",
"Marshall JTM 45",
"Marshall 2199 30W",
"Marshall 67 Major Lead 200",
"Mesa/Boogie Mark",
"Peavey C20",
"Roland Cube 60",
"Soldano SLO 100",
"Sovtek MIG 100 H",
"Mesa/Boogie Rectifier Solo",
"Mesa/Boogie VTwin"
]
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -74,5 +74,17 @@
"index": 6,
"name": "NOTIFY",
"symbol": "NOTIFY"
},
"7": {
"InputPort": true,
"ControlPort": true,
"default": "0.0",
"index": 7,
"maximum": "1.0",
"minimum": "0.0",
"name": "Normalize",
"portProperty": "http://lv2plug.in/ns/lv2core#toggled",
"symbol": "Normalize",
"toggle": true
}
}
66 changes: 65 additions & 1 deletion app/src/main/assets/lv2/libXTinyTerror.lv2.so/_tinyterror_.json
Original file line number Diff line number Diff line change
@@ -1 +1,65 @@
{"-1": {"http://xmlns.com/foaf/0.1/Person": true, "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://guitarix.sourceforge.net", "http://xmlns.com/foaf/0.1/mbox": "mailto:[email protected]", "http://xmlns.com/foaf/0.1/name": "Guitarix team", "pluginName": "X_tinyterror_"}, "0": {"AudioPort": true, "OutputPort": true, "index": 0, "name": "Out", "symbol": "out"}, "1": {"AudioPort": true, "InputPort": true, "index": 1, "name": "In", "symbol": "in"}, "2": {"InputPort": true, "ControlPort": true, "default": "1.0", "designation": "http://lv2plug.in/ns/lv2core#enabled", "index": 2, "maximum": "1.0", "minimum": "0.0", "name": "BYPASS", "portProperty": "http://lv2plug.in/ns/lv2core#toggled", "symbol": "BYPASS"}, "3": {"InputPort": true, "ControlPort": true, "default": "0.5", "index": 3, "maximum": "1.0", "minimum": "0.0", "name": "GAIN1", "symbol": "GAIN1"}, "4": {"InputPort": true, "ControlPort": true, "default": "0.5", "index": 4, "maximum": "1.0", "minimum": "0.0", "name": "TONE", "symbol": "TONE"}, "5": {"InputPort": true, "ControlPort": true, "default": "0.5", "index": 5, "maximum": "1.0", "minimum": "0.0", "name": "VOLUME", "symbol": "VOLUME"}}
{
"-1": {
"http://xmlns.com/foaf/0.1/Person": true,
"http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://guitarix.sourceforge.net",
"http://xmlns.com/foaf/0.1/mbox": "mailto:[email protected]",
"http://xmlns.com/foaf/0.1/name": "Guitarix team",
"pluginName": "X_tinyterror_"
},
"0": {
"AudioPort": true,
"OutputPort": true,
"index": 0,
"name": "Out",
"symbol": "out"
},
"1": {
"AudioPort": true,
"InputPort": true,
"index": 1,
"name": "In",
"symbol": "in"
},
"2": {
"InputPort": true,
"ControlPort": true,
"default": "1.0",
"designation": "http://lv2plug.in/ns/lv2core#enabled",
"index": 2,
"maximum": "1.0",
"minimum": "0.0",
"name": "BYPASS",
"portProperty": "http://lv2plug.in/ns/lv2core#toggled",
"symbol": "BYPASS"
},
"3": {
"InputPort": true,
"ControlPort": true,
"default": "0.5",
"index": 3,
"maximum": "1.0",
"minimum": "0.0",
"name": "GAIN1",
"symbol": "GAIN1"
},
"4": {
"InputPort": true,
"ControlPort": true,
"default": "0.5",
"index": 4,
"maximum": "1.0",
"minimum": "0.0",
"name": "TONE",
"symbol": "TONE"
},
"5": {
"InputPort": true,
"ControlPort": true,
"default": "0.5",
"index": 5,
"maximum": "1.0",
"minimum": "0.0",
"name": "VOLUME",
"symbol": "VOLUME"
}
}
113 changes: 113 additions & 0 deletions app/src/main/assets/lv2/libtamgamp.so/tamgamp_gx.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,113 @@
{
"-1": {
"pluginName": "TamgAmp",
"index": 1
},
"0": {
"AudioPort": true,
"OutputPort": true,
"index": 1,
"name": "Out",
"symbol": "out"
},
"1": {
"AudioPort": true,
"InputPort": true,
"index": 0,
"name": "In",
"symbol": "in"
},
"2": {
"InputPort": true,
"ControlPort": true,
"default": "1.0",
"designation": "http://lv2plug.in/ns/lv2core#enabled",
"index": 2,
"maximum": "1.0",
"minimum": "0.0",
"toggle": true,
"name": "Enable",
"portProperty": "http://lv2plug.in/ns/lv2core#toggled",
"symbol": "BYPASS"
},
"3": {
"InputPort": true,
"ControlPort": true,
"default": "0",
"index": 3,
"maximum": "18",
"minimum": "0.0",
"name": "Amplifier Chain",
"symbol": "preamp"
},
"4": {
"InputPort": true,
"ControlPort": true,
"default": "0",
"index": 4,
"maximum": "29",
"minimum": "0.0",
"name": "Tone Stack",
"symbol": "TONE"
},
"5": {
"InputPort": true,
"ControlPort": true,
"default": "1",
"index": 5,
"maximum": "48",
"minimum": "-72",
"name": "Input Level Correction",
"symbol": "VOLUME"
},
"6": {
"InputPort": true,
"ControlPort": true,
"default": "50",
"index": 6,
"maximum": "100",
"minimum": "1",
"name": "Gain",
"symbol": "VOLUME"
},
"7": {
"InputPort": true,
"ControlPort": true,
"default": "50",
"index": 7,
"maximum": "100",
"minimum": "1",
"name": "Bass",
"symbol": "VOLUME"
},
"8": {
"InputPort": true,
"ControlPort": true,
"default": "50",
"index": 8,
"maximum": "100",
"minimum": "1",
"name": "Middle",
"symbol": "VOLUME"
},
"9": {
"InputPort": true,
"ControlPort": true,
"default": "50",
"index": 6,
"maximum": "100",
"minimum": "1",
"name": "Treble",
"symbol": "VOLUME"
},
"10": {
"InputPort": true,
"ControlPort": true,
"default": "1",
"index": 10,
"maximum": "48",
"minimum": "-72",
"name": "Output Level Correction",
"symbol": "VOLUME"
}
}
Loading

0 comments on commit ced3241

Please sign in to comment.