-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpsx-reverb.ttl
116 lines (114 loc) · 4.12 KB
/
psx-reverb.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
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
# 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 epp: <http://lv2plug.in/ns/ext/port-props#> .
# First the type of the plugin is described. All plugins must explicitly list
# `lv2:Plugin` as a type. A more specific type should also be given, where
# applicable, so hosts can present a nicer UI for loading plugins. Note that
# this URI is the identifier of the plugin, so if it does not match the one in
# `manifest.ttl`, the host will not discover the plugin data at all.
<http://github.com/ipatix/lv2-psx-reverb>
a lv2:Plugin ,
lv2:Effect ;
# Plugins are associated with a project, where common information like
# developers, home page, and so on are described. This plugin is part of the
# LV2 project, which has URI <http://lv2plug.in/ns/lv2>, and is described
# elsewhere. Typical plugin collections will describe the project in
# manifest.ttl
lv2:project <http://github.com/ipatix/lv2-psx-reverb> ;
# Every plugin must have a name, described with the doap:name property.
# Translations to various languages can be added by putting a language tag
# after strings as shown.
doap:name "PSX Reverb" ;
doap:license <http://opensource.org/licenses/isc> ;
lv2:optionalFeature lv2:hardRTCapable ;
lv2:port [
# Every port must have at least two types, one that specifies direction
# (lv2:InputPort or lv2:OutputPort), and another to describe the data type.
# This port is a lv2:ControlPort, which means it contains a single float.
a lv2:InputPort ,
lv2:ControlPort ;
lv2:index 0 ;
lv2:symbol "wet" ;
lv2:name "Wet" ;
# An lv2:ControlPort should always describe its default value, and usually a
# minimum and maximum value. Defining a range is not strictly required, but
# should be done wherever possible to aid host support, particularly for UIs.
lv2:default 0.0 ;
lv2:minimum -30.0 ;
lv2:maximum 12.0 ;
# Ports can describe units and control detents to allow better UI generation
# and host automation.
units:unit units:db
] , [
a lv2:InputPort ,
lv2:ControlPort ;
lv2:index 1 ;
lv2:symbol "dry" ;
lv2:name "Dry" ;
lv2:default 0.0 ;
lv2:minimum -30.0 ;
lv2:maximum 12.0 ;
units:unit units:db
] , [
a lv2:InputPort ,
lv2:ControlPort ;
lv2:index 2 ;
lv2:symbol "preset" ;
lv2:name "Preset" ;
lv2:portProperty epp:hasStrictBounds ;
lv2:portProperty lv2:integer ;
lv2:portProperty lv2:enumeration ;
lv2:scalePoint [ rdfs:label "Room"; rdf:value 0 ] ;
lv2:scalePoint [ rdfs:label "Studio Small"; rdf:value 1 ] ;
lv2:scalePoint [ rdfs:label "Studio Medium"; rdf:value 2 ] ;
lv2:scalePoint [ rdfs:label "Studio Large"; rdf:value 3 ] ;
lv2:scalePoint [ rdfs:label "Hall"; rdf:value 4 ] ;
lv2:scalePoint [ rdfs:label "Half Echo"; rdf:value 5 ] ;
lv2:scalePoint [ rdfs:label "Space Echo"; rdf:value 6 ] ;
lv2:scalePoint [ rdfs:label "Chaos Echo"; rdf:value 7 ] ;
lv2:scalePoint [ rdfs:label "Delay"; rdf:value 8 ] ;
lv2:scalePoint [ rdfs:label "Off"; rdf:value 9 ] ;
lv2:default 0 ;
lv2:minimum 0 ;
lv2:maximum 9 ;
] , [
a lv2:InputPort ,
lv2:ControlPort ;
lv2:index 3 ;
lv2:symbol "master" ;
lv2:name "Master" ;
lv2:default 0.0 ;
lv2:minimum -30.0 ;
lv2:maximum 12.0 ;
units:unit units:db
] , [
a lv2:InputPort ,
lv2:AudioPort ;
lv2:index 4 ;
lv2:symbol "main_in_0" ;
lv2:name "main-in-L"
] , [
a lv2:InputPort ,
lv2:AudioPort ;
lv2:index 5 ;
lv2:symbol "main_in_1" ;
lv2:name "main-in-R"
] , [
a lv2:OutputPort ,
lv2:AudioPort ;
lv2:index 6 ;
lv2:symbol "main_out_0" ;
lv2:name "main-out-L"
] , [
a lv2:OutputPort ,
lv2:AudioPort ;
lv2:index 7 ;
lv2:symbol "main_out_1" ;
lv2:name "main-out-R"
] .