summaryrefslogtreecommitdiffstats
path: root/examples/plugins/Amp-slv2.lv2/amp.ttl
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-02-05 22:34:56 +0000
committerDavid Robillard <d@drobilla.net>2007-02-05 22:34:56 +0000
commit1988a63b41a0e81f348d5df3394d41d3248d442b (patch)
tree2ec6758a2554f6456ae0f377cc47b4f1260a8b2d /examples/plugins/Amp-slv2.lv2/amp.ttl
parent1f0922ab4982da825ddfbb792ec9f871b2b88804 (diff)
downloadlilv-1988a63b41a0e81f348d5df3394d41d3248d442b.tar.gz
lilv-1988a63b41a0e81f348d5df3394d41d3248d442b.tar.bz2
lilv-1988a63b41a0e81f348d5df3394d41d3248d442b.zip
Reorganized tree in preparation for beta release.
Split simple (example) jack host and more useful one (with midi). Working Jack/LV2 midi in lv2_jack_host. Added lv2_list. git-svn-id: http://svn.drobilla.net/lad/slv2@279 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'examples/plugins/Amp-slv2.lv2/amp.ttl')
-rw-r--r--examples/plugins/Amp-slv2.lv2/amp.ttl57
1 files changed, 0 insertions, 57 deletions
diff --git a/examples/plugins/Amp-slv2.lv2/amp.ttl b/examples/plugins/Amp-slv2.lv2/amp.ttl
deleted file mode 100644
index abc5b33..0000000
--- a/examples/plugins/Amp-slv2.lv2/amp.ttl
+++ /dev/null
@@ -1,57 +0,0 @@
-@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/amp> a lv2:Plugin ;
- 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"
- ]
-.
-