-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsdlmeter.ttl
36 lines (34 loc) · 1.07 KB
/
sdlmeter.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
@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 ui: <http://lv2plug.in/ns/extensions/ui#>.
<http://m4l3z.abod.co/plugin/sdlmeter#ui>
a ui:X11UI;
lv2:requiredFeature ui:idleInterface ;
lv2:requiredFeature ui:parent ;
lv2:optionalFeature ui:resize ;
lv2:extensionData ui:idleInterface, ui:resize ;
lv2:binary <sdlmeterui.so>.
<http://m4l3z.abod.co/plugin/sdlmeter>
a lv2:Plugin ,
lv2:AnalyzerPlugin;
lv2:project <http://lv2plug.in/ns/lv2> ;
doap:name "SDL Meter" ;
doap:license <http://opensource.org/licenses/isc> ;
ui:ui <http://m4l3z.abod.co/plugin/sdlmeter#ui> ;
lv2:optionalFeature lv2:hardRTCapable ;
lv2:port [
a lv2:AudioPort ,
lv2:InputPort ;
lv2:index 0 ;
lv2:symbol "in" ;
lv2:name "In"
] , [
a lv2:AudioPort ,
lv2:OutputPort ;
lv2:index 1 ;
lv2:symbol "out" ;
lv2:name "Out"
] .