1@prefix doap:  <http://usefulinc.com/ns/doap#> .
2@prefix foaf:  <http://xmlns.com/foaf/0.1/> .
3@prefix rdf:   <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
4@prefix rdfs:  <http://www.w3.org/2000/01/rdf-schema#> .
5@prefix units: <http://lv2plug.in/ns/extensions/units#> .
6@prefix pset: <http://lv2plug.in/ns/ext/presets#> .
7@prefix mod:   <http://moddevices.com/ns/mod#>.
8
9@prefix lv2:   <http://lv2plug.in/ns/lv2core#> .
10@prefix ui:   <http://lv2plug.in/ns/extensions/ui#> .
11
12# <http://rakarrack.sourceforge.net/effects.html#awha_ui>
13# 	a ui:X11UI ;
14# 	ui:binary <rkrlv2_ui.so> ;
15# 	lv2:extensionData ui:idleInterface;
16# 	.
17
18<http://rakarrack.sourceforge.net/effects.html#awha>
19        a lv2:Plugin, lv2:PhaserPlugin ;
20        doap:name "rkr AlienWah" ;
21        mod:brand "Rakarrack";
22        doap:description "Flaser";
23        lv2:project <http://rakarrack.sourceforge.net/effects.html>;
24        lv2:minorVersion 0 ;
25        lv2:microVersion 0 ;
26        rdfs:comment "This effect features two alternating comb filters for a vocal/formant-like wah sound. It could be considered a combined flanger and phaser. It can be extreme or add very subtle shimmer" ;
27        lv2:optionalFeature lv2:hardRTCapable ;
28#        ui:ui  <http://rakarrack.sourceforge.net/effects.html#awha_ui> ;
29
30        lv2:port [
31                a lv2:InputPort, lv2:AudioPort ;
32                lv2:index 0 ;
33                lv2:symbol "INPUT_L" ;
34                lv2:name "Audio In L" ;
35        ] ;
36        lv2:port [
37                a lv2:InputPort, lv2:AudioPort ;
38                lv2:index 1 ;
39                lv2:symbol "INPUT_R" ;
40                lv2:name "Audio In R" ;
41        ] ;
42        lv2:port [
43                a lv2:OutputPort, lv2:AudioPort ;
44                lv2:index 2 ;
45                lv2:symbol "OUTPUT_L" ;
46                lv2:name "Audio Out L" ;
47        ] ;
48        lv2:port [
49                a lv2:OutputPort, lv2:AudioPort ;
50                lv2:index 3 ;
51                lv2:symbol "OUTPUT_R" ;
52                lv2:name "Audio Out R" ;
53        ] ;
54
55        lv2:port [
56                a lv2:InputPort, lv2:ControlPort ;
57                lv2:index 4 ;
58                lv2:symbol "BYPASS" ;
59                lv2:name "Bypass" ;
60                lv2:default 0 ;
61                lv2:minimum 0 ;
62                lv2:maximum 1 ;
63                lv2:portProperty lv2:integer ;
64                lv2:portProperty lv2:toggled ;
65        ], [
66                a lv2:InputPort, lv2:ControlPort ;
67                lv2:index 5 ;
68                lv2:symbol "WETDRY" ;
69                lv2:name "Wet/Dry" ;
70                lv2:default 64 ;
71                lv2:minimum 0 ;
72                lv2:maximum 127 ;
73                lv2:portProperty lv2:integer ;
74        ], [
75                a lv2:InputPort, lv2:ControlPort ;
76                lv2:index 6 ;
77                lv2:symbol "PAN" ;
78                lv2:name "Panning" ;
79                lv2:default 0 ;
80                lv2:minimum -64 ;
81                lv2:maximum 63 ;
82                lv2:portProperty lv2:integer ;
83        ], [
84                a lv2:InputPort, lv2:ControlPort ;
85                lv2:index 7 ;
86                lv2:symbol "TEMPO" ;
87                lv2:name "Tempo" ;
88                lv2:default 80 ;
89                lv2:minimum 1 ;
90                lv2:maximum 600 ;
91                lv2:portProperty lv2:integer ;
92                units:unit units:bpm ;
93        ], [
94                a lv2:InputPort, lv2:ControlPort ;
95                lv2:index 8 ;
96                lv2:symbol "RND" ;
97                lv2:name "Randomness" ;
98                lv2:default 0 ;
99                lv2:minimum 0 ;
100                lv2:maximum 127 ;
101                lv2:portProperty lv2:integer ;
102        ], [
103                a lv2:InputPort, lv2:ControlPort ;
104                lv2:index 9 ;
105                lv2:symbol "TYPE" ;
106                lv2:name "LFO Type" ;
107                lv2:default 0 ;
108                lv2:minimum 0 ;
109                lv2:maximum 11 ;
110                lv2:portProperty lv2:integer ;
111                lv2:portProperty lv2:enumeration;
112                lv2:scalePoint [ rdfs:label "Sine"; rdf:value 0 ] ;
113                lv2:scalePoint [ rdfs:label "Triangle"; rdf:value 1 ] ;
114                lv2:scalePoint [ rdfs:label "Ramp Up"; rdf:value 2 ] ;
115                lv2:scalePoint [ rdfs:label "Ramp Down"; rdf:value 3 ] ;
116                lv2:scalePoint [ rdfs:label "ZigZag"; rdf:value 4 ] ;
117                lv2:scalePoint [ rdfs:label "Modulated Square"; rdf:value 5 ] ;
118                lv2:scalePoint [ rdfs:label "Modulated Saw"; rdf:value 6 ] ;
119                lv2:scalePoint [ rdfs:label "Lorenz Fractal"; rdf:value 7 ] ;
120                lv2:scalePoint [ rdfs:label "Lorenz Fractal XY"; rdf:value 8 ] ;
121                lv2:scalePoint [ rdfs:label "Random Sample and Hold"; rdf:value 9 ] ;
122                lv2:scalePoint [ rdfs:label "Triangle Topped Sine"; rdf:value 10 ] ;
123                lv2:scalePoint [ rdfs:label "Triangle Bottomed Sine"; rdf:value 11 ] ;
124        ], [
125                a lv2:InputPort, lv2:ControlPort ;
126                lv2:index 10 ;
127                lv2:symbol "STDL" ;
128                lv2:name "LFO L/R Delay" ;
129                lv2:default -2 ;
130                lv2:minimum -64 ;
131                lv2:maximum 63 ;
132                lv2:portProperty lv2:integer ;
133        ], [
134                a lv2:InputPort, lv2:ControlPort ;
135                lv2:index 11 ;
136                lv2:symbol "DEPTH" ;
137                lv2:name "Depth" ;
138                lv2:default 60 ;
139                lv2:minimum 0 ;
140                lv2:maximum 127 ;
141                lv2:portProperty lv2:integer ;
142        ], [
143                a lv2:InputPort, lv2:ControlPort ;
144                lv2:index 12 ;
145                lv2:symbol "FB" ;
146                lv2:name "Feedback" ;
147                lv2:default 105 ;
148                lv2:minimum 0 ;
149                lv2:maximum 127 ;
150                lv2:portProperty lv2:integer ;
151        ], [
152                a lv2:InputPort, lv2:ControlPort ;
153                lv2:index 13 ;
154                lv2:symbol "DELAY" ;
155                lv2:name "Delay" ;
156                lv2:default 25 ;
157                lv2:minimum 0 ;
158                lv2:maximum 127 ;
159                lv2:portProperty lv2:integer ;
160        ], [
161                a lv2:InputPort, lv2:ControlPort ;
162                lv2:index 14 ;
163                lv2:symbol "LRCR" ;
164                lv2:name "Left/Right Crossover" ;
165                lv2:default 0 ;
166                lv2:minimum 0 ;
167                lv2:maximum 127 ;
168                lv2:portProperty lv2:integer ;
169        ], [
170                a lv2:InputPort, lv2:ControlPort ;
171                lv2:index 15 ;
172                lv2:symbol "PHASE" ;
173                lv2:name "Phase" ;
174                lv2:default 64 ;
175                lv2:minimum 0 ;
176                lv2:maximum 127 ;
177                lv2:portProperty lv2:integer ;
178        ] ;
179	.
180
181<http://rakarrack.sourceforge.net/effects.html#awha:preset:alienwah_1>
182        a pset:Preset ;
183        lv2:appliesTo <http://rakarrack.sourceforge.net/effects.html#awha> ;
184        rdfs:seeAlso <alienwah_presets.ttl> .
185