-
Notifications
You must be signed in to change notification settings - Fork 12
/
Kars_dsp.ttl
69 lines (55 loc) · 1.98 KB
/
Kars_dsp.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
@prefix atom: <http://lv2plug.in/ns/ext/atom#> .
@prefix doap: <http://usefulinc.com/ns/doap#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
@prefix mod: <http://moddevices.com/ns/mod#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix rsz: <http://lv2plug.in/ns/ext/resize-port#> .
@prefix ui: <http://lv2plug.in/ns/extensions/ui#> .
@prefix unit: <http://lv2plug.in/ns/extensions/units#> .
<http://distrho.sf.net/plugins/Kars>
a lv2:InstrumentPlugin, lv2:Plugin ;
lv2:extensionData <http://lv2plug.in/ns/ext/state#interface> ;
lv2:optionalFeature <http://lv2plug.in/ns/lv2core#hardRTCapable> ,
<http://lv2plug.in/ns/ext/buf-size#boundedBlockLength> ;
lv2:requiredFeature <http://lv2plug.in/ns/ext/options#options> ,
<http://lv2plug.in/ns/ext/urid#map> ;
ui:ui <http://distrho.sf.net/plugins/Kars#UI> ;
lv2:port [
a lv2:OutputPort, lv2:AudioPort ;
lv2:index 0 ;
lv2:symbol "lv2_audio_out_1" ;
lv2:name "Audio Output 1" ;
] ;
lv2:port [
a lv2:InputPort, atom:AtomPort ;
lv2:index 1 ;
lv2:name "Events Input" ;
lv2:symbol "lv2_events_in" ;
rsz:minimumSize 2048 ;
atom:bufferType atom:Sequence ;
atom:supports <http://lv2plug.in/ns/ext/midi#MidiEvent> ;
] ;
lv2:port [
a lv2:InputPort, lv2:ControlPort ;
lv2:index 2 ;
lv2:name "Sustain" ;
lv2:symbol "sustain" ;
lv2:default 0.000000 ;
lv2:minimum 0.000000 ;
lv2:maximum 1.000000 ;
lv2:portProperty lv2:toggled ;
] ;
rdfs:comment """
Simple karplus-strong plucked string synth.
""" ;
mod:brand "DISTRHO" ;
mod:label "Kars" ;
doap:name "Kars" ;
doap:license "ISC" ;
doap:maintainer [
foaf:name "falkTX" ;
foaf:homepage <https://github.com/DISTRHO/Kars> ;
] ;
lv2:microVersion 0 ;
lv2:minorVersion 2 .