diff options
author | David Robillard <d@drobilla.net> | 2006-09-03 04:02:34 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2006-09-03 04:02:34 +0000 |
commit | 6c8dc477bda2d6e67893f4475e603a11cf507017 (patch) | |
tree | 3ce9f843f729049b1c9357880851959d18f4c262 /examples/plugins/Amp-onefile-slv2.lv2/manifest.ttl | |
parent | 133415ab52c297199acb29822fc7ec572fbafa2f (diff) | |
download | lilv-6c8dc477bda2d6e67893f4475e603a11cf507017.tar.gz lilv-6c8dc477bda2d6e67893f4475e603a11cf507017.tar.bz2 lilv-6c8dc477bda2d6e67893f4475e603a11cf507017.zip |
Support for plugin data in manifest.ttl
git-svn-id: http://svn.drobilla.net/lad/libslv2@112 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'examples/plugins/Amp-onefile-slv2.lv2/manifest.ttl')
-rw-r--r-- | examples/plugins/Amp-onefile-slv2.lv2/manifest.ttl | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/examples/plugins/Amp-onefile-slv2.lv2/manifest.ttl b/examples/plugins/Amp-onefile-slv2.lv2/manifest.ttl new file mode 100644 index 0000000..8113dec --- /dev/null +++ b/examples/plugins/Amp-onefile-slv2.lv2/manifest.ttl @@ -0,0 +1,58 @@ +@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . +@prefix lv2: <http://lv2plug.in/ontology#> . +@prefix foaf: <http://xmlns.com/foaf/0.1/> . +@prefix doap: <http://usefulinc.com/ns/doap#> . + +<http://codeson.net/plugins/amponefile> a lv2:Plugin ; + lv2:binary <amp.so> ; + a lv2:AmplifierPlugin ; + doap:maintainer [ + foaf:name "Dave Robillard"; + foaf:homepage <http://codeson.net/> ; + foaf:mbox <mailto:drobilla@connect.carleton.ca> + ] ; + doap:name "Simple Amplifier" ; + doap:name "Einfacher Verst¿¿rker"@de ; + doap:licence <http://usefulinc.com/doap/licenses/gpl> ; + + lv2:property lv2:hardRTCapable ; + + lv2:port [ + a lv2:ControlRateInputPort ; + lv2:datatype lv2:float ; + lv2:index 0 ; + lv2:symbol "gain" ; + lv2:name "Gain" ; + lv2:name "Gewinn"@de ; + lv2:default [ rdf:value 0.0 ] ; + lv2:minimum [ rdf:value -90.0 ] ; + lv2:maximum [ rdf:value 24.0 ] ; + lv2:scalePoint [ + rdfs:label "+5" ; + rdf:value 5.0 + ] , [ + rdfs:label "Unity" ; + rdf:value 1.0 + ] , [ + rdfs:label "-5" ; + rdf:value -5.0 + ] , [ + rdfs:label "-10" ; + rdf:value -10.0 + ] + ] , [ + a lv2:AudioRateInputPort ; + lv2:datatype lv2:float ; + lv2:index 1 ; + lv2:symbol "in" ; + lv2:name "Input" + ] , [ + a lv2:AudioRateOutputPort ; + lv2:datatype lv2:float ; + lv2:index 2 ; + lv2:symbol "out" ; + lv2:name "Output" + ] +. + |