ToobAmp v1.1.62 aarch64
This commit is contained in:
@@ -0,0 +1,165 @@
|
||||
@prefix doap: <http://usefulinc.com/ns/doap#> .
|
||||
@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
|
||||
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
||||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
||||
@prefix units: <http://lv2plug.in/ns/extensions/units#> .
|
||||
@prefix urid: <http://lv2plug.in/ns/ext/urid#> .
|
||||
@prefix atom: <http://lv2plug.in/ns/ext/atom#> .
|
||||
@prefix midi: <http://lv2plug.in/ns/ext/midi#> .
|
||||
@prefix epp: <http://lv2plug.in/ns/ext/port-props#> .
|
||||
@prefix uiext: <http://lv2plug.in/ns/extensions/ui#> .
|
||||
@prefix idpy: <http://harrisonconsoles.com/lv2/inlinedisplay#> .
|
||||
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
|
||||
@prefix mod: <http://moddevices.com/ns/mod#> .
|
||||
@prefix param: <http://lv2plug.in/ns/ext/parameters#> .
|
||||
@prefix work: <http://lv2plug.in/ns/ext/worker#> .
|
||||
@prefix pg: <http://lv2plug.in/ns/ext/port-groups#> .
|
||||
|
||||
@prefix atom: <http://lv2plug.in/ns/ext/atom#> .
|
||||
@prefix patch: <http://lv2plug.in/ns/ext/patch#> .
|
||||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
||||
@prefix state: <http://lv2plug.in/ns/ext/state#> .
|
||||
@prefix urid: <http://lv2plug.in/ns/ext/urid#> .
|
||||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
|
||||
@prefix toobGraphicEq: <http://two-play.com/plugins/toob-graphiceq#> .
|
||||
@prefix pipedal_ui: <http://github.com/rerdavies/pipedal/ui#> .
|
||||
|
||||
|
||||
<http://two-play.com/rerdavies#me>
|
||||
a foaf:Person ;
|
||||
foaf:name "Robin Davies" ;
|
||||
foaf:mbox <mailto:rerdavies@gmail.com> ;
|
||||
foaf:homepage <https://github.com/sponsors/rerdavies> .
|
||||
|
||||
<http://two-play.com/plugins/toob-graphiceq>
|
||||
a lv2:Plugin ,
|
||||
lv2:EQPlugin ;
|
||||
doap:name "TooB GE-7 Graphic Eq" ,
|
||||
"TooB GE-7 Graphic Eq"@en-gb-gb
|
||||
;
|
||||
uiext:ui <http://two-play.com/plugins/toob-graphiceq-ui> ;
|
||||
doap:license <https://rerdavies.github.io/pipedal/LicenseToobAmp> ;
|
||||
doap:maintainer <http://two-play.com/rerdavies#me> ;
|
||||
lv2:minorVersion 0 ;
|
||||
lv2:microVersion 62 ;
|
||||
rdfs:comment """
|
||||
A 7 octave graphic equalizer, with frequencies chosen to be useful for EQ-ing guitar signals.
|
||||
""" ;
|
||||
|
||||
mod:brand "TooB";
|
||||
mod:label "GE-7 Graphic Eq";
|
||||
lv2:optionalFeature lv2:hardRTCapable;
|
||||
|
||||
lv2:port [
|
||||
a lv2:AudioPort ,
|
||||
lv2:InputPort ;
|
||||
lv2:index 0 ;
|
||||
lv2:symbol "in_left" ;
|
||||
lv2:name "In L"
|
||||
] , [
|
||||
a lv2:AudioPort ,
|
||||
lv2:OutputPort ;
|
||||
lv2:index 1 ;
|
||||
lv2:symbol "out_left" ;
|
||||
lv2:name "Out L"
|
||||
] , [
|
||||
a lv2:ControlPort ,
|
||||
lv2:InputPort ;
|
||||
lv2:index 2 ;
|
||||
lv2:symbol "gain_100hz" ;
|
||||
lv2:name "100" ;
|
||||
lv2:default 0.0 ;
|
||||
lv2:minimum -15.0 ;
|
||||
lv2:maximum 15.0 ;
|
||||
units:unit units:db ;
|
||||
lv2:portProperty pipedal_ui:graphicEq;
|
||||
] , [
|
||||
a lv2:ControlPort ,
|
||||
lv2:InputPort ;
|
||||
lv2:index 3 ;
|
||||
lv2:symbol "gain_200hz" ;
|
||||
lv2:name "200" ;
|
||||
lv2:default 0.0 ;
|
||||
lv2:minimum -15.0 ;
|
||||
lv2:maximum 15.0 ;
|
||||
units:unit units:db ;
|
||||
lv2:portProperty pipedal_ui:graphicEq;
|
||||
] , [
|
||||
a lv2:ControlPort ,
|
||||
lv2:InputPort ;
|
||||
lv2:index 4 ;
|
||||
lv2:symbol "gain_400hz" ;
|
||||
lv2:name "400" ;
|
||||
lv2:default 0.0 ;
|
||||
lv2:minimum -15.0 ;
|
||||
lv2:maximum 15.0 ;
|
||||
units:unit units:db ;
|
||||
lv2:portProperty pipedal_ui:graphicEq;
|
||||
] , [
|
||||
a lv2:ControlPort ,
|
||||
lv2:InputPort ;
|
||||
lv2:index 5 ;
|
||||
lv2:symbol "gain_800hz" ;
|
||||
lv2:name "800" ;
|
||||
lv2:default 0.0 ;
|
||||
lv2:minimum -15.0 ;
|
||||
lv2:maximum 15.0 ;
|
||||
units:unit units:db ;
|
||||
lv2:portProperty pipedal_ui:graphicEq;
|
||||
] , [
|
||||
a lv2:ControlPort ,
|
||||
lv2:InputPort ;
|
||||
lv2:index 6 ;
|
||||
lv2:symbol "gain_1600hz" ;
|
||||
lv2:name "1.6k" ;
|
||||
lv2:default 0.0 ;
|
||||
lv2:minimum -15.0 ;
|
||||
lv2:maximum 15.0 ;
|
||||
units:unit units:db ;
|
||||
lv2:portProperty pipedal_ui:graphicEq;
|
||||
] , [
|
||||
a lv2:ControlPort ,
|
||||
lv2:InputPort ;
|
||||
lv2:index 7 ;
|
||||
lv2:symbol "gain_3200hz" ;
|
||||
lv2:name "3.2k" ;
|
||||
lv2:default 0.0 ;
|
||||
lv2:minimum -15.0 ;
|
||||
lv2:maximum 15.0 ;
|
||||
units:unit units:db ;
|
||||
lv2:portProperty pipedal_ui:graphicEq;
|
||||
] , [
|
||||
a lv2:ControlPort ,
|
||||
lv2:InputPort ;
|
||||
lv2:index 8 ;
|
||||
lv2:symbol "gain_6400hz" ;
|
||||
lv2:name "6.4k" ;
|
||||
lv2:default 0.0 ;
|
||||
lv2:minimum -15.0 ;
|
||||
lv2:maximum 15.0 ;
|
||||
lv2:portProperty pipedal_ui:graphicEq;
|
||||
units:unit units:db ;
|
||||
], [
|
||||
a lv2:ControlPort ,
|
||||
lv2:InputPort ;
|
||||
lv2:index 9 ;
|
||||
lv2:symbol "level" ;
|
||||
lv2:name "Level" ;
|
||||
lv2:default 0.0 ;
|
||||
lv2:minimum -30.0 ;
|
||||
lv2:maximum 30.0 ;
|
||||
units:unit units:db ;
|
||||
] .
|
||||
|
||||
<http://two-play.com/plugins/toob-graphiceq-ui>
|
||||
a uiext:X11UI ;
|
||||
lv2:binary <ToobAmpUI.so>;
|
||||
|
||||
lv2:extensionData uiext::idle ;
|
||||
lv2:extensionData uiext:resize ;
|
||||
lv2:extensionData uiext:idleInterface;
|
||||
lv2:requiredFeature uiext:idleInterface ;
|
||||
.
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user