-
Notifications
You must be signed in to change notification settings - Fork 0
/
statevf.ttl
78 lines (76 loc) · 2.09 KB
/
statevf.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
69
70
71
72
73
74
75
76
77
78
# The full description of the plugin is in this file, which is linked to from
# `manifest.ttl`. This is done so the host only needs to scan the relatively
# small `manifest.ttl` files to quickly discover all plugins.
@prefix doap: <http://usefulinc.com/ns/doap#> .
@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix units: <http://lv2plug.in/ns/extensions/units#> .
@prefix morph: <http://lv2plug.in/ns/ext/morph#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix mod: <http://moddevices.com/ns/mod#> .
@prefix opts: <http://lv2plug.in/ns/ext/options#> .
@prefix urid: <http://lv2plug.in/ns/ext/urid#> .
<http://github.com/geraldmwangi/StateVF>
a lv2:Plugin ,
mod:ControlVoltagePlugin ;
lv2:project <http://github.com/geraldmwangi/> ;
doap:name "StateVF";
doap:license <http://opensource.org/licenses/isc> ;
lv2:documentation "Implements a state variable filter";
lv2:extensionData opts:interface ;
lv2:optionalFeature lv2:hardRTCapable ,
urid:map ;
mod:brand "JD" ;
mod:label "StateVF" ;
lv2:microVersion 0 ;
lv2:minorVersion 0 ;
lv2:port [
a lv2:ControlPort ,
lv2:InputPort ,
morph:MorphPort ;
lv2:index 0 ;
lv2:symbol "cutoff" ;
morph:supportsType lv2:CVPort ;
lv2:name "Cutoff Frequency" ;
lv2:default 1000.0 ;
lv2:minimum 0.0 ;
lv2:maximum 4500.0 ;
#units:unit units:hz ;
] , [
a lv2:ControlPort ,
lv2:InputPort ,
morph:MorphPort ;
lv2:index 1 ;
lv2:symbol "damping" ;
morph:supportsType lv2:CVPort ;
lv2:name "Damping" ;
lv2:default 1.0 ;
lv2:minimum 0.0 ;
lv2:maximum 1.0 ;
#units:unit units:hz ;
] ,[
a lv2:AudioPort ,
lv2:InputPort ;
lv2:index 2 ;
lv2:symbol "in" ;
lv2:name "In"
] , [
a lv2:AudioPort ,
lv2:OutputPort ;
lv2:index 3 ;
lv2:symbol "highpass" ;
lv2:name "HighPass"
] , [
a lv2:AudioPort ,
lv2:OutputPort ;
lv2:index 4 ;
lv2:symbol "bandpass" ;
lv2:name "BandPass"
] , [
a lv2:AudioPort ,
lv2:OutputPort ;
lv2:index 5 ;
lv2:symbol "lowpass" ;
lv2:name "LowPass"
] .