[go: up one dir, main page]

File: triforce.ttl

package info (click to toggle)
triforce-lv2 0.3.2-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 140 kB
  • sloc: makefile: 39
file content (208 lines) | stat: -rw-r--r-- 5,466 bytes parent folder | download | duplicates (2)
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
# SPDX-License-Identifier: GPL-2.0-or-later
# Copyright (C) 2024 James Calligeros <jcalligeros99@gmail.com>

@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 epp: <http://lv2plug.in/ns/ext/port-props#> .

<https://chadmed.au/triforce>
    a lv2:Plugin ,
        lv2:FilterPlugin ;

    lv2:binary <triforce.so> ;

    doap:name "Triforce" ;

    lv2:requiredFeature lv2:inPlaceBroken ;
    lv2:optionalFeature lv2:hardRTCapable ;

    lv2:port [
        a lv2:InputPort ,
            lv2:AudioPort ;
        lv2:index 0 ;
        lv2:symbol "in_1" ;
        lv2:name "In Vertex"
    ] , [
       a lv2:InputPort ,
            lv2:AudioPort ;
        lv2:index 1 ;
        lv2:symbol "in_2" ;
        lv2:name "In Left/Top"
    ] , [
       a lv2:InputPort ,
            lv2:AudioPort ;
        lv2:index 2 ;
        lv2:symbol "in_3" ;
        lv2:name "In Right/Bottom"
    ], [
        a lv2:OutputPort ,
            lv2:AudioPort ;
        lv2:index 3 ;
        lv2:symbol "out" ;
        lv2:name "Out"
    ] , [
        a lv2:InputPort ,
            lv2:ControlPort ;
        lv2:index 4 ;
        lv2:symbol "h_angle" ;
        lv2:name "Horizontal Steering Angle" ;
        lv2:portProperty epp:hasStrictBounds ;
        lv2:default 0.0 ;
        lv2:minimum 0.0 ;
        lv2:maximum 360.0 ;
        lv2:scalePoint [
            rdfs:label "45" ;
            rdf:value 45.0
        ] , [
            rdfs:label "90" ;
            rdf:value 90
        ] , [
            rdfs:label "180" ;
            rdf:value 180
        ], [
            rdfs:label "270" ;
            rdf:value 270
        ]
    ] , [
        a lv2:InputPort ,
            lv2:ControlPort ;
        lv2:index 5 ;
        lv2:symbol "v_angle" ;
        lv2:name "Vertical Steering Angle" ;
        lv2:portProperty epp:hasStrictBounds ;
        lv2:default 0.0 ;
        lv2:minimum 0.0 ;
        lv2:maximum 360.0 ;
        lv2:scalePoint [
            rdfs:label "45" ;
            rdf:value 45.0
        ] , [
            rdfs:label "90" ;
            rdf:value 90
        ] , [
            rdfs:label "180" ;
            rdf:value 180
        ], [
            rdfs:label "270" ;
            rdf:value 270
        ]
    ] , [
        a lv2:InputPort ,
            lv2:ControlPort ;
        lv2:index 6 ;
        lv2:symbol "opt_freq" ;
        lv2:name "Target Frequency" ;
        lv2:portProperty epp:logarithmic ;
        lv2:portProperty epp:hasStrictBounds;
        lv2:default 2000.0 ;
        lv2:minimum 20.0 ;
        lv2:maximum 20000.0 ;
    ] , [
        a lv2:InputPort ,
            lv2:ControlPort ;
        lv2:index 7 ;
        lv2:symbol "t_win" ;
        lv2:name "Time Window" ;
        lv2:portProperty epp:hasStrictBounds ;
        lv2:default 100 ;
        lv2:minimum 100 ;
        lv2:maximum 3500 ;
        units:unit units:ms ;
        lv2:scalePoint [
            rdfs:label "20" ;
            rdf:value 20
        ] , [
            rdfs:label "100" ;
            rdf:value 100
        ] , [
            rdfs:label "200" ;
            rdf:value 200
        ]
    ] , [
        a lv2:InputPort ,
            lv2:ControlPort ;
        lv2:index 8 ;
        lv2:symbol "mic2_x" ;
        lv2:name "Mic 2 x" ;
        lv2:portProperty epp:hasStrictBounds ;
        lv2:default 0.02 ;
        lv2:minimum 0.00 ;
        lv2:maximum 1 ;
        units:unit units:m ;
        lv2:scalePoint [
            rdfs:label "0.02" ;
            rdf:value 0.02
        ] , [
            rdfs:label "0.05" ;
            rdf:value 0.05
        ] , [
            rdfs:label "0.1" ;
            rdf:value 0.1
        ]
    ], [
        a lv2:InputPort ,
            lv2:ControlPort ;
        lv2:index 9 ;
        lv2:symbol "mic2_y" ;
        lv2:name "Mic 2 y" ;
        lv2:portProperty epp:hasStrictBounds ;
        lv2:default 0.02 ;
        lv2:minimum 0.00 ;
        lv2:maximum 1 ;
        units:unit units:m ;
        lv2:scalePoint [
            rdfs:label "0.02" ;
            rdf:value 0.02
        ] , [
            rdfs:label "0.05" ;
            rdf:value 0.05
        ] , [
            rdfs:label "0.1" ;
            rdf:value 0.1
        ]
    ] , [
        a lv2:InputPort ,
            lv2:ControlPort ;
        lv2:index 10 ;
        lv2:symbol "mic3_x" ;
        lv2:name "Mic 3 x" ;
        lv2:portProperty epp:hasStrictBounds ;
        lv2:default 0.02 ;
        lv2:minimum 0.00 ;
        lv2:maximum 1 ;
        units:unit units:m ;
        lv2:scalePoint [
            rdfs:label "0.02" ;
            rdf:value 0.02
        ] , [
            rdfs:label "0.05" ;
            rdf:value 0.05
        ] , [
            rdfs:label "0.1" ;
            rdf:value 0.1
        ]
    ] , [
        a lv2:InputPort ,
            lv2:ControlPort ;
        lv2:index 11 ;
        lv2:symbol "mic3_y" ;
        lv2:name "Mic 3 y" ;
        lv2:portProperty epp:hasStrictBounds ;
        lv2:default 0.02 ;
        lv2:minimum 0.00 ;
        lv2:maximum 1 ;
        units:unit units:m ;
        lv2:scalePoint [
            rdfs:label "0.02" ;
            rdf:value 0.02
        ] , [
            rdfs:label "0.05" ;
            rdf:value 0.05
        ] , [
            rdfs:label "0.1" ;
            rdf:value 0.1
        ]
    ] .