383 lines
11 KiB
Turtle
383 lines
11 KiB
Turtle
@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 pipedal_ui: <http://github.com/rerdavies/pipedal/ui#> .
|
|
@prefix pipedal_patch: <http://github.com/rerdavies/pipedal/patch#> .
|
|
|
|
@prefix toob: <http://two-play.com/plugins/toob#> .
|
|
|
|
@prefix parametric_eq: <two-play.com/plugins/toob-parametric-eq#> .
|
|
|
|
toob:frequencyResponseVector
|
|
a lv2:Parameter;
|
|
rdfs:label "Frequency Response";
|
|
rdfs:range atom:Vector.
|
|
|
|
|
|
parametric_eq:filterGroup
|
|
a param:ControlGroup ,
|
|
pg:InputGroup ;
|
|
|
|
lv2:name "Filters" ;
|
|
lv2:symbol "filterGroup" .
|
|
|
|
parametric_eq:lfGroup
|
|
a param:ControlGroup ,
|
|
pg:InputGroup ;
|
|
|
|
lv2:name "Low" ;
|
|
lv2:symbol "lfGroup" .
|
|
|
|
parametric_eq:lmfGroup
|
|
a param:ControlGroup ,
|
|
pg:InputGroup ;
|
|
|
|
lv2:name "Low Mid" ;
|
|
lv2:symbol "lmfGroup" .
|
|
|
|
parametric_eq:hmfGroup
|
|
a param:ControlGroup ,
|
|
pg:InputGroup ;
|
|
|
|
lv2:name "High Mid" ;
|
|
lv2:symbol "hmfGroup" .
|
|
|
|
parametric_eq:hfGroup
|
|
a param:ControlGroup ,
|
|
pg:InputGroup ;
|
|
|
|
lv2:name "High" ;
|
|
lv2:symbol "hfGroup" .
|
|
|
|
|
|
<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-parametric-eq>
|
|
a lv2:Plugin ,
|
|
lv2:ParaEQPlugin ;
|
|
doap:name "TooB Parametric EQ (Mono)" ,
|
|
"TooB Parametric EQ (Mono)"@en-gb-gb
|
|
;
|
|
|
|
doap:license <https://rerdavies.github.io/pipedal/LicenseToobAmp> ;
|
|
doap:maintainer <http://two-play.com/rerdavies#me> ;
|
|
lv2:minorVersion 0 ;
|
|
lv2:microVersion 78 ;
|
|
|
|
uiext:ui <http://two-play.com/plugins/toob-parametric-eq-ui>;
|
|
|
|
rdfs:comment """
|
|
TooB Parametric EQ provides a flexible 4-band parametric studio EQ that is up the task of shaping tone before or after amp models.
|
|
|
|
|
|
""" ;
|
|
|
|
mod:brand "TooB";
|
|
mod:label "Parametric EQ";
|
|
lv2:requiredFeature urid:map ;
|
|
lv2:optionalFeature lv2:hardRTCapable;
|
|
pipedal_patch:readable
|
|
toob:frequencyResponseVector;
|
|
|
|
|
|
lv2:port
|
|
### FILTERS ###
|
|
[
|
|
a lv2:InputPort ,
|
|
lv2:ControlPort ;
|
|
|
|
lv2:index 0 ;
|
|
lv2:symbol "loCut" ;
|
|
lv2:name "Lo Cut";
|
|
pg:group parametric_eq:filterGroup;
|
|
|
|
lv2:default 0.0 ;
|
|
lv2:minimum 20.0 ;
|
|
lv2:maximum 350.0 ;
|
|
lv2:portProperty epp:logarithmic;
|
|
units:unit units:hz;
|
|
|
|
lv2:scalePoint [
|
|
rdfs:label "OFF" ;
|
|
rdf:value 20.0
|
|
];
|
|
|
|
],
|
|
[
|
|
a lv2:InputPort ,
|
|
lv2:ControlPort ;
|
|
|
|
lv2:index 1 ;
|
|
lv2:symbol "hiCut" ;
|
|
lv2:name "Hi Cut";
|
|
pg:group parametric_eq:filterGroup;
|
|
|
|
lv2:default 21.000 ;
|
|
lv2:minimum 3.000 ;
|
|
lv2:maximum 21.000 ;
|
|
lv2:portProperty epp:logarithmic;
|
|
units:unit units:khz;
|
|
|
|
lv2:scalePoint [
|
|
rdfs:label "OFF" ;
|
|
rdf:value 21.000
|
|
];
|
|
|
|
],
|
|
## LF ###########
|
|
[
|
|
a lv2:InputPort ,
|
|
lv2:ControlPort ;
|
|
|
|
lv2:index 2 ;
|
|
lv2:symbol "lfLevel" ;
|
|
lv2:name "Level";
|
|
pg:group parametric_eq:lfGroup;
|
|
|
|
lv2:default 0.0 ;
|
|
lv2:minimum -15.0 ;
|
|
lv2:maximum 15.0 ;
|
|
units:unit units:db ;
|
|
],
|
|
[
|
|
a lv2:InputPort ,
|
|
lv2:ControlPort ;
|
|
|
|
lv2:index 3 ;
|
|
lv2:symbol "lfC" ;
|
|
lv2:name "Freq";
|
|
pg:group parametric_eq:lfGroup;
|
|
|
|
lv2:default 120.0 ;
|
|
lv2:minimum 30.0 ;
|
|
lv2:maximum 450.0 ;
|
|
units:unit units:hz ;
|
|
],
|
|
|
|
## LMF #####
|
|
[
|
|
a lv2:InputPort ,
|
|
lv2:ControlPort ;
|
|
|
|
lv2:index 4 ;
|
|
lv2:symbol "lmfLevel" ;
|
|
lv2:name "Level";
|
|
pg:group parametric_eq:lmfGroup;
|
|
|
|
lv2:default 0.0 ;
|
|
lv2:minimum -15.0 ;
|
|
lv2:maximum 15.0 ;
|
|
units:unit units:db ;
|
|
],
|
|
[
|
|
a lv2:InputPort ,
|
|
lv2:ControlPort ;
|
|
|
|
lv2:index 5 ;
|
|
lv2:symbol "lmfC" ;
|
|
lv2:name "Freq";
|
|
pg:group parametric_eq:lmfGroup;
|
|
|
|
lv2:portProperty epp:logarithmic ;
|
|
lv2:default 400.0 ;
|
|
lv2:minimum 129.0 ;
|
|
lv2:maximum 2500.0 ;
|
|
units:unit units:hz ;
|
|
],
|
|
[
|
|
a lv2:InputPort ,
|
|
lv2:ControlPort ;
|
|
|
|
lv2:index 6 ;
|
|
lv2:symbol "lmfQ" ;
|
|
lv2:name "Q";
|
|
pg:group parametric_eq:lmfGroup;
|
|
|
|
lv2:portProperty epp:logarithmic;
|
|
lv2:default 1.5 ;
|
|
lv2:minimum 0.5 ;
|
|
lv2:maximum 3.0 ;
|
|
],
|
|
|
|
## HMF #####
|
|
[
|
|
a lv2:InputPort ,
|
|
lv2:ControlPort ;
|
|
|
|
lv2:index 7 ;
|
|
lv2:symbol "hmfLevel" ;
|
|
lv2:name "Level";
|
|
pg:group parametric_eq:hmfGroup;
|
|
|
|
lv2:default 0.0 ;
|
|
lv2:minimum -15.0 ;
|
|
lv2:maximum 15.0 ;
|
|
units:unit units:db ;
|
|
],
|
|
[
|
|
a lv2:InputPort ,
|
|
lv2:ControlPort ;
|
|
|
|
lv2:index 8 ;
|
|
lv2:symbol "hmfC" ;
|
|
lv2:name "Freq";
|
|
pg:group parametric_eq:hmfGroup;
|
|
|
|
lv2:portProperty epp:logarithmic;
|
|
lv2:default 2.0 ;
|
|
lv2:minimum 0.600 ;
|
|
lv2:maximum 7.500 ;
|
|
units:unit units:khz ;
|
|
],
|
|
[
|
|
a lv2:InputPort ,
|
|
lv2:ControlPort ;
|
|
|
|
lv2:index 9 ;
|
|
lv2:symbol "hmfQ" ;
|
|
lv2:name "Q";
|
|
pg:group parametric_eq:hmfGroup;
|
|
|
|
lv2:portProperty epp:logarithmic;
|
|
lv2:default 1.5 ;
|
|
lv2:minimum 0.5 ;
|
|
lv2:maximum 3.0 ;
|
|
],
|
|
|
|
|
|
## HF ###########
|
|
[
|
|
a lv2:InputPort ,
|
|
lv2:ControlPort ;
|
|
|
|
lv2:index 10 ;
|
|
lv2:symbol "hfLevel" ;
|
|
lv2:name "Level";
|
|
pg:group parametric_eq:hfGroup;
|
|
|
|
lv2:default 0.0 ;
|
|
lv2:minimum -15.0 ;
|
|
lv2:maximum 15.0 ;
|
|
units:unit units:db ;
|
|
],
|
|
[
|
|
a lv2:InputPort ,
|
|
lv2:ControlPort ;
|
|
|
|
lv2:index 11 ;
|
|
lv2:symbol "hfC" ;
|
|
lv2:name "Freq";
|
|
pg:group parametric_eq:hfGroup;
|
|
|
|
lv2:default 2.0 ;
|
|
lv2:minimum 1.0 ;
|
|
lv2:maximum 16.0 ;
|
|
units:unit units:khz ;
|
|
],
|
|
|
|
|
|
[
|
|
a lv2:InputPort ,
|
|
lv2:ControlPort ;
|
|
|
|
lv2:index 12 ;
|
|
lv2:symbol "gain" ;
|
|
lv2:name "Gain";
|
|
lv2:default 0.0 ;
|
|
lv2:minimum -40.0 ;
|
|
lv2:maximum 30.0;
|
|
units:unit units:db;
|
|
|
|
],
|
|
[
|
|
a lv2:AudioPort ,
|
|
lv2:InputPort ;
|
|
lv2:index 13 ;
|
|
lv2:symbol "in" ;
|
|
lv2:name "In"
|
|
], [
|
|
a lv2:AudioPort ,
|
|
lv2:OutputPort ;
|
|
lv2:index 14 ;
|
|
lv2:symbol "out" ;
|
|
lv2:name "Out"
|
|
],[
|
|
a atom:AtomPort ,
|
|
lv2:InputPort;
|
|
atom:bufferType atom:Sequence ;
|
|
# atom:supports patch:Message;
|
|
lv2:designation lv2:control ;
|
|
lv2:index 15 ;
|
|
lv2:symbol "control" ;
|
|
lv2:name "Control" ;
|
|
rdfs:comment "Plugin to GUI communication" ;
|
|
] , [
|
|
a atom:AtomPort ,
|
|
lv2:OutputPort ;
|
|
atom:bufferType atom:Sequence ;
|
|
# atom:supports patch:Message;
|
|
lv2:designation lv2:control ;
|
|
lv2:index 16 ;
|
|
lv2:symbol "notify" ;
|
|
lv2:name "Notify" ;
|
|
rdfs:comment "Plugin to GUI communication" ;
|
|
]
|
|
.
|
|
|
|
<http://two-play.com/plugins/toob-parametric-eq-ui>
|
|
a uiext:X11UI ;
|
|
lv2:binary <ToobAmpUI.so>;
|
|
|
|
lv2:extensionData uiext::idle ;
|
|
lv2:extensionData uiext:resize ;
|
|
lv2:extensionData uiext:idleInterface;
|
|
lv2:requiredFeature uiext:idleInterface ;
|
|
.
|
|
|
|
<http://two-play.com/plugins/toob-parametric-eq>
|
|
pipedal_ui:ui <http://two-play.com/plugins/toob-parametric-eq#piPedalUI>.
|
|
|
|
|
|
<http://two-play.com/plugins/toob-parametric-eq#piPedalUI>
|
|
a pipedal_ui:ui ;
|
|
pipedal_ui:frequencyPlot
|
|
[
|
|
lv2:index 0 ;
|
|
pipedal_ui:patchProperty toob:frequencyResponseVector;
|
|
pipedal_ui:xLeft 30 ;
|
|
pipedal_ui:xRight 22050 ;
|
|
pipedal_ui:yTop 10 ;
|
|
pipedal_ui:yBottom -35 ;
|
|
pipedal_ui:xLog 1 ;
|
|
pipedal_ui:yDb 1 ;
|
|
pipedal_ui:width 236 ;
|
|
]
|
|
.
|
|
|
|
|