fix: use correct prefix for units LV2 extension in manifests
Signed-off-by: Christopher Arndt <chris@chrisarndt.de>
This commit is contained in:
parent
2ec533edca
commit
095774213d
|
@ -5,7 +5,7 @@
|
||||||
@prefix opts: <http://lv2plug.in/ns/ext/options#> .
|
@prefix opts: <http://lv2plug.in/ns/ext/options#> .
|
||||||
@prefix params: <http://lv2plug.in/ns/ext/parameters#> .
|
@prefix params: <http://lv2plug.in/ns/ext/parameters#> .
|
||||||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
||||||
@prefix unit: <http://lv2plug.in/ns/extensions/units#> .
|
@prefix units: <http://lv2plug.in/ns/extensions/units#> .
|
||||||
|
|
||||||
<urn:nymph:examples:amp>
|
<urn:nymph:examples:amp>
|
||||||
a lv2:Plugin, lv2:AmplifierPlugin , doap:Project ;
|
a lv2:Plugin, lv2:AmplifierPlugin , doap:Project ;
|
||||||
|
@ -36,7 +36,7 @@
|
||||||
lv2:default 0.0 ;
|
lv2:default 0.0 ;
|
||||||
lv2:minimum -90.0 ;
|
lv2:minimum -90.0 ;
|
||||||
lv2:maximum 20.0 ;
|
lv2:maximum 20.0 ;
|
||||||
unit:unit unit:db ;
|
units:unit units:db ;
|
||||||
];
|
];
|
||||||
|
|
||||||
rdfs:comment """
|
rdfs:comment """
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
@prefix props: <http://lv2plug.in/ns/ext/port-props#> .
|
@prefix props: <http://lv2plug.in/ns/ext/port-props#> .
|
||||||
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
||||||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
||||||
@prefix unit: <http://lv2plug.in/ns/extensions/units#> .
|
@prefix units: <http://lv2plug.in/ns/extensions/units#> .
|
||||||
|
|
||||||
<urn:nymph:examples:multimode-filter>
|
<urn:nymph:examples:multimode-filter>
|
||||||
a lv2:Plugin, lv2:AmplifierPlugin , doap:Project ;
|
a lv2:Plugin, lv2:AmplifierPlugin , doap:Project ;
|
||||||
|
@ -39,7 +39,7 @@
|
||||||
lv2:minimum 16.0 ;
|
lv2:minimum 16.0 ;
|
||||||
lv2:maximum 7000.0 ;
|
lv2:maximum 7000.0 ;
|
||||||
lv2:portProperty props:logarithmic;
|
lv2:portProperty props:logarithmic;
|
||||||
unit:unit unit:hz ;
|
units:unit units:hz ;
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
a lv2:InputPort, lv2:ControlPort ;
|
a lv2:InputPort, lv2:ControlPort ;
|
||||||
|
|
Loading…
Reference in New Issue