Chris@1
|
1 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
Chris@1
|
2 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
|
Chris@1
|
3 @prefix vamp: <http://purl.org/ontology/vamp/> .
|
Chris@1
|
4 @prefix plugbase: <http://www.vamp-plugins.org/rdf/plugins/vamp-libxtract#> .
|
Chris@1
|
5 @prefix owl: <http://www.w3.org/2002/07/owl#> .
|
Chris@1
|
6 @prefix dc: <http://purl.org/dc/elements/1.1/> .
|
Chris@1
|
7 @prefix af: <http://purl.org/ontology/af/> .
|
Chris@1
|
8 @prefix foaf: <http://xmlns.com/foaf/0.1/> .
|
Chris@1
|
9 @prefix cc: <http://web.resource.org/cc/> .
|
Chris@1
|
10 @prefix : <> .
|
Chris@1
|
11
|
Chris@1
|
12 <> a vamp:PluginDescription ;
|
Chris@1
|
13 foaf:maker <none> ;
|
Chris@1
|
14 foaf:maker <http://www.vamp-plugins.org/doap.rdf#template-generator> ;
|
Chris@1
|
15 foaf:primaryTopic <http://www.vamp-plugins.org/rdf/plugins/vamp-libxtract> .
|
Chris@1
|
16
|
Chris@1
|
17 :vamp-libxtract a vamp:PluginLibrary ;
|
Chris@1
|
18 vamp:identifier "vamp-libxtract" ;
|
Chris@1
|
19 vamp:available_plugin plugbase:amdf;
|
Chris@1
|
20 vamp:available_plugin plugbase:asdf;
|
Chris@1
|
21 vamp:available_plugin plugbase:autocorrelation;
|
Chris@1
|
22 vamp:available_plugin plugbase:average_deviation;
|
Chris@1
|
23 vamp:available_plugin plugbase:bark_coefficients;
|
Chris@1
|
24 vamp:available_plugin plugbase:crest;
|
Chris@1
|
25 vamp:available_plugin plugbase:dct;
|
Chris@1
|
26 vamp:available_plugin plugbase:f0;
|
Chris@1
|
27 vamp:available_plugin plugbase:failsafe_f0;
|
Chris@1
|
28 vamp:available_plugin plugbase:flatness;
|
Chris@1
|
29 vamp:available_plugin plugbase:harmonic_spectrum;
|
Chris@1
|
30 vamp:available_plugin plugbase:highest_value;
|
Chris@1
|
31 vamp:available_plugin plugbase:irregularity_j;
|
Chris@1
|
32 vamp:available_plugin plugbase:irregularity_k;
|
Chris@1
|
33 vamp:available_plugin plugbase:kurtosis;
|
Chris@1
|
34 vamp:available_plugin plugbase:loudness;
|
Chris@1
|
35 vamp:available_plugin plugbase:lowest_value;
|
Chris@1
|
36 vamp:available_plugin plugbase:mean;
|
Chris@1
|
37 vamp:available_plugin plugbase:mfcc;
|
Chris@1
|
38 vamp:available_plugin plugbase:noisiness;
|
Chris@1
|
39 vamp:available_plugin plugbase:nonzero_count;
|
Chris@1
|
40 vamp:available_plugin plugbase:odd_even_ratio;
|
Chris@1
|
41 vamp:available_plugin plugbase:peak_spectrum;
|
Chris@1
|
42 vamp:available_plugin plugbase:rms_amplitude;
|
Chris@1
|
43 vamp:available_plugin plugbase:rolloff;
|
Chris@1
|
44 vamp:available_plugin plugbase:sharpness;
|
Chris@1
|
45 vamp:available_plugin plugbase:skewness;
|
Chris@1
|
46 vamp:available_plugin plugbase:smoothness;
|
Chris@1
|
47 vamp:available_plugin plugbase:spectral_average_deviation;
|
Chris@1
|
48 vamp:available_plugin plugbase:spectral_centroid;
|
Chris@1
|
49 vamp:available_plugin plugbase:spectral_inharmonicity;
|
Chris@1
|
50 vamp:available_plugin plugbase:spectral_kurtosis;
|
Chris@1
|
51 vamp:available_plugin plugbase:spectral_skewness;
|
Chris@1
|
52 vamp:available_plugin plugbase:spectral_slope;
|
Chris@1
|
53 vamp:available_plugin plugbase:spectral_standard_deviation;
|
Chris@1
|
54 vamp:available_plugin plugbase:spectral_variance;
|
Chris@1
|
55 vamp:available_plugin plugbase:spectrum;
|
Chris@1
|
56 vamp:available_plugin plugbase:spread;
|
Chris@1
|
57 vamp:available_plugin plugbase:standard_deviation;
|
Chris@1
|
58 vamp:available_plugin plugbase:sum;
|
Chris@1
|
59 vamp:available_plugin plugbase:tonality;
|
Chris@1
|
60 vamp:available_plugin plugbase:tristimulus_1;
|
Chris@1
|
61 vamp:available_plugin plugbase:tristimulus_2;
|
Chris@1
|
62 vamp:available_plugin plugbase:tristimulus_3;
|
Chris@1
|
63 vamp:available_plugin plugbase:variance;
|
Chris@1
|
64 vamp:available_plugin plugbase:zcr .
|
Chris@1
|
65
|
Chris@1
|
66 plugbase:amdf a vamp:Plugin ;
|
Chris@1
|
67 dc:title "Average Magnitude Difference Function" ;
|
Chris@1
|
68 vamp:name "Average Magnitude Difference Function" ;
|
Chris@1
|
69 dc:description "Extract the AMDF of an audio signal" ;
|
Chris@1
|
70 foaf:maker [ foaf:name "libxtract by Jamie Bullock (plugin by Chris Cannam)" ] ; # FIXME could give plugin author's URI here
|
Chris@1
|
71 # cc:license <Place plugin license URI here and uncomment> ;
|
Chris@1
|
72 vamp:identifier "amdf" ;
|
Chris@2
|
73 vamp:vamp_API_version vamp:api_version_2 ;
|
Chris@1
|
74 owl:versionInfo "2" ;
|
Chris@1
|
75 vamp:input_domain vamp:TimeDomain ;
|
Chris@1
|
76
|
Chris@1
|
77 vamp:output plugbase:amdf_output_amdf ;
|
Chris@1
|
78 .
|
Chris@1
|
79 plugbase:amdf_output_amdf a vamp:DenseOutput ;
|
Chris@1
|
80 vamp:identifier "amdf" ;
|
Chris@1
|
81 dc:title "Average Magnitude Difference Function" ;
|
Chris@1
|
82 dc:description "Extract the AMDF of an audio signal" ;
|
Chris@1
|
83 vamp:fixed_bin_count "true" ;
|
Chris@1
|
84 vamp:unit "" ;
|
Chris@1
|
85 vamp:bin_count 0 ;
|
Chris@1
|
86 vamp:bin_names ();
|
Chris@1
|
87 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@1
|
88 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@1
|
89 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@1
|
90 .
|
Chris@1
|
91 plugbase:asdf a vamp:Plugin ;
|
Chris@1
|
92 dc:title "Average Squared Difference Function" ;
|
Chris@1
|
93 vamp:name "Average Squared Difference Function" ;
|
Chris@1
|
94 dc:description "Extract the ASDF of an audio signal" ;
|
Chris@1
|
95 foaf:maker [ foaf:name "libxtract by Jamie Bullock (plugin by Chris Cannam)" ] ; # FIXME could give plugin author's URI here
|
Chris@1
|
96 # cc:license <Place plugin license URI here and uncomment> ;
|
Chris@1
|
97 vamp:identifier "asdf" ;
|
Chris@2
|
98 vamp:vamp_API_version vamp:api_version_2 ;
|
Chris@1
|
99 owl:versionInfo "2" ;
|
Chris@1
|
100 vamp:input_domain vamp:TimeDomain ;
|
Chris@1
|
101
|
Chris@1
|
102 vamp:output plugbase:asdf_output_asdf ;
|
Chris@1
|
103 .
|
Chris@1
|
104 plugbase:asdf_output_asdf a vamp:DenseOutput ;
|
Chris@1
|
105 vamp:identifier "asdf" ;
|
Chris@1
|
106 dc:title "Average Squared Difference Function" ;
|
Chris@1
|
107 dc:description "Extract the ASDF of an audio signal" ;
|
Chris@1
|
108 vamp:fixed_bin_count "true" ;
|
Chris@1
|
109 vamp:unit "" ;
|
Chris@1
|
110 vamp:bin_count 0 ;
|
Chris@1
|
111 vamp:bin_names ();
|
Chris@1
|
112 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@1
|
113 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@1
|
114 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@1
|
115 .
|
Chris@1
|
116 plugbase:autocorrelation a vamp:Plugin ;
|
Chris@1
|
117 dc:title "Autocorrelation" ;
|
Chris@1
|
118 vamp:name "Autocorrelation" ;
|
Chris@1
|
119 dc:description "Extract the autocorrelation of an audio signal" ;
|
Chris@1
|
120 foaf:maker [ foaf:name "libxtract by Jamie Bullock (plugin by Chris Cannam)" ] ; # FIXME could give plugin author's URI here
|
Chris@1
|
121 # cc:license <Place plugin license URI here and uncomment> ;
|
Chris@1
|
122 vamp:identifier "autocorrelation" ;
|
Chris@2
|
123 vamp:vamp_API_version vamp:api_version_2 ;
|
Chris@1
|
124 owl:versionInfo "2" ;
|
Chris@1
|
125 vamp:input_domain vamp:TimeDomain ;
|
Chris@1
|
126
|
Chris@1
|
127 vamp:output plugbase:autocorrelation_output_autocorrelation ;
|
Chris@1
|
128 .
|
Chris@1
|
129 plugbase:autocorrelation_output_autocorrelation a vamp:DenseOutput ;
|
Chris@1
|
130 vamp:identifier "autocorrelation" ;
|
Chris@1
|
131 dc:title "Autocorrelation" ;
|
Chris@1
|
132 dc:description "Extract the autocorrelation of an audio signal" ;
|
Chris@1
|
133 vamp:fixed_bin_count "true" ;
|
Chris@1
|
134 vamp:unit "" ;
|
Chris@1
|
135 vamp:bin_count 0 ;
|
Chris@1
|
136 vamp:bin_names ();
|
Chris@1
|
137 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@1
|
138 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@1
|
139 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@1
|
140 .
|
Chris@1
|
141 plugbase:average_deviation a vamp:Plugin ;
|
Chris@1
|
142 dc:title "Average Deviation" ;
|
Chris@1
|
143 vamp:name "Average Deviation" ;
|
Chris@1
|
144 dc:description "Extract the average deviation of a range of values" ;
|
Chris@1
|
145 foaf:maker [ foaf:name "libxtract by Jamie Bullock (plugin by Chris Cannam)" ] ; # FIXME could give plugin author's URI here
|
Chris@1
|
146 # cc:license <Place plugin license URI here and uncomment> ;
|
Chris@1
|
147 vamp:identifier "average_deviation" ;
|
Chris@2
|
148 vamp:vamp_API_version vamp:api_version_2 ;
|
Chris@1
|
149 owl:versionInfo "2" ;
|
Chris@1
|
150 vamp:input_domain vamp:FrequencyDomain ;
|
Chris@1
|
151
|
Chris@1
|
152 vamp:output plugbase:average_deviation_output_average_deviation ;
|
Chris@1
|
153 .
|
Chris@1
|
154 plugbase:average_deviation_output_average_deviation a vamp:DenseOutput ;
|
Chris@1
|
155 vamp:identifier "average_deviation" ;
|
Chris@1
|
156 dc:title "Average Deviation" ;
|
Chris@1
|
157 dc:description "Extract the average deviation of a range of values" ;
|
Chris@1
|
158 vamp:fixed_bin_count "true" ;
|
Chris@1
|
159 vamp:unit "" ;
|
Chris@1
|
160 vamp:bin_count 0 ;
|
Chris@1
|
161 vamp:bin_names ();
|
Chris@1
|
162 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@1
|
163 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@1
|
164 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@1
|
165 .
|
Chris@1
|
166 plugbase:bark_coefficients a vamp:Plugin ;
|
Chris@1
|
167 dc:title "Bark Coefficients" ;
|
Chris@1
|
168 vamp:name "Bark Coefficients" ;
|
Chris@1
|
169 dc:description "Extract bark coefficients from an audio spectrum" ;
|
Chris@1
|
170 foaf:maker [ foaf:name "libxtract by Jamie Bullock (plugin by Chris Cannam)" ] ; # FIXME could give plugin author's URI here
|
Chris@1
|
171 # cc:license <Place plugin license URI here and uncomment> ;
|
Chris@1
|
172 vamp:identifier "bark_coefficients" ;
|
Chris@2
|
173 vamp:vamp_API_version vamp:api_version_2 ;
|
Chris@1
|
174 owl:versionInfo "2" ;
|
Chris@1
|
175 vamp:input_domain vamp:FrequencyDomain ;
|
Chris@1
|
176
|
Chris@1
|
177 vamp:output plugbase:bark_coefficients_output_bark_coefficients ;
|
Chris@1
|
178 .
|
Chris@1
|
179 plugbase:bark_coefficients_output_bark_coefficients a vamp:DenseOutput ;
|
Chris@1
|
180 vamp:identifier "bark_coefficients" ;
|
Chris@1
|
181 dc:title "Bark Coefficients" ;
|
Chris@1
|
182 dc:description "Extract bark coefficients from an audio spectrum" ;
|
Chris@1
|
183 vamp:fixed_bin_count "true" ;
|
Chris@1
|
184 vamp:unit "" ;
|
Chris@1
|
185 vamp:bin_count 0 ;
|
Chris@1
|
186 vamp:bin_names ();
|
Chris@1
|
187 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@1
|
188 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@1
|
189 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@1
|
190 .
|
Chris@1
|
191 plugbase:crest a vamp:Plugin ;
|
Chris@1
|
192 dc:title "Spectral Crest Measure" ;
|
Chris@1
|
193 vamp:name "Spectral Crest Measure" ;
|
Chris@1
|
194 dc:description "Extract the spectral crest measure of an audio spectrum" ;
|
Chris@1
|
195 foaf:maker [ foaf:name "libxtract by Jamie Bullock (plugin by Chris Cannam)" ] ; # FIXME could give plugin author's URI here
|
Chris@1
|
196 # cc:license <Place plugin license URI here and uncomment> ;
|
Chris@1
|
197 vamp:identifier "crest" ;
|
Chris@2
|
198 vamp:vamp_API_version vamp:api_version_2 ;
|
Chris@1
|
199 owl:versionInfo "2" ;
|
Chris@1
|
200 vamp:input_domain vamp:FrequencyDomain ;
|
Chris@1
|
201
|
Chris@1
|
202 vamp:output plugbase:crest_output_crest ;
|
Chris@1
|
203 .
|
Chris@1
|
204 plugbase:crest_output_crest a vamp:DenseOutput ;
|
Chris@1
|
205 vamp:identifier "crest" ;
|
Chris@1
|
206 dc:title "Spectral Crest Measure" ;
|
Chris@1
|
207 dc:description "Extract the spectral crest measure of an audio spectrum" ;
|
Chris@1
|
208 vamp:fixed_bin_count "true" ;
|
Chris@1
|
209 vamp:unit "" ;
|
Chris@1
|
210 vamp:bin_count 0 ;
|
Chris@1
|
211 vamp:bin_names ();
|
Chris@1
|
212 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@1
|
213 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@1
|
214 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@1
|
215 .
|
Chris@1
|
216 plugbase:dct a vamp:Plugin ;
|
Chris@1
|
217 dc:title "Discrete Cosine Transform" ;
|
Chris@1
|
218 vamp:name "Discrete Cosine Transform" ;
|
Chris@1
|
219 dc:description "Extract the DCT of an audio signal" ;
|
Chris@1
|
220 foaf:maker [ foaf:name "libxtract by Jamie Bullock (plugin by Chris Cannam)" ] ; # FIXME could give plugin author's URI here
|
Chris@1
|
221 # cc:license <Place plugin license URI here and uncomment> ;
|
Chris@1
|
222 vamp:identifier "dct" ;
|
Chris@2
|
223 vamp:vamp_API_version vamp:api_version_2 ;
|
Chris@1
|
224 owl:versionInfo "2" ;
|
Chris@1
|
225 vamp:input_domain vamp:TimeDomain ;
|
Chris@1
|
226
|
Chris@1
|
227 vamp:output plugbase:dct_output_dct ;
|
Chris@1
|
228 .
|
Chris@1
|
229 plugbase:dct_output_dct a vamp:DenseOutput ;
|
Chris@1
|
230 vamp:identifier "dct" ;
|
Chris@1
|
231 dc:title "Discrete Cosine Transform" ;
|
Chris@1
|
232 dc:description "Extract the DCT of an audio signal" ;
|
Chris@1
|
233 vamp:fixed_bin_count "true" ;
|
Chris@1
|
234 vamp:unit "" ;
|
Chris@1
|
235 vamp:bin_count 0 ;
|
Chris@1
|
236 vamp:bin_names ();
|
Chris@1
|
237 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@1
|
238 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@1
|
239 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@1
|
240 .
|
Chris@1
|
241 plugbase:f0 a vamp:Plugin ;
|
Chris@1
|
242 dc:title "Fundamental Frequency" ;
|
Chris@1
|
243 vamp:name "Fundamental Frequency" ;
|
Chris@1
|
244 dc:description "Extract the fundamental frequency of an audio signal" ;
|
Chris@1
|
245 foaf:maker [ foaf:name "libxtract by Jamie Bullock (plugin by Chris Cannam)" ] ; # FIXME could give plugin author's URI here
|
Chris@1
|
246 # cc:license <Place plugin license URI here and uncomment> ;
|
Chris@1
|
247 vamp:identifier "f0" ;
|
Chris@2
|
248 vamp:vamp_API_version vamp:api_version_2 ;
|
Chris@1
|
249 owl:versionInfo "2" ;
|
Chris@1
|
250 vamp:input_domain vamp:TimeDomain ;
|
Chris@1
|
251
|
Chris@1
|
252 vamp:output plugbase:f0_output_f0 ;
|
Chris@1
|
253 .
|
Chris@1
|
254 plugbase:f0_output_f0 a vamp:DenseOutput ;
|
Chris@1
|
255 vamp:identifier "f0" ;
|
Chris@1
|
256 dc:title "Fundamental Frequency" ;
|
Chris@1
|
257 dc:description "Extract the fundamental frequency of an audio signal" ;
|
Chris@1
|
258 vamp:fixed_bin_count "true" ;
|
Chris@1
|
259 vamp:unit "Hz" ;
|
Chris@1
|
260 vamp:bin_count 0 ;
|
Chris@1
|
261 vamp:bin_names ();
|
Chris@1
|
262 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@1
|
263 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@1
|
264 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@1
|
265 .
|
Chris@1
|
266 plugbase:failsafe_f0 a vamp:Plugin ;
|
Chris@1
|
267 dc:title "Fundamental Frequency (failsafe)" ;
|
Chris@1
|
268 vamp:name "Fundamental Frequency (failsafe)" ;
|
Chris@1
|
269 dc:description "Extract the fundamental frequency of an audio signal (failsafe)" ;
|
Chris@1
|
270 foaf:maker [ foaf:name "libxtract by Jamie Bullock (plugin by Chris Cannam)" ] ; # FIXME could give plugin author's URI here
|
Chris@1
|
271 # cc:license <Place plugin license URI here and uncomment> ;
|
Chris@1
|
272 vamp:identifier "failsafe_f0" ;
|
Chris@2
|
273 vamp:vamp_API_version vamp:api_version_2 ;
|
Chris@1
|
274 owl:versionInfo "2" ;
|
Chris@1
|
275 vamp:input_domain vamp:TimeDomain ;
|
Chris@1
|
276
|
Chris@1
|
277 vamp:output plugbase:failsafe_f0_output_failsafe_f0 ;
|
Chris@1
|
278 .
|
Chris@1
|
279 plugbase:failsafe_f0_output_failsafe_f0 a vamp:DenseOutput ;
|
Chris@1
|
280 vamp:identifier "failsafe_f0" ;
|
Chris@1
|
281 dc:title "Fundamental Frequency (failsafe)" ;
|
Chris@1
|
282 dc:description "Extract the fundamental frequency of an audio signal (failsafe)" ;
|
Chris@1
|
283 vamp:fixed_bin_count "true" ;
|
Chris@1
|
284 vamp:unit "Hz" ;
|
Chris@1
|
285 vamp:bin_count 0 ;
|
Chris@1
|
286 vamp:bin_names ();
|
Chris@1
|
287 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@1
|
288 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@1
|
289 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@1
|
290 .
|
Chris@1
|
291 plugbase:flatness a vamp:Plugin ;
|
Chris@1
|
292 dc:title "Spectral Flatness" ;
|
Chris@1
|
293 vamp:name "Spectral Flatness" ;
|
Chris@1
|
294 dc:description "Extract the spectral flatness of an audio spectrum" ;
|
Chris@1
|
295 foaf:maker [ foaf:name "libxtract by Jamie Bullock (plugin by Chris Cannam)" ] ; # FIXME could give plugin author's URI here
|
Chris@1
|
296 # cc:license <Place plugin license URI here and uncomment> ;
|
Chris@1
|
297 vamp:identifier "flatness" ;
|
Chris@2
|
298 vamp:vamp_API_version vamp:api_version_2 ;
|
Chris@1
|
299 owl:versionInfo "2" ;
|
Chris@1
|
300 vamp:input_domain vamp:FrequencyDomain ;
|
Chris@1
|
301
|
Chris@1
|
302 vamp:output plugbase:flatness_output_flatness ;
|
Chris@1
|
303 .
|
Chris@1
|
304 plugbase:flatness_output_flatness a vamp:DenseOutput ;
|
Chris@1
|
305 vamp:identifier "flatness" ;
|
Chris@1
|
306 dc:title "Spectral Flatness" ;
|
Chris@1
|
307 dc:description "Extract the spectral flatness of an audio spectrum" ;
|
Chris@1
|
308 vamp:fixed_bin_count "true" ;
|
Chris@1
|
309 vamp:unit "" ;
|
Chris@1
|
310 vamp:bin_count 0 ;
|
Chris@1
|
311 vamp:bin_names ();
|
Chris@1
|
312 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@1
|
313 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@1
|
314 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@1
|
315 .
|
Chris@1
|
316 plugbase:harmonic_spectrum a vamp:Plugin ;
|
Chris@1
|
317 dc:title "Harmonic Spectrum" ;
|
Chris@1
|
318 vamp:name "Harmonic Spectrum" ;
|
Chris@1
|
319 dc:description "Extract the harmonics from an audio spectrum" ;
|
Chris@1
|
320 foaf:maker [ foaf:name "libxtract by Jamie Bullock (plugin by Chris Cannam)" ] ; # FIXME could give plugin author's URI here
|
Chris@1
|
321 # cc:license <Place plugin license URI here and uncomment> ;
|
Chris@1
|
322 vamp:identifier "harmonic_spectrum" ;
|
Chris@2
|
323 vamp:vamp_API_version vamp:api_version_2 ;
|
Chris@1
|
324 owl:versionInfo "2" ;
|
Chris@1
|
325 vamp:input_domain vamp:FrequencyDomain ;
|
Chris@1
|
326
|
Chris@1
|
327
|
Chris@2
|
328 vamp:parameter plugbase:harmonic_spectrum_param_peak-threshold ;
|
Chris@2
|
329 vamp:parameter plugbase:harmonic_spectrum_param_harmonic-threshold ;
|
Chris@1
|
330
|
Chris@1
|
331 vamp:output plugbase:harmonic_spectrum_output_amplitudes ;
|
Chris@1
|
332 .
|
Chris@2
|
333 plugbase:harmonic_spectrum_param_peak-threshold a vamp:Parameter ;
|
Chris@2
|
334 vamp:identifier "peak-threshold" ;
|
Chris@1
|
335 dc:title "Peak Threshold" ;
|
Chris@1
|
336 dc:format "%" ;
|
Chris@1
|
337 vamp:min_value 0 ;
|
Chris@1
|
338 vamp:max_value 100 ;
|
Chris@1
|
339 vamp:unit "%" ;
|
Chris@1
|
340 vamp:default_value 10 ;
|
Chris@1
|
341 vamp:value_names ();
|
Chris@1
|
342 .
|
Chris@2
|
343 plugbase:harmonic_spectrum_param_harmonic-threshold a vamp:Parameter ;
|
Chris@2
|
344 vamp:identifier "harmonic-threshold" ;
|
Chris@1
|
345 dc:title "Harmonic Threshold" ;
|
Chris@1
|
346 dc:format "" ;
|
Chris@1
|
347 vamp:min_value 0 ;
|
Chris@1
|
348 vamp:max_value 1 ;
|
Chris@1
|
349 vamp:unit "" ;
|
Chris@1
|
350 vamp:default_value 0.1 ;
|
Chris@1
|
351 vamp:value_names ();
|
Chris@1
|
352 .
|
Chris@1
|
353 plugbase:harmonic_spectrum_output_amplitudes a vamp:DenseOutput ;
|
Chris@1
|
354 vamp:identifier "amplitudes" ;
|
Chris@1
|
355 dc:title "Peak Amplitudes" ;
|
Chris@1
|
356 dc:description "" ;
|
Chris@1
|
357 vamp:fixed_bin_count "true" ;
|
Chris@1
|
358 vamp:unit "" ;
|
Chris@1
|
359 vamp:bin_count 0 ;
|
Chris@1
|
360 vamp:bin_names ();
|
Chris@1
|
361 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@1
|
362 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@1
|
363 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@1
|
364 .
|
Chris@1
|
365 plugbase:highest_value a vamp:Plugin ;
|
Chris@1
|
366 dc:title "Highest Value" ;
|
Chris@1
|
367 vamp:name "Highest Value" ;
|
Chris@1
|
368 dc:description "Extract the highest value from a given range" ;
|
Chris@1
|
369 foaf:maker [ foaf:name "libxtract by Jamie Bullock (plugin by Chris Cannam)" ] ; # FIXME could give plugin author's URI here
|
Chris@1
|
370 # cc:license <Place plugin license URI here and uncomment> ;
|
Chris@1
|
371 vamp:identifier "highest_value" ;
|
Chris@2
|
372 vamp:vamp_API_version vamp:api_version_2 ;
|
Chris@1
|
373 owl:versionInfo "2" ;
|
Chris@1
|
374 vamp:input_domain vamp:FrequencyDomain ;
|
Chris@1
|
375
|
Chris@1
|
376 vamp:output plugbase:highest_value_output_highest_value ;
|
Chris@1
|
377 .
|
Chris@1
|
378 plugbase:highest_value_output_highest_value a vamp:DenseOutput ;
|
Chris@1
|
379 vamp:identifier "highest_value" ;
|
Chris@1
|
380 dc:title "Highest Value" ;
|
Chris@1
|
381 dc:description "Extract the highest value from a given range" ;
|
Chris@1
|
382 vamp:fixed_bin_count "true" ;
|
Chris@1
|
383 vamp:unit "" ;
|
Chris@1
|
384 vamp:bin_count 0 ;
|
Chris@1
|
385 vamp:bin_names ();
|
Chris@1
|
386 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@1
|
387 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@1
|
388 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@1
|
389 .
|
Chris@1
|
390 plugbase:irregularity_j a vamp:Plugin ;
|
Chris@1
|
391 dc:title "Irregularity II" ;
|
Chris@1
|
392 vamp:name "Irregularity II" ;
|
Chris@1
|
393 dc:description "Extract the irregularity (type II) of an audio spectrum" ;
|
Chris@1
|
394 foaf:maker [ foaf:name "libxtract by Jamie Bullock (plugin by Chris Cannam)" ] ; # FIXME could give plugin author's URI here
|
Chris@1
|
395 # cc:license <Place plugin license URI here and uncomment> ;
|
Chris@1
|
396 vamp:identifier "irregularity_j" ;
|
Chris@2
|
397 vamp:vamp_API_version vamp:api_version_2 ;
|
Chris@1
|
398 owl:versionInfo "2" ;
|
Chris@1
|
399 vamp:input_domain vamp:FrequencyDomain ;
|
Chris@1
|
400
|
Chris@1
|
401 vamp:output plugbase:irregularity_j_output_irregularity_j ;
|
Chris@1
|
402 .
|
Chris@1
|
403 plugbase:irregularity_j_output_irregularity_j a vamp:DenseOutput ;
|
Chris@1
|
404 vamp:identifier "irregularity_j" ;
|
Chris@1
|
405 dc:title "Irregularity II" ;
|
Chris@1
|
406 dc:description "Extract the irregularity (type II) of an audio spectrum" ;
|
Chris@1
|
407 vamp:fixed_bin_count "true" ;
|
Chris@1
|
408 vamp:unit "" ;
|
Chris@1
|
409 vamp:bin_count 0 ;
|
Chris@1
|
410 vamp:bin_names ();
|
Chris@1
|
411 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@1
|
412 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@1
|
413 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@1
|
414 .
|
Chris@1
|
415 plugbase:irregularity_k a vamp:Plugin ;
|
Chris@1
|
416 dc:title "Irregularity I" ;
|
Chris@1
|
417 vamp:name "Irregularity I" ;
|
Chris@1
|
418 dc:description "Extract the irregularity (type I) of an audio spectrum" ;
|
Chris@1
|
419 foaf:maker [ foaf:name "libxtract by Jamie Bullock (plugin by Chris Cannam)" ] ; # FIXME could give plugin author's URI here
|
Chris@1
|
420 # cc:license <Place plugin license URI here and uncomment> ;
|
Chris@1
|
421 vamp:identifier "irregularity_k" ;
|
Chris@2
|
422 vamp:vamp_API_version vamp:api_version_2 ;
|
Chris@1
|
423 owl:versionInfo "2" ;
|
Chris@1
|
424 vamp:input_domain vamp:FrequencyDomain ;
|
Chris@1
|
425
|
Chris@1
|
426 vamp:output plugbase:irregularity_k_output_irregularity_k ;
|
Chris@1
|
427 .
|
Chris@1
|
428 plugbase:irregularity_k_output_irregularity_k a vamp:DenseOutput ;
|
Chris@1
|
429 vamp:identifier "irregularity_k" ;
|
Chris@1
|
430 dc:title "Irregularity I" ;
|
Chris@1
|
431 dc:description "Extract the irregularity (type I) of an audio spectrum" ;
|
Chris@1
|
432 vamp:fixed_bin_count "true" ;
|
Chris@1
|
433 vamp:unit "" ;
|
Chris@1
|
434 vamp:bin_count 0 ;
|
Chris@1
|
435 vamp:bin_names ();
|
Chris@1
|
436 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@1
|
437 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@1
|
438 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@1
|
439 .
|
Chris@1
|
440 plugbase:kurtosis a vamp:Plugin ;
|
Chris@1
|
441 dc:title "Kurtosis" ;
|
Chris@1
|
442 vamp:name "Kurtosis" ;
|
Chris@1
|
443 dc:description "Extract the kurtosis of a range of values" ;
|
Chris@1
|
444 foaf:maker [ foaf:name "libxtract by Jamie Bullock (plugin by Chris Cannam)" ] ; # FIXME could give plugin author's URI here
|
Chris@1
|
445 # cc:license <Place plugin license URI here and uncomment> ;
|
Chris@1
|
446 vamp:identifier "kurtosis" ;
|
Chris@2
|
447 vamp:vamp_API_version vamp:api_version_2 ;
|
Chris@1
|
448 owl:versionInfo "2" ;
|
Chris@1
|
449 vamp:input_domain vamp:FrequencyDomain ;
|
Chris@1
|
450
|
Chris@1
|
451 vamp:output plugbase:kurtosis_output_kurtosis ;
|
Chris@1
|
452 .
|
Chris@1
|
453 plugbase:kurtosis_output_kurtosis a vamp:DenseOutput ;
|
Chris@1
|
454 vamp:identifier "kurtosis" ;
|
Chris@1
|
455 dc:title "Kurtosis" ;
|
Chris@1
|
456 dc:description "Extract the kurtosis of a range of values" ;
|
Chris@1
|
457 vamp:fixed_bin_count "true" ;
|
Chris@1
|
458 vamp:unit "" ;
|
Chris@1
|
459 vamp:bin_count 0 ;
|
Chris@1
|
460 vamp:bin_names ();
|
Chris@1
|
461 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@1
|
462 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@1
|
463 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@1
|
464 .
|
Chris@1
|
465 plugbase:loudness a vamp:Plugin ;
|
Chris@1
|
466 dc:title "Loudness" ;
|
Chris@1
|
467 vamp:name "Loudness" ;
|
Chris@1
|
468 dc:description "Extract the loudness of an audio signal from its spectrum" ;
|
Chris@1
|
469 foaf:maker [ foaf:name "libxtract by Jamie Bullock (plugin by Chris Cannam)" ] ; # FIXME could give plugin author's URI here
|
Chris@1
|
470 # cc:license <Place plugin license URI here and uncomment> ;
|
Chris@1
|
471 vamp:identifier "loudness" ;
|
Chris@2
|
472 vamp:vamp_API_version vamp:api_version_2 ;
|
Chris@1
|
473 owl:versionInfo "2" ;
|
Chris@1
|
474 vamp:input_domain vamp:FrequencyDomain ;
|
Chris@1
|
475
|
Chris@1
|
476 vamp:output plugbase:loudness_output_loudness ;
|
Chris@1
|
477 .
|
Chris@1
|
478 plugbase:loudness_output_loudness a vamp:DenseOutput ;
|
Chris@1
|
479 vamp:identifier "loudness" ;
|
Chris@1
|
480 dc:title "Loudness" ;
|
Chris@1
|
481 dc:description "Extract the loudness of an audio signal from its spectrum" ;
|
Chris@1
|
482 vamp:fixed_bin_count "true" ;
|
Chris@1
|
483 vamp:unit "" ;
|
Chris@1
|
484 vamp:bin_count 0 ;
|
Chris@1
|
485 vamp:bin_names ();
|
Chris@1
|
486 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@1
|
487 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@1
|
488 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@1
|
489 .
|
Chris@1
|
490 plugbase:lowest_value a vamp:Plugin ;
|
Chris@1
|
491 dc:title "Lowest Value" ;
|
Chris@1
|
492 vamp:name "Lowest Value" ;
|
Chris@1
|
493 dc:description "Extract the lowest value from a given range" ;
|
Chris@1
|
494 foaf:maker [ foaf:name "libxtract by Jamie Bullock (plugin by Chris Cannam)" ] ; # FIXME could give plugin author's URI here
|
Chris@1
|
495 # cc:license <Place plugin license URI here and uncomment> ;
|
Chris@1
|
496 vamp:identifier "lowest_value" ;
|
Chris@2
|
497 vamp:vamp_API_version vamp:api_version_2 ;
|
Chris@1
|
498 owl:versionInfo "2" ;
|
Chris@1
|
499 vamp:input_domain vamp:FrequencyDomain ;
|
Chris@1
|
500
|
Chris@1
|
501 vamp:output plugbase:lowest_value_output_lowest_value ;
|
Chris@1
|
502 .
|
Chris@1
|
503 plugbase:lowest_value_output_lowest_value a vamp:DenseOutput ;
|
Chris@1
|
504 vamp:identifier "lowest_value" ;
|
Chris@1
|
505 dc:title "Lowest Value" ;
|
Chris@1
|
506 dc:description "Extract the lowest value from a given range" ;
|
Chris@1
|
507 vamp:fixed_bin_count "true" ;
|
Chris@1
|
508 vamp:unit "" ;
|
Chris@1
|
509 vamp:bin_count 0 ;
|
Chris@1
|
510 vamp:bin_names ();
|
Chris@1
|
511 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@1
|
512 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@1
|
513 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@1
|
514 .
|
Chris@1
|
515 plugbase:mean a vamp:Plugin ;
|
Chris@1
|
516 dc:title "Mean" ;
|
Chris@1
|
517 vamp:name "Mean" ;
|
Chris@1
|
518 dc:description "Extract the mean of a range of values" ;
|
Chris@1
|
519 foaf:maker [ foaf:name "libxtract by Jamie Bullock (plugin by Chris Cannam)" ] ; # FIXME could give plugin author's URI here
|
Chris@1
|
520 # cc:license <Place plugin license URI here and uncomment> ;
|
Chris@1
|
521 vamp:identifier "mean" ;
|
Chris@2
|
522 vamp:vamp_API_version vamp:api_version_2 ;
|
Chris@1
|
523 owl:versionInfo "2" ;
|
Chris@1
|
524 vamp:input_domain vamp:FrequencyDomain ;
|
Chris@1
|
525
|
Chris@1
|
526 vamp:output plugbase:mean_output_mean ;
|
Chris@1
|
527 .
|
Chris@1
|
528 plugbase:mean_output_mean a vamp:DenseOutput ;
|
Chris@1
|
529 vamp:identifier "mean" ;
|
Chris@1
|
530 dc:title "Mean" ;
|
Chris@1
|
531 dc:description "Extract the mean of a range of values" ;
|
Chris@1
|
532 vamp:fixed_bin_count "true" ;
|
Chris@1
|
533 vamp:unit "" ;
|
Chris@1
|
534 vamp:bin_count 0 ;
|
Chris@1
|
535 vamp:bin_names ();
|
Chris@1
|
536 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@1
|
537 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@1
|
538 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@1
|
539 .
|
Chris@1
|
540 plugbase:mfcc a vamp:Plugin ;
|
Chris@1
|
541 dc:title "Mel-Frequency Cepstral Coefficients" ;
|
Chris@1
|
542 vamp:name "Mel-Frequency Cepstral Coefficients" ;
|
Chris@1
|
543 dc:description "Extract MFCC from an audio spectrum" ;
|
Chris@1
|
544 foaf:maker [ foaf:name "libxtract by Jamie Bullock (plugin by Chris Cannam)" ] ; # FIXME could give plugin author's URI here
|
Chris@1
|
545 # cc:license <Place plugin license URI here and uncomment> ;
|
Chris@1
|
546 vamp:identifier "mfcc" ;
|
Chris@2
|
547 vamp:vamp_API_version vamp:api_version_2 ;
|
Chris@1
|
548 owl:versionInfo "2" ;
|
Chris@1
|
549 vamp:input_domain vamp:FrequencyDomain ;
|
Chris@1
|
550
|
Chris@1
|
551
|
Chris@1
|
552 vamp:parameter plugbase:mfcc_param_minfreq ;
|
Chris@1
|
553 vamp:parameter plugbase:mfcc_param_maxfreq ;
|
Chris@1
|
554 vamp:parameter plugbase:mfcc_param_bands ;
|
Chris@1
|
555 vamp:parameter plugbase:mfcc_param_lowestcoef ;
|
Chris@1
|
556 vamp:parameter plugbase:mfcc_param_highestcoef ;
|
Chris@1
|
557 vamp:parameter plugbase:mfcc_param_style ;
|
Chris@1
|
558
|
Chris@1
|
559 vamp:output plugbase:mfcc_output_mfcc ;
|
Chris@1
|
560 .
|
Chris@1
|
561 plugbase:mfcc_param_minfreq a vamp:Parameter ;
|
Chris@1
|
562 vamp:identifier "minfreq" ;
|
Chris@1
|
563 dc:title "Minimum Frequency" ;
|
Chris@1
|
564 dc:format "Hz" ;
|
Chris@1
|
565 vamp:min_value 0 ;
|
Chris@1
|
566 vamp:max_value 24000 ;
|
Chris@1
|
567 vamp:unit "Hz" ;
|
Chris@1
|
568 vamp:default_value 80 ;
|
Chris@1
|
569 vamp:value_names ();
|
Chris@1
|
570 .
|
Chris@1
|
571 plugbase:mfcc_param_maxfreq a vamp:Parameter ;
|
Chris@1
|
572 vamp:identifier "maxfreq" ;
|
Chris@1
|
573 dc:title "Maximum Frequency" ;
|
Chris@1
|
574 dc:format "Hz" ;
|
Chris@1
|
575 vamp:min_value 0 ;
|
Chris@1
|
576 vamp:max_value 24000 ;
|
Chris@1
|
577 vamp:unit "Hz" ;
|
Chris@1
|
578 vamp:default_value 18000 ;
|
Chris@1
|
579 vamp:value_names ();
|
Chris@1
|
580 .
|
Chris@1
|
581 plugbase:mfcc_param_bands a vamp:QuantizedParameter ;
|
Chris@1
|
582 vamp:identifier "bands" ;
|
Chris@1
|
583 dc:title "# Mel Frequency Bands" ;
|
Chris@1
|
584 dc:format "" ;
|
Chris@1
|
585 vamp:min_value 10 ;
|
Chris@1
|
586 vamp:max_value 80 ;
|
Chris@1
|
587 vamp:unit "" ;
|
Chris@1
|
588 vamp:quantize_step 1 ;
|
Chris@1
|
589 vamp:default_value 40 ;
|
Chris@1
|
590 vamp:value_names ();
|
Chris@1
|
591 .
|
Chris@1
|
592 plugbase:mfcc_param_lowestcoef a vamp:QuantizedParameter ;
|
Chris@1
|
593 vamp:identifier "lowestcoef" ;
|
Chris@1
|
594 dc:title "Lowest Coefficient Returned" ;
|
Chris@1
|
595 dc:format "" ;
|
Chris@1
|
596 vamp:min_value 0 ;
|
Chris@1
|
597 vamp:max_value 80 ;
|
Chris@1
|
598 vamp:unit "" ;
|
Chris@1
|
599 vamp:quantize_step 1 ;
|
Chris@1
|
600 vamp:default_value 0 ;
|
Chris@1
|
601 vamp:value_names ();
|
Chris@1
|
602 .
|
Chris@1
|
603 plugbase:mfcc_param_highestcoef a vamp:QuantizedParameter ;
|
Chris@1
|
604 vamp:identifier "highestcoef" ;
|
Chris@1
|
605 dc:title "Highest Coefficient Returned" ;
|
Chris@1
|
606 dc:format "" ;
|
Chris@1
|
607 vamp:min_value 0 ;
|
Chris@1
|
608 vamp:max_value 80 ;
|
Chris@1
|
609 vamp:unit "" ;
|
Chris@1
|
610 vamp:quantize_step 1 ;
|
Chris@1
|
611 vamp:default_value 20 ;
|
Chris@1
|
612 vamp:value_names ();
|
Chris@1
|
613 .
|
Chris@1
|
614 plugbase:mfcc_param_style a vamp:QuantizedParameter ;
|
Chris@1
|
615 vamp:identifier "style" ;
|
Chris@1
|
616 dc:title "MFCC Type" ;
|
Chris@1
|
617 dc:format "" ;
|
Chris@1
|
618 vamp:min_value 0 ;
|
Chris@1
|
619 vamp:max_value 1 ;
|
Chris@1
|
620 vamp:unit "" ;
|
Chris@1
|
621 vamp:quantize_step 1 ;
|
Chris@1
|
622 vamp:default_value 0 ;
|
Chris@1
|
623 vamp:value_names ( "Equal Gain" "Equal Area");
|
Chris@1
|
624 .
|
Chris@1
|
625 plugbase:mfcc_output_mfcc a vamp:DenseOutput ;
|
Chris@1
|
626 vamp:identifier "mfcc" ;
|
Chris@1
|
627 dc:title "Mel-Frequency Cepstral Coefficients" ;
|
Chris@1
|
628 dc:description "Extract MFCC from an audio spectrum" ;
|
Chris@1
|
629 vamp:fixed_bin_count "true" ;
|
Chris@1
|
630 vamp:unit "" ;
|
Chris@1
|
631 vamp:bin_count 0 ;
|
Chris@1
|
632 vamp:bin_names ();
|
Chris@1
|
633 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@1
|
634 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@1
|
635 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@1
|
636 .
|
Chris@1
|
637 plugbase:noisiness a vamp:Plugin ;
|
Chris@1
|
638 dc:title "Noisiness" ;
|
Chris@1
|
639 vamp:name "Noisiness" ;
|
Chris@1
|
640 dc:description "Extract the noisiness of an audio spectrum" ;
|
Chris@1
|
641 foaf:maker [ foaf:name "libxtract by Jamie Bullock (plugin by Chris Cannam)" ] ; # FIXME could give plugin author's URI here
|
Chris@1
|
642 # cc:license <Place plugin license URI here and uncomment> ;
|
Chris@1
|
643 vamp:identifier "noisiness" ;
|
Chris@2
|
644 vamp:vamp_API_version vamp:api_version_2 ;
|
Chris@1
|
645 owl:versionInfo "2" ;
|
Chris@1
|
646 vamp:input_domain vamp:FrequencyDomain ;
|
Chris@1
|
647
|
Chris@1
|
648
|
Chris@2
|
649 vamp:parameter plugbase:noisiness_param_peak-threshold ;
|
Chris@2
|
650 vamp:parameter plugbase:noisiness_param_harmonic-threshold ;
|
Chris@1
|
651
|
Chris@1
|
652 vamp:output plugbase:noisiness_output_noisiness ;
|
Chris@1
|
653 .
|
Chris@2
|
654 plugbase:noisiness_param_peak-threshold a vamp:Parameter ;
|
Chris@2
|
655 vamp:identifier "peak-threshold" ;
|
Chris@1
|
656 dc:title "Peak Threshold" ;
|
Chris@1
|
657 dc:format "%" ;
|
Chris@1
|
658 vamp:min_value 0 ;
|
Chris@1
|
659 vamp:max_value 100 ;
|
Chris@1
|
660 vamp:unit "%" ;
|
Chris@1
|
661 vamp:default_value 10 ;
|
Chris@1
|
662 vamp:value_names ();
|
Chris@1
|
663 .
|
Chris@2
|
664 plugbase:noisiness_param_harmonic-threshold a vamp:Parameter ;
|
Chris@2
|
665 vamp:identifier "harmonic-threshold" ;
|
Chris@1
|
666 dc:title "Harmonic Threshold" ;
|
Chris@1
|
667 dc:format "" ;
|
Chris@1
|
668 vamp:min_value 0 ;
|
Chris@1
|
669 vamp:max_value 1 ;
|
Chris@1
|
670 vamp:unit "" ;
|
Chris@1
|
671 vamp:default_value 0.1 ;
|
Chris@1
|
672 vamp:value_names ();
|
Chris@1
|
673 .
|
Chris@1
|
674 plugbase:noisiness_output_noisiness a vamp:DenseOutput ;
|
Chris@1
|
675 vamp:identifier "noisiness" ;
|
Chris@1
|
676 dc:title "Noisiness" ;
|
Chris@1
|
677 dc:description "Extract the noisiness of an audio spectrum" ;
|
Chris@1
|
678 vamp:fixed_bin_count "true" ;
|
Chris@1
|
679 vamp:unit "" ;
|
Chris@1
|
680 vamp:bin_count 0 ;
|
Chris@1
|
681 vamp:bin_names ();
|
Chris@1
|
682 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@1
|
683 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@1
|
684 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@1
|
685 .
|
Chris@1
|
686 plugbase:nonzero_count a vamp:Plugin ;
|
Chris@1
|
687 dc:title "Non-zero count" ;
|
Chris@1
|
688 vamp:name "Non-zero count" ;
|
Chris@1
|
689 dc:description "Extract the number of non-zero elements in an input spectrum" ;
|
Chris@1
|
690 foaf:maker [ foaf:name "libxtract by Jamie Bullock (plugin by Chris Cannam)" ] ; # FIXME could give plugin author's URI here
|
Chris@1
|
691 # cc:license <Place plugin license URI here and uncomment> ;
|
Chris@1
|
692 vamp:identifier "nonzero_count" ;
|
Chris@2
|
693 vamp:vamp_API_version vamp:api_version_2 ;
|
Chris@1
|
694 owl:versionInfo "2" ;
|
Chris@1
|
695 vamp:input_domain vamp:FrequencyDomain ;
|
Chris@1
|
696
|
Chris@1
|
697
|
Chris@2
|
698 vamp:parameter plugbase:nonzero_count_param_peak-threshold ;
|
Chris@1
|
699
|
Chris@1
|
700 vamp:output plugbase:nonzero_count_output_nonzero_count ;
|
Chris@1
|
701 .
|
Chris@2
|
702 plugbase:nonzero_count_param_peak-threshold a vamp:Parameter ;
|
Chris@2
|
703 vamp:identifier "peak-threshold" ;
|
Chris@1
|
704 dc:title "Peak Threshold" ;
|
Chris@1
|
705 dc:format "%" ;
|
Chris@1
|
706 vamp:min_value 0 ;
|
Chris@1
|
707 vamp:max_value 100 ;
|
Chris@1
|
708 vamp:unit "%" ;
|
Chris@1
|
709 vamp:default_value 10 ;
|
Chris@1
|
710 vamp:value_names ();
|
Chris@1
|
711 .
|
Chris@1
|
712 plugbase:nonzero_count_output_nonzero_count a vamp:DenseOutput ;
|
Chris@1
|
713 vamp:identifier "nonzero_count" ;
|
Chris@1
|
714 dc:title "Non-zero count" ;
|
Chris@1
|
715 dc:description "Extract the number of non-zero elements in an input spectrum" ;
|
Chris@1
|
716 vamp:fixed_bin_count "true" ;
|
Chris@1
|
717 vamp:unit "" ;
|
Chris@1
|
718 vamp:bin_count 0 ;
|
Chris@1
|
719 vamp:bin_names ();
|
Chris@1
|
720 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@1
|
721 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@1
|
722 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@1
|
723 .
|
Chris@1
|
724 plugbase:odd_even_ratio a vamp:Plugin ;
|
Chris@1
|
725 dc:title "Odd/even Harmonic Ratio" ;
|
Chris@1
|
726 vamp:name "Odd/even Harmonic Ratio" ;
|
Chris@1
|
727 dc:description "Extract the odd-to-even harmonic ratio of an audio spectrum" ;
|
Chris@1
|
728 foaf:maker [ foaf:name "libxtract by Jamie Bullock (plugin by Chris Cannam)" ] ; # FIXME could give plugin author's URI here
|
Chris@1
|
729 # cc:license <Place plugin license URI here and uncomment> ;
|
Chris@1
|
730 vamp:identifier "odd_even_ratio" ;
|
Chris@2
|
731 vamp:vamp_API_version vamp:api_version_2 ;
|
Chris@1
|
732 owl:versionInfo "2" ;
|
Chris@1
|
733 vamp:input_domain vamp:FrequencyDomain ;
|
Chris@1
|
734
|
Chris@1
|
735
|
Chris@2
|
736 vamp:parameter plugbase:odd_even_ratio_param_peak-threshold ;
|
Chris@2
|
737 vamp:parameter plugbase:odd_even_ratio_param_harmonic-threshold ;
|
Chris@1
|
738
|
Chris@1
|
739 vamp:output plugbase:odd_even_ratio_output_odd_even_ratio ;
|
Chris@1
|
740 .
|
Chris@2
|
741 plugbase:odd_even_ratio_param_peak-threshold a vamp:Parameter ;
|
Chris@2
|
742 vamp:identifier "peak-threshold" ;
|
Chris@1
|
743 dc:title "Peak Threshold" ;
|
Chris@1
|
744 dc:format "%" ;
|
Chris@1
|
745 vamp:min_value 0 ;
|
Chris@1
|
746 vamp:max_value 100 ;
|
Chris@1
|
747 vamp:unit "%" ;
|
Chris@1
|
748 vamp:default_value 10 ;
|
Chris@1
|
749 vamp:value_names ();
|
Chris@1
|
750 .
|
Chris@2
|
751 plugbase:odd_even_ratio_param_harmonic-threshold a vamp:Parameter ;
|
Chris@2
|
752 vamp:identifier "harmonic-threshold" ;
|
Chris@1
|
753 dc:title "Harmonic Threshold" ;
|
Chris@1
|
754 dc:format "" ;
|
Chris@1
|
755 vamp:min_value 0 ;
|
Chris@1
|
756 vamp:max_value 1 ;
|
Chris@1
|
757 vamp:unit "" ;
|
Chris@1
|
758 vamp:default_value 0.1 ;
|
Chris@1
|
759 vamp:value_names ();
|
Chris@1
|
760 .
|
Chris@1
|
761 plugbase:odd_even_ratio_output_odd_even_ratio a vamp:DenseOutput ;
|
Chris@1
|
762 vamp:identifier "odd_even_ratio" ;
|
Chris@1
|
763 dc:title "Odd/even Harmonic Ratio" ;
|
Chris@1
|
764 dc:description "Extract the odd-to-even harmonic ratio of an audio spectrum" ;
|
Chris@1
|
765 vamp:fixed_bin_count "true" ;
|
Chris@1
|
766 vamp:unit "" ;
|
Chris@1
|
767 vamp:bin_count 0 ;
|
Chris@1
|
768 vamp:bin_names ();
|
Chris@1
|
769 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@1
|
770 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@1
|
771 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@1
|
772 .
|
Chris@1
|
773 plugbase:peak_spectrum a vamp:Plugin ;
|
Chris@1
|
774 dc:title "Peak Spectrum" ;
|
Chris@1
|
775 vamp:name "Peak Spectrum" ;
|
Chris@1
|
776 dc:description "Extract the spectral peaks from an audio spectrum" ;
|
Chris@1
|
777 foaf:maker [ foaf:name "libxtract by Jamie Bullock (plugin by Chris Cannam)" ] ; # FIXME could give plugin author's URI here
|
Chris@1
|
778 # cc:license <Place plugin license URI here and uncomment> ;
|
Chris@1
|
779 vamp:identifier "peak_spectrum" ;
|
Chris@2
|
780 vamp:vamp_API_version vamp:api_version_2 ;
|
Chris@1
|
781 owl:versionInfo "2" ;
|
Chris@1
|
782 vamp:input_domain vamp:FrequencyDomain ;
|
Chris@1
|
783
|
Chris@1
|
784
|
Chris@2
|
785 vamp:parameter plugbase:peak_spectrum_param_peak-threshold ;
|
Chris@1
|
786
|
Chris@1
|
787 vamp:output plugbase:peak_spectrum_output_amplitudes ;
|
Chris@1
|
788 .
|
Chris@2
|
789 plugbase:peak_spectrum_param_peak-threshold a vamp:Parameter ;
|
Chris@2
|
790 vamp:identifier "peak-threshold" ;
|
Chris@1
|
791 dc:title "Peak Threshold" ;
|
Chris@1
|
792 dc:format "%" ;
|
Chris@1
|
793 vamp:min_value 0 ;
|
Chris@1
|
794 vamp:max_value 100 ;
|
Chris@1
|
795 vamp:unit "%" ;
|
Chris@1
|
796 vamp:default_value 10 ;
|
Chris@1
|
797 vamp:value_names ();
|
Chris@1
|
798 .
|
Chris@1
|
799 plugbase:peak_spectrum_output_amplitudes a vamp:DenseOutput ;
|
Chris@1
|
800 vamp:identifier "amplitudes" ;
|
Chris@1
|
801 dc:title "Peak Amplitudes" ;
|
Chris@1
|
802 dc:description "" ;
|
Chris@1
|
803 vamp:fixed_bin_count "true" ;
|
Chris@1
|
804 vamp:unit "" ;
|
Chris@1
|
805 vamp:bin_count 0 ;
|
Chris@1
|
806 vamp:bin_names ();
|
Chris@1
|
807 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@1
|
808 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@1
|
809 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@1
|
810 .
|
Chris@1
|
811 plugbase:rms_amplitude a vamp:Plugin ;
|
Chris@1
|
812 dc:title "RMS Amplitude" ;
|
Chris@1
|
813 vamp:name "RMS Amplitude" ;
|
Chris@1
|
814 dc:description "Extract the RMS amplitude of an audio signal" ;
|
Chris@1
|
815 foaf:maker [ foaf:name "libxtract by Jamie Bullock (plugin by Chris Cannam)" ] ; # FIXME could give plugin author's URI here
|
Chris@1
|
816 # cc:license <Place plugin license URI here and uncomment> ;
|
Chris@1
|
817 vamp:identifier "rms_amplitude" ;
|
Chris@2
|
818 vamp:vamp_API_version vamp:api_version_2 ;
|
Chris@1
|
819 owl:versionInfo "2" ;
|
Chris@1
|
820 vamp:input_domain vamp:TimeDomain ;
|
Chris@1
|
821
|
Chris@1
|
822 vamp:output plugbase:rms_amplitude_output_rms_amplitude ;
|
Chris@1
|
823 .
|
Chris@1
|
824 plugbase:rms_amplitude_output_rms_amplitude a vamp:DenseOutput ;
|
Chris@1
|
825 vamp:identifier "rms_amplitude" ;
|
Chris@1
|
826 dc:title "RMS Amplitude" ;
|
Chris@1
|
827 dc:description "Extract the RMS amplitude of an audio signal" ;
|
Chris@1
|
828 vamp:fixed_bin_count "true" ;
|
Chris@1
|
829 vamp:unit "" ;
|
Chris@1
|
830 vamp:bin_count 0 ;
|
Chris@1
|
831 vamp:bin_names ();
|
Chris@1
|
832 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@1
|
833 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@1
|
834 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@1
|
835 .
|
Chris@1
|
836 plugbase:rolloff a vamp:Plugin ;
|
Chris@1
|
837 dc:title "Spectral Rolloff" ;
|
Chris@1
|
838 vamp:name "Spectral Rolloff" ;
|
Chris@1
|
839 dc:description "Extract the rolloff point of an audio spectrum" ;
|
Chris@1
|
840 foaf:maker [ foaf:name "libxtract by Jamie Bullock (plugin by Chris Cannam)" ] ; # FIXME could give plugin author's URI here
|
Chris@1
|
841 # cc:license <Place plugin license URI here and uncomment> ;
|
Chris@1
|
842 vamp:identifier "rolloff" ;
|
Chris@2
|
843 vamp:vamp_API_version vamp:api_version_2 ;
|
Chris@1
|
844 owl:versionInfo "2" ;
|
Chris@1
|
845 vamp:input_domain vamp:FrequencyDomain ;
|
Chris@1
|
846
|
Chris@1
|
847
|
Chris@2
|
848 vamp:parameter plugbase:rolloff_param_rolloff-threshold ;
|
Chris@1
|
849
|
Chris@1
|
850 vamp:output plugbase:rolloff_output_rolloff ;
|
Chris@1
|
851 .
|
Chris@2
|
852 plugbase:rolloff_param_rolloff-threshold a vamp:Parameter ;
|
Chris@2
|
853 vamp:identifier "rolloff-threshold" ;
|
Chris@1
|
854 dc:title "Rolloff Threshold" ;
|
Chris@1
|
855 dc:format "%" ;
|
Chris@1
|
856 vamp:min_value 0 ;
|
Chris@1
|
857 vamp:max_value 100 ;
|
Chris@1
|
858 vamp:unit "%" ;
|
Chris@1
|
859 vamp:default_value 90 ;
|
Chris@1
|
860 vamp:value_names ();
|
Chris@1
|
861 .
|
Chris@1
|
862 plugbase:rolloff_output_rolloff a vamp:DenseOutput ;
|
Chris@1
|
863 vamp:identifier "rolloff" ;
|
Chris@1
|
864 dc:title "Spectral Rolloff" ;
|
Chris@1
|
865 dc:description "Extract the rolloff point of an audio spectrum" ;
|
Chris@1
|
866 vamp:fixed_bin_count "true" ;
|
Chris@1
|
867 vamp:unit "Hz" ;
|
Chris@1
|
868 vamp:bin_count 0 ;
|
Chris@1
|
869 vamp:bin_names ();
|
Chris@1
|
870 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@1
|
871 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@1
|
872 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@1
|
873 .
|
Chris@1
|
874 plugbase:sharpness a vamp:Plugin ;
|
Chris@1
|
875 dc:title "Spectral Sharpness" ;
|
Chris@1
|
876 vamp:name "Spectral Sharpness" ;
|
Chris@1
|
877 dc:description "Extract the spectral sharpness of an audio spectrum" ;
|
Chris@1
|
878 foaf:maker [ foaf:name "libxtract by Jamie Bullock (plugin by Chris Cannam)" ] ; # FIXME could give plugin author's URI here
|
Chris@1
|
879 # cc:license <Place plugin license URI here and uncomment> ;
|
Chris@1
|
880 vamp:identifier "sharpness" ;
|
Chris@2
|
881 vamp:vamp_API_version vamp:api_version_2 ;
|
Chris@1
|
882 owl:versionInfo "2" ;
|
Chris@1
|
883 vamp:input_domain vamp:FrequencyDomain ;
|
Chris@1
|
884
|
Chris@1
|
885 vamp:output plugbase:sharpness_output_sharpness ;
|
Chris@1
|
886 .
|
Chris@1
|
887 plugbase:sharpness_output_sharpness a vamp:DenseOutput ;
|
Chris@1
|
888 vamp:identifier "sharpness" ;
|
Chris@1
|
889 dc:title "Spectral Sharpness" ;
|
Chris@1
|
890 dc:description "Extract the spectral sharpness of an audio spectrum" ;
|
Chris@1
|
891 vamp:fixed_bin_count "true" ;
|
Chris@1
|
892 vamp:unit "" ;
|
Chris@1
|
893 vamp:bin_count 0 ;
|
Chris@1
|
894 vamp:bin_names ();
|
Chris@1
|
895 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@1
|
896 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@1
|
897 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@1
|
898 .
|
Chris@1
|
899 plugbase:skewness a vamp:Plugin ;
|
Chris@1
|
900 dc:title "Skewness" ;
|
Chris@1
|
901 vamp:name "Skewness" ;
|
Chris@1
|
902 dc:description "Extract the skewness of a range of values" ;
|
Chris@1
|
903 foaf:maker [ foaf:name "libxtract by Jamie Bullock (plugin by Chris Cannam)" ] ; # FIXME could give plugin author's URI here
|
Chris@1
|
904 # cc:license <Place plugin license URI here and uncomment> ;
|
Chris@1
|
905 vamp:identifier "skewness" ;
|
Chris@2
|
906 vamp:vamp_API_version vamp:api_version_2 ;
|
Chris@1
|
907 owl:versionInfo "2" ;
|
Chris@1
|
908 vamp:input_domain vamp:FrequencyDomain ;
|
Chris@1
|
909
|
Chris@1
|
910 vamp:output plugbase:skewness_output_skewness ;
|
Chris@1
|
911 .
|
Chris@1
|
912 plugbase:skewness_output_skewness a vamp:DenseOutput ;
|
Chris@1
|
913 vamp:identifier "skewness" ;
|
Chris@1
|
914 dc:title "Skewness" ;
|
Chris@1
|
915 dc:description "Extract the skewness of a range of values" ;
|
Chris@1
|
916 vamp:fixed_bin_count "true" ;
|
Chris@1
|
917 vamp:unit "" ;
|
Chris@1
|
918 vamp:bin_count 0 ;
|
Chris@1
|
919 vamp:bin_names ();
|
Chris@1
|
920 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@1
|
921 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@1
|
922 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@1
|
923 .
|
Chris@1
|
924 plugbase:smoothness a vamp:Plugin ;
|
Chris@1
|
925 dc:title "Spectral Smoothness" ;
|
Chris@1
|
926 vamp:name "Spectral Smoothness" ;
|
Chris@1
|
927 dc:description "Extract the spectral smoothness of an audio spectrum" ;
|
Chris@1
|
928 foaf:maker [ foaf:name "libxtract by Jamie Bullock (plugin by Chris Cannam)" ] ; # FIXME could give plugin author's URI here
|
Chris@1
|
929 # cc:license <Place plugin license URI here and uncomment> ;
|
Chris@1
|
930 vamp:identifier "smoothness" ;
|
Chris@2
|
931 vamp:vamp_API_version vamp:api_version_2 ;
|
Chris@1
|
932 owl:versionInfo "2" ;
|
Chris@1
|
933 vamp:input_domain vamp:FrequencyDomain ;
|
Chris@1
|
934
|
Chris@1
|
935 vamp:output plugbase:smoothness_output_smoothness ;
|
Chris@1
|
936 .
|
Chris@1
|
937 plugbase:smoothness_output_smoothness a vamp:DenseOutput ;
|
Chris@1
|
938 vamp:identifier "smoothness" ;
|
Chris@1
|
939 dc:title "Spectral Smoothness" ;
|
Chris@1
|
940 dc:description "Extract the spectral smoothness of an audio spectrum" ;
|
Chris@1
|
941 vamp:fixed_bin_count "true" ;
|
Chris@1
|
942 vamp:unit "" ;
|
Chris@1
|
943 vamp:bin_count 0 ;
|
Chris@1
|
944 vamp:bin_names ();
|
Chris@1
|
945 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@1
|
946 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@1
|
947 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@1
|
948 .
|
Chris@1
|
949 plugbase:spectral_average_deviation a vamp:Plugin ;
|
Chris@1
|
950 dc:title "Spectral Average Deviation" ;
|
Chris@1
|
951 vamp:name "Spectral Average Deviation" ;
|
Chris@1
|
952 dc:description "Extract the average deviation of an audio spectrum" ;
|
Chris@1
|
953 foaf:maker [ foaf:name "libxtract by Jamie Bullock (plugin by Chris Cannam)" ] ; # FIXME could give plugin author's URI here
|
Chris@1
|
954 # cc:license <Place plugin license URI here and uncomment> ;
|
Chris@1
|
955 vamp:identifier "spectral_average_deviation" ;
|
Chris@2
|
956 vamp:vamp_API_version vamp:api_version_2 ;
|
Chris@1
|
957 owl:versionInfo "2" ;
|
Chris@1
|
958 vamp:input_domain vamp:FrequencyDomain ;
|
Chris@1
|
959
|
Chris@1
|
960 vamp:output plugbase:spectral_average_deviation_output_spectral_average_deviation ;
|
Chris@1
|
961 .
|
Chris@1
|
962 plugbase:spectral_average_deviation_output_spectral_average_deviation a vamp:DenseOutput ;
|
Chris@1
|
963 vamp:identifier "spectral_average_deviation" ;
|
Chris@1
|
964 dc:title "Spectral Average Deviation" ;
|
Chris@1
|
965 dc:description "Extract the average deviation of an audio spectrum" ;
|
Chris@1
|
966 vamp:fixed_bin_count "true" ;
|
Chris@1
|
967 vamp:unit "Hz" ;
|
Chris@1
|
968 vamp:bin_count 0 ;
|
Chris@1
|
969 vamp:bin_names ();
|
Chris@1
|
970 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@1
|
971 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@1
|
972 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@1
|
973 .
|
Chris@1
|
974 plugbase:spectral_centroid a vamp:Plugin ;
|
Chris@1
|
975 dc:title "Spectral Centroid" ;
|
Chris@1
|
976 vamp:name "Spectral Centroid" ;
|
Chris@1
|
977 dc:description "Extract the spectral centroid of an audio spectrum" ;
|
Chris@1
|
978 foaf:maker [ foaf:name "libxtract by Jamie Bullock (plugin by Chris Cannam)" ] ; # FIXME could give plugin author's URI here
|
Chris@1
|
979 # cc:license <Place plugin license URI here and uncomment> ;
|
Chris@1
|
980 vamp:identifier "spectral_centroid" ;
|
Chris@2
|
981 vamp:vamp_API_version vamp:api_version_2 ;
|
Chris@1
|
982 owl:versionInfo "2" ;
|
Chris@1
|
983 vamp:input_domain vamp:FrequencyDomain ;
|
Chris@1
|
984
|
Chris@1
|
985 vamp:output plugbase:spectral_centroid_output_spectral_centroid ;
|
Chris@1
|
986 .
|
Chris@1
|
987 plugbase:spectral_centroid_output_spectral_centroid a vamp:DenseOutput ;
|
Chris@1
|
988 vamp:identifier "spectral_centroid" ;
|
Chris@1
|
989 dc:title "Spectral Centroid" ;
|
Chris@1
|
990 dc:description "Extract the spectral centroid of an audio spectrum" ;
|
Chris@1
|
991 vamp:fixed_bin_count "true" ;
|
Chris@1
|
992 vamp:unit "Hz" ;
|
Chris@1
|
993 vamp:bin_count 0 ;
|
Chris@1
|
994 vamp:bin_names ();
|
Chris@1
|
995 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@1
|
996 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@1
|
997 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@1
|
998 .
|
Chris@1
|
999 plugbase:spectral_inharmonicity a vamp:Plugin ;
|
Chris@1
|
1000 dc:title "Inharmonicity" ;
|
Chris@1
|
1001 vamp:name "Inharmonicity" ;
|
Chris@1
|
1002 dc:description "Extract the inharmonicity of an audio spectrum" ;
|
Chris@1
|
1003 foaf:maker [ foaf:name "libxtract by Jamie Bullock (plugin by Chris Cannam)" ] ; # FIXME could give plugin author's URI here
|
Chris@1
|
1004 # cc:license <Place plugin license URI here and uncomment> ;
|
Chris@1
|
1005 vamp:identifier "spectral_inharmonicity" ;
|
Chris@2
|
1006 vamp:vamp_API_version vamp:api_version_2 ;
|
Chris@1
|
1007 owl:versionInfo "2" ;
|
Chris@1
|
1008 vamp:input_domain vamp:FrequencyDomain ;
|
Chris@1
|
1009
|
Chris@1
|
1010
|
Chris@2
|
1011 vamp:parameter plugbase:spectral_inharmonicity_param_peak-threshold ;
|
Chris@1
|
1012
|
Chris@1
|
1013 vamp:output plugbase:spectral_inharmonicity_output_spectral_inharmonicity ;
|
Chris@1
|
1014 .
|
Chris@2
|
1015 plugbase:spectral_inharmonicity_param_peak-threshold a vamp:Parameter ;
|
Chris@2
|
1016 vamp:identifier "peak-threshold" ;
|
Chris@1
|
1017 dc:title "Peak Threshold" ;
|
Chris@1
|
1018 dc:format "%" ;
|
Chris@1
|
1019 vamp:min_value 0 ;
|
Chris@1
|
1020 vamp:max_value 100 ;
|
Chris@1
|
1021 vamp:unit "%" ;
|
Chris@1
|
1022 vamp:default_value 10 ;
|
Chris@1
|
1023 vamp:value_names ();
|
Chris@1
|
1024 .
|
Chris@1
|
1025 plugbase:spectral_inharmonicity_output_spectral_inharmonicity a vamp:DenseOutput ;
|
Chris@1
|
1026 vamp:identifier "spectral_inharmonicity" ;
|
Chris@1
|
1027 dc:title "Inharmonicity" ;
|
Chris@1
|
1028 dc:description "Extract the inharmonicity of an audio spectrum" ;
|
Chris@1
|
1029 vamp:fixed_bin_count "true" ;
|
Chris@1
|
1030 vamp:unit "" ;
|
Chris@1
|
1031 vamp:bin_count 0 ;
|
Chris@1
|
1032 vamp:bin_names ();
|
Chris@1
|
1033 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@1
|
1034 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@1
|
1035 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@1
|
1036 .
|
Chris@1
|
1037 plugbase:spectral_kurtosis a vamp:Plugin ;
|
Chris@1
|
1038 dc:title "Spectral Kurtosis" ;
|
Chris@1
|
1039 vamp:name "Spectral Kurtosis" ;
|
Chris@1
|
1040 dc:description "Extract the kurtosis of an audio spectrum" ;
|
Chris@1
|
1041 foaf:maker [ foaf:name "libxtract by Jamie Bullock (plugin by Chris Cannam)" ] ; # FIXME could give plugin author's URI here
|
Chris@1
|
1042 # cc:license <Place plugin license URI here and uncomment> ;
|
Chris@1
|
1043 vamp:identifier "spectral_kurtosis" ;
|
Chris@2
|
1044 vamp:vamp_API_version vamp:api_version_2 ;
|
Chris@1
|
1045 owl:versionInfo "2" ;
|
Chris@1
|
1046 vamp:input_domain vamp:FrequencyDomain ;
|
Chris@1
|
1047
|
Chris@1
|
1048 vamp:output plugbase:spectral_kurtosis_output_spectral_kurtosis ;
|
Chris@1
|
1049 .
|
Chris@1
|
1050 plugbase:spectral_kurtosis_output_spectral_kurtosis a vamp:DenseOutput ;
|
Chris@1
|
1051 vamp:identifier "spectral_kurtosis" ;
|
Chris@1
|
1052 dc:title "Spectral Kurtosis" ;
|
Chris@1
|
1053 dc:description "Extract the kurtosis of an audio spectrum" ;
|
Chris@1
|
1054 vamp:fixed_bin_count "true" ;
|
Chris@1
|
1055 vamp:unit "" ;
|
Chris@1
|
1056 vamp:bin_count 0 ;
|
Chris@1
|
1057 vamp:bin_names ();
|
Chris@1
|
1058 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@1
|
1059 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@1
|
1060 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@1
|
1061 .
|
Chris@1
|
1062 plugbase:spectral_skewness a vamp:Plugin ;
|
Chris@1
|
1063 dc:title "Spectral Skewness" ;
|
Chris@1
|
1064 vamp:name "Spectral Skewness" ;
|
Chris@1
|
1065 dc:description "Extract the skewness of an audio spectrum" ;
|
Chris@1
|
1066 foaf:maker [ foaf:name "libxtract by Jamie Bullock (plugin by Chris Cannam)" ] ; # FIXME could give plugin author's URI here
|
Chris@1
|
1067 # cc:license <Place plugin license URI here and uncomment> ;
|
Chris@1
|
1068 vamp:identifier "spectral_skewness" ;
|
Chris@2
|
1069 vamp:vamp_API_version vamp:api_version_2 ;
|
Chris@1
|
1070 owl:versionInfo "2" ;
|
Chris@1
|
1071 vamp:input_domain vamp:FrequencyDomain ;
|
Chris@1
|
1072
|
Chris@1
|
1073 vamp:output plugbase:spectral_skewness_output_spectral_skewness ;
|
Chris@1
|
1074 .
|
Chris@1
|
1075 plugbase:spectral_skewness_output_spectral_skewness a vamp:DenseOutput ;
|
Chris@1
|
1076 vamp:identifier "spectral_skewness" ;
|
Chris@1
|
1077 dc:title "Spectral Skewness" ;
|
Chris@1
|
1078 dc:description "Extract the skewness of an audio spectrum" ;
|
Chris@1
|
1079 vamp:fixed_bin_count "true" ;
|
Chris@1
|
1080 vamp:unit "" ;
|
Chris@1
|
1081 vamp:bin_count 0 ;
|
Chris@1
|
1082 vamp:bin_names ();
|
Chris@1
|
1083 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@1
|
1084 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@1
|
1085 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@1
|
1086 .
|
Chris@1
|
1087 plugbase:spectral_slope a vamp:Plugin ;
|
Chris@1
|
1088 dc:title "Spectral Slope" ;
|
Chris@1
|
1089 vamp:name "Spectral Slope" ;
|
Chris@1
|
1090 dc:description "Extract the spectral slope of an audio spectrum" ;
|
Chris@1
|
1091 foaf:maker [ foaf:name "libxtract by Jamie Bullock (plugin by Chris Cannam)" ] ; # FIXME could give plugin author's URI here
|
Chris@1
|
1092 # cc:license <Place plugin license URI here and uncomment> ;
|
Chris@1
|
1093 vamp:identifier "spectral_slope" ;
|
Chris@2
|
1094 vamp:vamp_API_version vamp:api_version_2 ;
|
Chris@1
|
1095 owl:versionInfo "2" ;
|
Chris@1
|
1096 vamp:input_domain vamp:FrequencyDomain ;
|
Chris@1
|
1097
|
Chris@1
|
1098 vamp:output plugbase:spectral_slope_output_spectral_slope ;
|
Chris@1
|
1099 .
|
Chris@1
|
1100 plugbase:spectral_slope_output_spectral_slope a vamp:DenseOutput ;
|
Chris@1
|
1101 vamp:identifier "spectral_slope" ;
|
Chris@1
|
1102 dc:title "Spectral Slope" ;
|
Chris@1
|
1103 dc:description "Extract the spectral slope of an audio spectrum" ;
|
Chris@1
|
1104 vamp:fixed_bin_count "true" ;
|
Chris@1
|
1105 vamp:unit "" ;
|
Chris@1
|
1106 vamp:bin_count 0 ;
|
Chris@1
|
1107 vamp:bin_names ();
|
Chris@1
|
1108 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@1
|
1109 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@1
|
1110 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@1
|
1111 .
|
Chris@1
|
1112 plugbase:spectral_standard_deviation a vamp:Plugin ;
|
Chris@1
|
1113 dc:title "Spectral Standard Deviation" ;
|
Chris@1
|
1114 vamp:name "Spectral Standard Deviation" ;
|
Chris@1
|
1115 dc:description "Extract the standard deviation of an audio spectrum" ;
|
Chris@1
|
1116 foaf:maker [ foaf:name "libxtract by Jamie Bullock (plugin by Chris Cannam)" ] ; # FIXME could give plugin author's URI here
|
Chris@1
|
1117 # cc:license <Place plugin license URI here and uncomment> ;
|
Chris@1
|
1118 vamp:identifier "spectral_standard_deviation" ;
|
Chris@2
|
1119 vamp:vamp_API_version vamp:api_version_2 ;
|
Chris@1
|
1120 owl:versionInfo "2" ;
|
Chris@1
|
1121 vamp:input_domain vamp:FrequencyDomain ;
|
Chris@1
|
1122
|
Chris@1
|
1123 vamp:output plugbase:spectral_standard_deviation_output_spectral_standard_deviation ;
|
Chris@1
|
1124 .
|
Chris@1
|
1125 plugbase:spectral_standard_deviation_output_spectral_standard_deviation a vamp:DenseOutput ;
|
Chris@1
|
1126 vamp:identifier "spectral_standard_deviation" ;
|
Chris@1
|
1127 dc:title "Spectral Standard Deviation" ;
|
Chris@1
|
1128 dc:description "Extract the standard deviation of an audio spectrum" ;
|
Chris@1
|
1129 vamp:fixed_bin_count "true" ;
|
Chris@1
|
1130 vamp:unit "Hz" ;
|
Chris@1
|
1131 vamp:bin_count 0 ;
|
Chris@1
|
1132 vamp:bin_names ();
|
Chris@1
|
1133 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@1
|
1134 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@1
|
1135 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@1
|
1136 .
|
Chris@1
|
1137 plugbase:spectral_variance a vamp:Plugin ;
|
Chris@1
|
1138 dc:title "Spectral Variance" ;
|
Chris@1
|
1139 vamp:name "Spectral Variance" ;
|
Chris@1
|
1140 dc:description "Extract the variance of an audio spectrum" ;
|
Chris@1
|
1141 foaf:maker [ foaf:name "libxtract by Jamie Bullock (plugin by Chris Cannam)" ] ; # FIXME could give plugin author's URI here
|
Chris@1
|
1142 # cc:license <Place plugin license URI here and uncomment> ;
|
Chris@1
|
1143 vamp:identifier "spectral_variance" ;
|
Chris@2
|
1144 vamp:vamp_API_version vamp:api_version_2 ;
|
Chris@1
|
1145 owl:versionInfo "2" ;
|
Chris@1
|
1146 vamp:input_domain vamp:FrequencyDomain ;
|
Chris@1
|
1147
|
Chris@1
|
1148 vamp:output plugbase:spectral_variance_output_spectral_variance ;
|
Chris@1
|
1149 .
|
Chris@1
|
1150 plugbase:spectral_variance_output_spectral_variance a vamp:DenseOutput ;
|
Chris@1
|
1151 vamp:identifier "spectral_variance" ;
|
Chris@1
|
1152 dc:title "Spectral Variance" ;
|
Chris@1
|
1153 dc:description "Extract the variance of an audio spectrum" ;
|
Chris@1
|
1154 vamp:fixed_bin_count "true" ;
|
Chris@1
|
1155 vamp:unit "Hz" ;
|
Chris@1
|
1156 vamp:bin_count 0 ;
|
Chris@1
|
1157 vamp:bin_names ();
|
Chris@1
|
1158 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@1
|
1159 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@1
|
1160 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@1
|
1161 .
|
Chris@1
|
1162 plugbase:spectrum a vamp:Plugin ;
|
Chris@1
|
1163 dc:title "Spectrum" ;
|
Chris@1
|
1164 vamp:name "Spectrum" ;
|
Chris@1
|
1165 dc:description "Extract the spectrum of an audio signal" ;
|
Chris@1
|
1166 foaf:maker [ foaf:name "libxtract by Jamie Bullock (plugin by Chris Cannam)" ] ; # FIXME could give plugin author's URI here
|
Chris@1
|
1167 # cc:license <Place plugin license URI here and uncomment> ;
|
Chris@1
|
1168 vamp:identifier "spectrum" ;
|
Chris@2
|
1169 vamp:vamp_API_version vamp:api_version_2 ;
|
Chris@1
|
1170 owl:versionInfo "2" ;
|
Chris@1
|
1171 vamp:input_domain vamp:TimeDomain ;
|
Chris@1
|
1172
|
Chris@1
|
1173 vamp:output plugbase:spectrum_output_amplitudes ;
|
Chris@1
|
1174 .
|
Chris@1
|
1175 plugbase:spectrum_output_amplitudes a vamp:DenseOutput ;
|
Chris@1
|
1176 vamp:identifier "amplitudes" ;
|
Chris@1
|
1177 dc:title "Peak Amplitudes" ;
|
Chris@1
|
1178 dc:description "" ;
|
Chris@1
|
1179 vamp:fixed_bin_count "true" ;
|
Chris@1
|
1180 vamp:unit "" ;
|
Chris@1
|
1181 vamp:bin_count 0 ;
|
Chris@1
|
1182 vamp:bin_names ();
|
Chris@1
|
1183 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@1
|
1184 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@1
|
1185 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@1
|
1186 .
|
Chris@1
|
1187 plugbase:spread a vamp:Plugin ;
|
Chris@1
|
1188 dc:title "Spectral Spread" ;
|
Chris@1
|
1189 vamp:name "Spectral Spread" ;
|
Chris@1
|
1190 dc:description "Extract the spectral spread of an audio spectrum" ;
|
Chris@1
|
1191 foaf:maker [ foaf:name "libxtract by Jamie Bullock (plugin by Chris Cannam)" ] ; # FIXME could give plugin author's URI here
|
Chris@1
|
1192 # cc:license <Place plugin license URI here and uncomment> ;
|
Chris@1
|
1193 vamp:identifier "spread" ;
|
Chris@2
|
1194 vamp:vamp_API_version vamp:api_version_2 ;
|
Chris@1
|
1195 owl:versionInfo "2" ;
|
Chris@1
|
1196 vamp:input_domain vamp:FrequencyDomain ;
|
Chris@1
|
1197
|
Chris@1
|
1198 vamp:output plugbase:spread_output_spread ;
|
Chris@1
|
1199 .
|
Chris@1
|
1200 plugbase:spread_output_spread a vamp:DenseOutput ;
|
Chris@1
|
1201 vamp:identifier "spread" ;
|
Chris@1
|
1202 dc:title "Spectral Spread" ;
|
Chris@1
|
1203 dc:description "Extract the spectral spread of an audio spectrum" ;
|
Chris@1
|
1204 vamp:fixed_bin_count "true" ;
|
Chris@1
|
1205 vamp:unit "Hz" ;
|
Chris@1
|
1206 vamp:bin_count 0 ;
|
Chris@1
|
1207 vamp:bin_names ();
|
Chris@1
|
1208 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@1
|
1209 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@1
|
1210 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@1
|
1211 .
|
Chris@1
|
1212 plugbase:standard_deviation a vamp:Plugin ;
|
Chris@1
|
1213 dc:title "Standard Deviation" ;
|
Chris@1
|
1214 vamp:name "Standard Deviation" ;
|
Chris@1
|
1215 dc:description "Extract the standard deviation of a range of values" ;
|
Chris@1
|
1216 foaf:maker [ foaf:name "libxtract by Jamie Bullock (plugin by Chris Cannam)" ] ; # FIXME could give plugin author's URI here
|
Chris@1
|
1217 # cc:license <Place plugin license URI here and uncomment> ;
|
Chris@1
|
1218 vamp:identifier "standard_deviation" ;
|
Chris@2
|
1219 vamp:vamp_API_version vamp:api_version_2 ;
|
Chris@1
|
1220 owl:versionInfo "2" ;
|
Chris@1
|
1221 vamp:input_domain vamp:FrequencyDomain ;
|
Chris@1
|
1222
|
Chris@1
|
1223 vamp:output plugbase:standard_deviation_output_standard_deviation ;
|
Chris@1
|
1224 .
|
Chris@1
|
1225 plugbase:standard_deviation_output_standard_deviation a vamp:DenseOutput ;
|
Chris@1
|
1226 vamp:identifier "standard_deviation" ;
|
Chris@1
|
1227 dc:title "Standard Deviation" ;
|
Chris@1
|
1228 dc:description "Extract the standard deviation of a range of values" ;
|
Chris@1
|
1229 vamp:fixed_bin_count "true" ;
|
Chris@1
|
1230 vamp:unit "" ;
|
Chris@1
|
1231 vamp:bin_count 0 ;
|
Chris@1
|
1232 vamp:bin_names ();
|
Chris@1
|
1233 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@1
|
1234 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@1
|
1235 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@1
|
1236 .
|
Chris@1
|
1237 plugbase:sum a vamp:Plugin ;
|
Chris@1
|
1238 dc:title "Sum of Values" ;
|
Chris@1
|
1239 vamp:name "Sum of Values" ;
|
Chris@1
|
1240 dc:description "Extract the sum of the values in a given range" ;
|
Chris@1
|
1241 foaf:maker [ foaf:name "libxtract by Jamie Bullock (plugin by Chris Cannam)" ] ; # FIXME could give plugin author's URI here
|
Chris@1
|
1242 # cc:license <Place plugin license URI here and uncomment> ;
|
Chris@1
|
1243 vamp:identifier "sum" ;
|
Chris@2
|
1244 vamp:vamp_API_version vamp:api_version_2 ;
|
Chris@1
|
1245 owl:versionInfo "2" ;
|
Chris@1
|
1246 vamp:input_domain vamp:FrequencyDomain ;
|
Chris@1
|
1247
|
Chris@1
|
1248 vamp:output plugbase:sum_output_sum ;
|
Chris@1
|
1249 .
|
Chris@1
|
1250 plugbase:sum_output_sum a vamp:DenseOutput ;
|
Chris@1
|
1251 vamp:identifier "sum" ;
|
Chris@1
|
1252 dc:title "Sum of Values" ;
|
Chris@1
|
1253 dc:description "Extract the sum of the values in a given range" ;
|
Chris@1
|
1254 vamp:fixed_bin_count "true" ;
|
Chris@1
|
1255 vamp:unit "" ;
|
Chris@1
|
1256 vamp:bin_count 0 ;
|
Chris@1
|
1257 vamp:bin_names ();
|
Chris@1
|
1258 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@1
|
1259 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@1
|
1260 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@1
|
1261 .
|
Chris@1
|
1262 plugbase:tonality a vamp:Plugin ;
|
Chris@1
|
1263 dc:title "Tonality" ;
|
Chris@1
|
1264 vamp:name "Tonality" ;
|
Chris@1
|
1265 dc:description "Extract the tonality an audio spectrum" ;
|
Chris@1
|
1266 foaf:maker [ foaf:name "libxtract by Jamie Bullock (plugin by Chris Cannam)" ] ; # FIXME could give plugin author's URI here
|
Chris@1
|
1267 # cc:license <Place plugin license URI here and uncomment> ;
|
Chris@1
|
1268 vamp:identifier "tonality" ;
|
Chris@2
|
1269 vamp:vamp_API_version vamp:api_version_2 ;
|
Chris@1
|
1270 owl:versionInfo "2" ;
|
Chris@1
|
1271 vamp:input_domain vamp:FrequencyDomain ;
|
Chris@1
|
1272
|
Chris@1
|
1273 vamp:output plugbase:tonality_output_tonality ;
|
Chris@1
|
1274 .
|
Chris@1
|
1275 plugbase:tonality_output_tonality a vamp:DenseOutput ;
|
Chris@1
|
1276 vamp:identifier "tonality" ;
|
Chris@1
|
1277 dc:title "Tonality" ;
|
Chris@1
|
1278 dc:description "Extract the tonality an audio spectrum" ;
|
Chris@1
|
1279 vamp:fixed_bin_count "true" ;
|
Chris@1
|
1280 vamp:unit "" ;
|
Chris@1
|
1281 vamp:bin_count 0 ;
|
Chris@1
|
1282 vamp:bin_names ();
|
Chris@1
|
1283 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@1
|
1284 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@1
|
1285 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@1
|
1286 .
|
Chris@1
|
1287 plugbase:tristimulus_1 a vamp:Plugin ;
|
Chris@1
|
1288 dc:title "Tristimulus I" ;
|
Chris@1
|
1289 vamp:name "Tristimulus I" ;
|
Chris@1
|
1290 dc:description "Extract the tristimulus (type I) of an audio spectrum" ;
|
Chris@1
|
1291 foaf:maker [ foaf:name "libxtract by Jamie Bullock (plugin by Chris Cannam)" ] ; # FIXME could give plugin author's URI here
|
Chris@1
|
1292 # cc:license <Place plugin license URI here and uncomment> ;
|
Chris@1
|
1293 vamp:identifier "tristimulus_1" ;
|
Chris@2
|
1294 vamp:vamp_API_version vamp:api_version_2 ;
|
Chris@1
|
1295 owl:versionInfo "2" ;
|
Chris@1
|
1296 vamp:input_domain vamp:FrequencyDomain ;
|
Chris@1
|
1297
|
Chris@1
|
1298
|
Chris@2
|
1299 vamp:parameter plugbase:tristimulus_1_param_peak-threshold ;
|
Chris@2
|
1300 vamp:parameter plugbase:tristimulus_1_param_harmonic-threshold ;
|
Chris@1
|
1301
|
Chris@1
|
1302 vamp:output plugbase:tristimulus_1_output_tristimulus_1 ;
|
Chris@1
|
1303 .
|
Chris@2
|
1304 plugbase:tristimulus_1_param_peak-threshold a vamp:Parameter ;
|
Chris@2
|
1305 vamp:identifier "peak-threshold" ;
|
Chris@1
|
1306 dc:title "Peak Threshold" ;
|
Chris@1
|
1307 dc:format "%" ;
|
Chris@1
|
1308 vamp:min_value 0 ;
|
Chris@1
|
1309 vamp:max_value 100 ;
|
Chris@1
|
1310 vamp:unit "%" ;
|
Chris@1
|
1311 vamp:default_value 10 ;
|
Chris@1
|
1312 vamp:value_names ();
|
Chris@1
|
1313 .
|
Chris@2
|
1314 plugbase:tristimulus_1_param_harmonic-threshold a vamp:Parameter ;
|
Chris@2
|
1315 vamp:identifier "harmonic-threshold" ;
|
Chris@1
|
1316 dc:title "Harmonic Threshold" ;
|
Chris@1
|
1317 dc:format "" ;
|
Chris@1
|
1318 vamp:min_value 0 ;
|
Chris@1
|
1319 vamp:max_value 1 ;
|
Chris@1
|
1320 vamp:unit "" ;
|
Chris@1
|
1321 vamp:default_value 0.1 ;
|
Chris@1
|
1322 vamp:value_names ();
|
Chris@1
|
1323 .
|
Chris@1
|
1324 plugbase:tristimulus_1_output_tristimulus_1 a vamp:DenseOutput ;
|
Chris@1
|
1325 vamp:identifier "tristimulus_1" ;
|
Chris@1
|
1326 dc:title "Tristimulus I" ;
|
Chris@1
|
1327 dc:description "Extract the tristimulus (type I) of an audio spectrum" ;
|
Chris@1
|
1328 vamp:fixed_bin_count "true" ;
|
Chris@1
|
1329 vamp:unit "" ;
|
Chris@1
|
1330 vamp:bin_count 0 ;
|
Chris@1
|
1331 vamp:bin_names ();
|
Chris@1
|
1332 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@1
|
1333 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@1
|
1334 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@1
|
1335 .
|
Chris@1
|
1336 plugbase:tristimulus_2 a vamp:Plugin ;
|
Chris@1
|
1337 dc:title "Tristimulus II" ;
|
Chris@1
|
1338 vamp:name "Tristimulus II" ;
|
Chris@1
|
1339 dc:description "Extract the tristimulus (type II) of an audio spectrum" ;
|
Chris@1
|
1340 foaf:maker [ foaf:name "libxtract by Jamie Bullock (plugin by Chris Cannam)" ] ; # FIXME could give plugin author's URI here
|
Chris@1
|
1341 # cc:license <Place plugin license URI here and uncomment> ;
|
Chris@1
|
1342 vamp:identifier "tristimulus_2" ;
|
Chris@2
|
1343 vamp:vamp_API_version vamp:api_version_2 ;
|
Chris@1
|
1344 owl:versionInfo "2" ;
|
Chris@1
|
1345 vamp:input_domain vamp:FrequencyDomain ;
|
Chris@1
|
1346
|
Chris@1
|
1347
|
Chris@2
|
1348 vamp:parameter plugbase:tristimulus_2_param_peak-threshold ;
|
Chris@2
|
1349 vamp:parameter plugbase:tristimulus_2_param_harmonic-threshold ;
|
Chris@1
|
1350
|
Chris@1
|
1351 vamp:output plugbase:tristimulus_2_output_tristimulus_2 ;
|
Chris@1
|
1352 .
|
Chris@2
|
1353 plugbase:tristimulus_2_param_peak-threshold a vamp:Parameter ;
|
Chris@2
|
1354 vamp:identifier "peak-threshold" ;
|
Chris@1
|
1355 dc:title "Peak Threshold" ;
|
Chris@1
|
1356 dc:format "%" ;
|
Chris@1
|
1357 vamp:min_value 0 ;
|
Chris@1
|
1358 vamp:max_value 100 ;
|
Chris@1
|
1359 vamp:unit "%" ;
|
Chris@1
|
1360 vamp:default_value 10 ;
|
Chris@1
|
1361 vamp:value_names ();
|
Chris@1
|
1362 .
|
Chris@2
|
1363 plugbase:tristimulus_2_param_harmonic-threshold a vamp:Parameter ;
|
Chris@2
|
1364 vamp:identifier "harmonic-threshold" ;
|
Chris@1
|
1365 dc:title "Harmonic Threshold" ;
|
Chris@1
|
1366 dc:format "" ;
|
Chris@1
|
1367 vamp:min_value 0 ;
|
Chris@1
|
1368 vamp:max_value 1 ;
|
Chris@1
|
1369 vamp:unit "" ;
|
Chris@1
|
1370 vamp:default_value 0.1 ;
|
Chris@1
|
1371 vamp:value_names ();
|
Chris@1
|
1372 .
|
Chris@1
|
1373 plugbase:tristimulus_2_output_tristimulus_2 a vamp:DenseOutput ;
|
Chris@1
|
1374 vamp:identifier "tristimulus_2" ;
|
Chris@1
|
1375 dc:title "Tristimulus II" ;
|
Chris@1
|
1376 dc:description "Extract the tristimulus (type II) of an audio spectrum" ;
|
Chris@1
|
1377 vamp:fixed_bin_count "true" ;
|
Chris@1
|
1378 vamp:unit "" ;
|
Chris@1
|
1379 vamp:bin_count 0 ;
|
Chris@1
|
1380 vamp:bin_names ();
|
Chris@1
|
1381 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@1
|
1382 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@1
|
1383 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@1
|
1384 .
|
Chris@1
|
1385 plugbase:tristimulus_3 a vamp:Plugin ;
|
Chris@1
|
1386 dc:title "Tristimulus III" ;
|
Chris@1
|
1387 vamp:name "Tristimulus III" ;
|
Chris@1
|
1388 dc:description "Extract the tristimulus (type III) of an audio spectrum" ;
|
Chris@1
|
1389 foaf:maker [ foaf:name "libxtract by Jamie Bullock (plugin by Chris Cannam)" ] ; # FIXME could give plugin author's URI here
|
Chris@1
|
1390 # cc:license <Place plugin license URI here and uncomment> ;
|
Chris@1
|
1391 vamp:identifier "tristimulus_3" ;
|
Chris@2
|
1392 vamp:vamp_API_version vamp:api_version_2 ;
|
Chris@1
|
1393 owl:versionInfo "2" ;
|
Chris@1
|
1394 vamp:input_domain vamp:FrequencyDomain ;
|
Chris@1
|
1395
|
Chris@1
|
1396
|
Chris@2
|
1397 vamp:parameter plugbase:tristimulus_3_param_peak-threshold ;
|
Chris@2
|
1398 vamp:parameter plugbase:tristimulus_3_param_harmonic-threshold ;
|
Chris@1
|
1399
|
Chris@1
|
1400 vamp:output plugbase:tristimulus_3_output_tristimulus_3 ;
|
Chris@1
|
1401 .
|
Chris@2
|
1402 plugbase:tristimulus_3_param_peak-threshold a vamp:Parameter ;
|
Chris@2
|
1403 vamp:identifier "peak-threshold" ;
|
Chris@1
|
1404 dc:title "Peak Threshold" ;
|
Chris@1
|
1405 dc:format "%" ;
|
Chris@1
|
1406 vamp:min_value 0 ;
|
Chris@1
|
1407 vamp:max_value 100 ;
|
Chris@1
|
1408 vamp:unit "%" ;
|
Chris@1
|
1409 vamp:default_value 10 ;
|
Chris@1
|
1410 vamp:value_names ();
|
Chris@1
|
1411 .
|
Chris@2
|
1412 plugbase:tristimulus_3_param_harmonic-threshold a vamp:Parameter ;
|
Chris@2
|
1413 vamp:identifier "harmonic-threshold" ;
|
Chris@1
|
1414 dc:title "Harmonic Threshold" ;
|
Chris@1
|
1415 dc:format "" ;
|
Chris@1
|
1416 vamp:min_value 0 ;
|
Chris@1
|
1417 vamp:max_value 1 ;
|
Chris@1
|
1418 vamp:unit "" ;
|
Chris@1
|
1419 vamp:default_value 0.1 ;
|
Chris@1
|
1420 vamp:value_names ();
|
Chris@1
|
1421 .
|
Chris@1
|
1422 plugbase:tristimulus_3_output_tristimulus_3 a vamp:DenseOutput ;
|
Chris@1
|
1423 vamp:identifier "tristimulus_3" ;
|
Chris@1
|
1424 dc:title "Tristimulus III" ;
|
Chris@1
|
1425 dc:description "Extract the tristimulus (type III) of an audio spectrum" ;
|
Chris@1
|
1426 vamp:fixed_bin_count "true" ;
|
Chris@1
|
1427 vamp:unit "" ;
|
Chris@1
|
1428 vamp:bin_count 0 ;
|
Chris@1
|
1429 vamp:bin_names ();
|
Chris@1
|
1430 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@1
|
1431 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@1
|
1432 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@1
|
1433 .
|
Chris@1
|
1434 plugbase:variance a vamp:Plugin ;
|
Chris@1
|
1435 dc:title "Variance" ;
|
Chris@1
|
1436 vamp:name "Variance" ;
|
Chris@1
|
1437 dc:description "Extract the variance of a range of values" ;
|
Chris@1
|
1438 foaf:maker [ foaf:name "libxtract by Jamie Bullock (plugin by Chris Cannam)" ] ; # FIXME could give plugin author's URI here
|
Chris@1
|
1439 # cc:license <Place plugin license URI here and uncomment> ;
|
Chris@1
|
1440 vamp:identifier "variance" ;
|
Chris@2
|
1441 vamp:vamp_API_version vamp:api_version_2 ;
|
Chris@1
|
1442 owl:versionInfo "2" ;
|
Chris@1
|
1443 vamp:input_domain vamp:FrequencyDomain ;
|
Chris@1
|
1444
|
Chris@1
|
1445 vamp:output plugbase:variance_output_variance ;
|
Chris@1
|
1446 .
|
Chris@1
|
1447 plugbase:variance_output_variance a vamp:DenseOutput ;
|
Chris@1
|
1448 vamp:identifier "variance" ;
|
Chris@1
|
1449 dc:title "Variance" ;
|
Chris@1
|
1450 dc:description "Extract the variance of a range of values" ;
|
Chris@1
|
1451 vamp:fixed_bin_count "true" ;
|
Chris@1
|
1452 vamp:unit "" ;
|
Chris@1
|
1453 vamp:bin_count 0 ;
|
Chris@1
|
1454 vamp:bin_names ();
|
Chris@1
|
1455 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@1
|
1456 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@1
|
1457 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@1
|
1458 .
|
Chris@1
|
1459 plugbase:zcr a vamp:Plugin ;
|
Chris@1
|
1460 dc:title "Zero Crossing Rate" ;
|
Chris@1
|
1461 vamp:name "Zero Crossing Rate" ;
|
Chris@1
|
1462 dc:description "Extract the zero crossing rate of an audio signal" ;
|
Chris@1
|
1463 foaf:maker [ foaf:name "libxtract by Jamie Bullock (plugin by Chris Cannam)" ] ; # FIXME could give plugin author's URI here
|
Chris@1
|
1464 # cc:license <Place plugin license URI here and uncomment> ;
|
Chris@1
|
1465 vamp:identifier "zcr" ;
|
Chris@2
|
1466 vamp:vamp_API_version vamp:api_version_2 ;
|
Chris@1
|
1467 owl:versionInfo "2" ;
|
Chris@1
|
1468 vamp:input_domain vamp:TimeDomain ;
|
Chris@1
|
1469
|
Chris@1
|
1470 vamp:output plugbase:zcr_output_zcr ;
|
Chris@1
|
1471 .
|
Chris@1
|
1472 plugbase:zcr_output_zcr a vamp:DenseOutput ;
|
Chris@1
|
1473 vamp:identifier "zcr" ;
|
Chris@1
|
1474 dc:title "Zero Crossing Rate" ;
|
Chris@1
|
1475 dc:description "Extract the zero crossing rate of an audio signal" ;
|
Chris@1
|
1476 vamp:fixed_bin_count "true" ;
|
Chris@1
|
1477 vamp:unit "Hz" ;
|
Chris@1
|
1478 vamp:bin_count 0 ;
|
Chris@1
|
1479 vamp:bin_names ();
|
Chris@1
|
1480 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@1
|
1481 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@1
|
1482 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@1
|
1483 .
|
Chris@1
|
1484
|