summaryrefslogtreecommitdiff
path: root/libs/plugins/a-delay.lv2/a-delay.ttl.in
blob: 5c661ebc472fe9f68a322f2f1fa026451e5a8f41 (plain)
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
@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 rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix rsz:  <http://lv2plug.in/ns/ext/resize-port#> .
@prefix unit: <http://lv2plug.in/ns/extensions/units#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .

<http://ardour.org/credits.html>
	a foaf:Person ;
	foaf:name "Ardour Team" ;
	foaf:homepage <http://ardour.org/> .

<urn:ardour:a-delay>
    a lv2:Plugin, doap:Project, lv2:DelayPlugin ;

    lv2:optionalFeature <http://lv2plug.in/ns/lv2core#hardRTCapable> ;
		lv2:optionalFeature <http://harrisonconsoles.com/lv2/inlinedisplay#queue_draw> ;

    lv2:requiredFeature <http://lv2plug.in/ns/ext/options#options> ,
                        <http://lv2plug.in/ns/ext/urid#map> ;

    lv2:port [
        a lv2:InputPort, lv2:AudioPort ;
        lv2:index 0 ;
        lv2:symbol "in_1" ;
        lv2:name "Audio Input 1" ;
    ] ;

    lv2:port [
        a lv2:OutputPort, lv2:AudioPort ;
        lv2:index 1 ;
        lv2:symbol "out_1" ;
        lv2:name "Audio Output 1" ;
    ] ;

    lv2:port [
        a lv2:InputPort, atom:AtomPort ;
        lv2:index 2 ;
        lv2:name "BPM Input" ;
        lv2:symbol "bpm_in" ;
        rsz:minimumSize 2048 ;
        atom:bufferType atom:Sequence ;
        atom:supports <http://lv2plug.in/ns/ext/time#Position> ;
    ] ;

    lv2:port [
        a lv2:InputPort, lv2:ControlPort ;
        lv2:index 3 ;
        lv2:name "Invert" ;
        lv2:symbol "inv" ;
        lv2:default 0 ;
        lv2:minimum 0 ;
        lv2:maximum 1 ;
        lv2:portProperty lv2:integer, lv2:toggled ;
    ] ,
    [
        a lv2:InputPort, lv2:ControlPort ;
        lv2:index 4 ;
        lv2:name "Sync BPM" ;
        lv2:symbol "sync" ;
        lv2:default 0 ;
        lv2:minimum 0 ;
        lv2:maximum 1 ;
        lv2:portProperty lv2:integer, lv2:toggled ;
    ] ,
    [
        a lv2:InputPort, lv2:ControlPort ;
        lv2:index 5 ;
        lv2:name "Time" ;
        lv2:symbol "time" ;
        lv2:default 160.000000 ;
        lv2:minimum 1.000000 ;
        lv2:maximum 8000.000000 ;
        unit:unit unit:ms ;
        lv2:portProperty <http://lv2plug.in/ns/ext/port-props#logarithmic> ;
    ] ,
    [
        a lv2:InputPort, lv2:ControlPort ;
        lv2:index 6 ;
        lv2:name "Divisor" ;
        lv2:symbol "div" ;
        lv2:default 4 ;
        lv2:minimum 1 ;
        lv2:maximum 48 ;
        lv2:portProperty <http://lv2plug.in/ns/ext/port-props#hasStrictBounds> ;
        lv2:portProperty lv2:enumeration ;
        lv2:portProperty lv2:integer ;
        lv2:scalePoint [ rdfs:label "a - Whole note" ; rdf:value 1 ] ;
        lv2:scalePoint [ rdfs:label "b - Half note" ; rdf:value 2 ] ;
        lv2:scalePoint [ rdfs:label "c - ♩" ; rdf:value 4 ] ;
        lv2:scalePoint [ rdfs:label "d - ♪" ; rdf:value 8 ] ;
        lv2:scalePoint [ rdfs:label "e - ♬" ; rdf:value 16 ] ;
        lv2:scalePoint [ rdfs:label "f - 32nd note" ; rdf:value 32 ] ;
        lv2:scalePoint [ rdfs:label "g - ♩³ (Triplet)" ; rdf:value 6 ] ;
        lv2:scalePoint [ rdfs:label "h - ♪³ (Triplet)" ; rdf:value 12 ] ;
        lv2:scalePoint [ rdfs:label "i - ♬³ (Triplet)" ; rdf:value 24 ] ;
        lv2:scalePoint [ rdfs:label "j - 32nd note (Triplet)" ; rdf:value 48 ] ;
    ] ,
    [
        a lv2:InputPort, lv2:ControlPort ;
        lv2:index 7 ;
        lv2:name "Dry/Wet" ;
        lv2:symbol "drywet" ;
        lv2:default 50.000000 ;
        lv2:minimum 0.000000 ;
        lv2:maximum 100.000000 ;
        unit:unit unit:pc ;
    ] ,
    [
        a lv2:InputPort, lv2:ControlPort ;
        lv2:index 8 ;
        lv2:name "Feedback" ;
        lv2:symbol "feedback" ;
        lv2:default 20.000000 ;
        lv2:minimum 0.000000 ;
        lv2:maximum 100.000000 ;
        unit:unit unit:pc ;
    ] ,
    [
        a lv2:InputPort, lv2:ControlPort ;
        lv2:index 9 ;
        lv2:name "LPF" ;
        lv2:symbol "lpf" ;
        lv2:default 6000.000000 ;
        lv2:minimum 20.000000 ;
        lv2:maximum 20000.000000 ;
        unit:unit unit:hz ;
        lv2:portProperty <http://lv2plug.in/ns/ext/port-props#logarithmic> ;
    ] ,
    [
        a lv2:InputPort, lv2:ControlPort ;
        lv2:index 10 ;
        lv2:name "Output Gain" ;
        lv2:symbol "gain" ;
        lv2:default 0.000000 ;
        lv2:minimum -60.000000 ;
        lv2:maximum 0.000000 ;
        unit:unit unit:db ;
    ] ,
    [
        a lv2:OutputPort, lv2:ControlPort ;
        lv2:index 11 ;
        lv2:name "Delaytime" ;
        lv2:symbol "delaytime" ;
        lv2:default 0.000000 ;
        lv2:minimum 1.000000 ;
        lv2:maximum 8000.000000 ;
        unit:unit unit:ms ;
    ] ;

    rdfs:comment """
A simple delay plugin
""" ;

    doap:name "a-Delay" ;
    doap:license "GPL v2+" ;
    doap:maintainer <http://ardour.org/credits.html> ;

    lv2:microVersion 1 ;
    lv2:minorVersion 1 .