prefix blessed scripted DSP plugins with a-*
[ardour.git] / libs / plugins / reasonablesynth.lv2 / reasonablesynth.ttl.in
1 @prefix atom:  <http://lv2plug.in/ns/ext/atom#> .
2 @prefix doap:  <http://usefulinc.com/ns/doap#> .
3 @prefix foaf:  <http://xmlns.com/foaf/0.1/> .
4 @prefix lv2:   <http://lv2plug.in/ns/lv2core#> .
5 @prefix rdf:   <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
6 @prefix rdfs:  <http://www.w3.org/2000/01/rdf-schema#> .
7 @prefix pg:    <http://lv2plug.in/ns/ext/port-groups#> .
8 @prefix urid:  <http://lv2plug.in/ns/ext/urid#> .
9
10 <http://ardour.org/credits.html>
11         a foaf:Person ;
12         foaf:name "Ardour Team" ;
13         foaf:homepage <http://ardour.org/> .
14
15 <https://community.ardour.org/node/7596>
16         a lv2:Plugin, lv2:InstrumentPlugin, doap:Project;
17         doap:license <http://usefulinc.com/doap/licenses/gpl> ;
18         doap:maintainer <http://ardour.org/credits.html> ;
19         doap:name "a-Reasonable Synth";
20         lv2:optionalFeature lv2:hardRTCapable ;
21         lv2:requiredFeature urid:map ;
22         rdfs:comment """A simple synthesizer with no controls at all but a reasonable sound instead. Note that this synth does not respond to any Control or Program Messages. Its main purpose is to act as sensible default on new installations until other plugins are installed.""" ;
23         lv2:port
24         [
25                 a atom:AtomPort ,
26                         lv2:InputPort ;
27                 atom:bufferType atom:Sequence ;
28                 atom:supports <http://lv2plug.in/ns/ext/midi#MidiEvent> ;
29                 lv2:index 0 ;
30                 lv2:symbol "MidiIn" ;
31                 lv2:name "MIDI Input" ;
32         ],
33         [
34                 a lv2:AudioPort ,
35                         lv2:OutputPort ;
36                 lv2:index 1 ;
37                 lv2:symbol "outL" ;
38                 lv2:name "Left output" ;
39                 lv2:designation pg:left ;
40         ],
41         [
42                 a lv2:AudioPort ,
43                         lv2:OutputPort ;
44                 lv2:index 2 ;
45                 lv2:symbol "outR" ;
46                 lv2:name "Right Output" ;
47                 lv2:designation pg:right ;
48         ]
49         .