forked from lucianodato/noise-repellent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nrepellent#stereo.ttl.in
executable file
·189 lines (185 loc) · 5.33 KB
/
nrepellent#stereo.ttl.in
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
@prefix doap: <http://usefulinc.com/ns/doap#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
@prefix param: <http://lv2plug.in/ns/ext/parameters#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix pg: <http://lv2plug.in/ns/ext/port-groups#> .
@prefix pprop: <http://lv2plug.in/ns/ext/port-props#> .
@prefix units: <http://lv2plug.in/ns/extensions/units#> .
@prefix state: <http://lv2plug.in/ns/ext/state#> .
@prefix urid: <http://lv2plug.in/ns/ext/urid#> .
<https://github.com/lucianodato#me>
a foaf:Person ;
foaf:name "Luciano Dato" ;
foaf:homepage <https://github.com/lucianodato> ;
foaf:mbox <mailto:[email protected]> .
<https://github.com/lucianodato/noise-repellent-stereo#new>
a lv2:Plugin, lv2:SpectralPlugin, lv2:UtilityPlugin, doap:Project ;
doap:maintainer <https://github.com/lucianodato#me> ;
doap:license <https://opensource.org/licenses/LGPL-3.0> ;
doap:name "Repelente de ruido"@es ,
"Répulseur de bruit"@fr ,
"Noise repellent" ;
doap:shortdesc "Un plugin LV2 para la reduccion de ruido"@es ,
"Un greffon LV2 pour la réduction du bruit à large bande"@fr ,
"An LV2 plugin for broadband noise reduction" ;
lv2:project <https://github.com/lucianodato/noise-repellent-stereo#new> ;
lv2:optionalFeature lv2:isLive, lv2:hardRTCapable ;
lv2:extensionData state:interface ;
lv2:requiredFeature urid:map ;
lv2:minorVersion @MINOR_VERSION@ ;
lv2:microVersion @MICRO_VERSION@ ;
lv2:port [
a lv2:ControlPort,
lv2:InputPort ;
lv2:index 0 ;
lv2:symbol "reduction" ;
lv2:name "Cantidad de reduccion"@es ,
"Quantité de réduction"@fr ,
"Reduction amount" ;
lv2:minimum 0.0 ;
lv2:maximum 40.0 ;
lv2:default 10.0 ;
lv2:designation lv2:threshold ;
units:unit units:db ;
units:conversion [
units:to units:coef;
];
], [
a lv2:ControlPort,
lv2:InputPort ;
lv2:index 1 ;
lv2:symbol "offset" ;
lv2:name "Fuerza de reduccion"@es ,
"Force de réduction"@fr ,
"Reduction strenght" ;
lv2:minimum 0.0 ;
lv2:maximum 12.0 ;
lv2:default 2.0 ;
lv2:designation lv2:gain ;
units:unit units:db ;
], [
a lv2:ControlPort,
lv2:InputPort ;
lv2:index 2 ;
lv2:symbol "smoothing" ;
lv2:name "Suavizado"@es ,
"Lissage"@fr ,
"Smoothing" ;
lv2:minimum 0.0 ;
lv2:maximum 100.0 ;
lv2:default 0.0 ;
units:unit units:pc ;
], [
a lv2:ControlPort,
lv2:InputPort ;
lv2:index 3 ;
lv2:symbol "whitening" ;
lv2:name "Blanqueo de residuo"@es ,
"Blanchissement du bruit"@fr ,
"Residual whitening" ;
lv2:minimum 0.0 ;
lv2:maximum 100.0 ;
lv2:default 0.0 ;
units:unit units:pc ;
], [
a lv2:ControlPort,
lv2:InputPort ;
lv2:index 4 ;
lv2:symbol "transient_protection" ;
lv2:name "Proteger transientes"@es ,
"Protéger les transitoires"@fr ,
"Protect Transients" ;
lv2:minimum 0 ;
lv2:maximum 1 ;
lv2:default 0 ;
lv2:portProperty lv2:toggled, lv2:integer ;
], [
a lv2:ControlPort,
lv2:InputPort ;
lv2:index 5 ;
lv2:symbol "noise_learn" ;
lv2:name "Aprender perfil de ruido"@es ,
"Apprendre le profil du bruit"@fr ,
"Learn noise profile" ;
lv2:minimum 0 ;
lv2:maximum 1 ;
lv2:default 0 ;
lv2:portProperty lv2:toggled, lv2:integer ;
], [
a lv2:InputPort,
lv2:ControlPort ;
lv2:index 6 ;
lv2:symbol "Residual_listen" ;
lv2:name "Escuchar Residuo"@es ,
"Écoute résiduelle"@fr ,
"Residual listen" ;
lv2:minimum 0 ;
lv2:maximum 1 ;
lv2:default 0 ;
lv2:portProperty lv2:toggled, lv2:integer ;
], [
a lv2:InputPort,
lv2:ControlPort ;
lv2:index 7 ;
lv2:symbol "reset_noise_profile" ;
lv2:name "Reiniciar perfil de ruido"@es ,
"Réinitialiser le profil de bruit"@fr ,
"Reset noise profile" ;
lv2:minimum 0 ;
lv2:maximum 1 ;
lv2:default 0 ;
lv2:portProperty lv2:toggled, lv2:integer, pprop:trigger;
], [
a lv2:InputPort, lv2:ControlPort ;
lv2:index 8 ;
lv2:name "Activar"@es ,
"Actif"@fr ,
"Enable" ;
lv2:symbol "enable" ;
lv2:minimum 0 ;
lv2:maximum 1 ;
lv2:default 1 ;
lv2:designation lv2:enabled ;
lv2:portProperty lv2:toggled, lv2:integer ;
], [
a lv2:OutputPort,
lv2:ControlPort ;
lv2:name "latency" ;
lv2:index 9 ;
lv2:symbol "latency" ;
lv2:minimum 0 ;
lv2:maximum 8192 ;
lv2:designation lv2:latency ;
lv2:portProperty lv2:integer ;
units:unit units:frame ;
], [
a lv2:AudioPort,
lv2:InputPort ;
lv2:index 10 ;
lv2:symbol "input_1" ;
lv2:name "Input" ;
], [
a lv2:AudioPort,
lv2:OutputPort ;
lv2:index 11 ;
lv2:symbol "output_1" ;
lv2:name "Output" ;
], [
a lv2:AudioPort,
lv2:InputPort ;
lv2:index 12 ;
lv2:symbol "input_2" ;
lv2:name "Input" ;
], [
a lv2:AudioPort,
lv2:OutputPort ;
lv2:index 13 ;
lv2:symbol "output_2" ;
lv2:name "Output" ;
];
rdfs:comment "Un plugin LV2 para la reduccion de ruido estereo"@es,
"Un greffon LV2 pour la réduction du bruit à large bande"@fr,
"An LV2 plugin for stereo broadband noise reduction" ;
.