diff options
author | David Robillard <d@drobilla.net> | 2006-06-06 20:20:33 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2006-06-06 20:20:33 +0000 |
commit | 7fd4168fe8581e46f4ee35cc182db6220b6eed04 (patch) | |
tree | 403d603debb6304193f60c2adda8a53863c45e04 /examples/plugins/Amp-swh.lv2/amp.ttl | |
parent | e9a163310bc7b0a607d89ed5cb70c6bba99e919d (diff) | |
download | lilv-7fd4168fe8581e46f4ee35cc182db6220b6eed04.tar.gz lilv-7fd4168fe8581e46f4ee35cc182db6220b6eed04.tar.bz2 lilv-7fd4168fe8581e46f4ee35cc182db6220b6eed04.zip |
Moved libslv2 into it's own subdirectory
git-svn-id: http://svn.drobilla.net/lad/libslv2@4 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'examples/plugins/Amp-swh.lv2/amp.ttl')
-rw-r--r-- | examples/plugins/Amp-swh.lv2/amp.ttl | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/examples/plugins/Amp-swh.lv2/amp.ttl b/examples/plugins/Amp-swh.lv2/amp.ttl new file mode 100644 index 0000000..d44c0b9 --- /dev/null +++ b/examples/plugins/Amp-swh.lv2/amp.ttl @@ -0,0 +1,68 @@ +@prefix lv2: <http://lv2plug.in/ontology#> . +@prefix foaf: <http://xmlns.com/foaf/0.1/> . +@prefix doap: <http://usefulinc.com/ns/doap#> . + +<http://plugin.org.uk/swh-plugins/amp> a lv2:Plugin ; + a lv2:AmplifierPlugin ; + doap:maintainer [ + foaf:name "Steve Harris"; + foaf:homepage <http://plugin.org.uk/> ; + foaf:mbox <mailto:steve@plugin.org.uk> ; + ] ; + doap:name "Simple amplifier" ; + doap:name "简单放大器"@ch ; + doap:name "Einfacher Verstärker"@de ; + doap:name "Simple amp"@en-gb ; + doap:name "Amplificador simple"@es ; + doap:name "Amplificateur de base"@fr ; + doap:name "Amplificatore semplice"@it ; + doap:name "簡単なアンプ"@jp ; + doap:name "Просто усилитель"@ru ; + doap:licence <http://usefulinc.com/doap/licenses/gpl> ; + lv2:property lv2:hardRtCapable ; + + lv2:port [ + a lv2:InputControlRatePort ; + lv2:datatype lv2:float ; + lv2:index 0 ; + lv2:symbol "gain" ; + lv2:name "gain" ; + lv2:name "收益"@ch ; + lv2:name "gewinn"@de ; + lv2:name "gain"@en-gb ; + lv2:name "aumento"@es ; + lv2:name "gain"@fr ; + lv2:name "guadagno"@it ; + lv2:name "利益"@jp ; + lv2:name "увеличение"@ru ; + lv2:default 0.0 ; + lv2:minimum -90.0 ; + lv2:maximum 24.0 ; + lv2:scalePoint [ + lv2:label "+5" ; + lv2:value 5.0 ; + ] , [ + lv2:label "0" ; + lv2:value 0.0 ; + ] , [ + lv2:label "-5" ; + lv2:value -5.0 ; + ] , [ + lv2:label "-10" ; + lv2:value -10.0 ; + ] + ] , [ + a lv2:InputAudioRatePort ; + lv2:datatype lv2:float ; + lv2:index 1 ; + lv2:symbol "in" ; + lv2:name "in" ; + ] , [ + a lv2:OutputAudioRatePort ; + lv2:datatype lv2:float ; + lv2:index 2 ; + lv2:symbol "out" ; + lv2:name "out" ; + ] +. + |