Mercurial > hg > vamp-known-plugins-rdf
comparison plugins/vamp-example-plugins.n3 @ 49:d84bd6676a43 rdfquery
MATCH, Aubio, HPCP, OnsetsDS and the example plugins
author | Chris Cannam |
---|---|
date | Thu, 19 Jun 2014 17:13:54 +0100 |
parents | 2b10aed4659e |
children | 20520676bb9c |
comparison
equal
deleted
inserted
replaced
48:2aaca659b29d | 49:d84bd6676a43 |
---|---|
4 @prefix plugbase: <http://vamp-plugins.org/rdf/plugins/vamp-example-plugins#> . | 4 @prefix plugbase: <http://vamp-plugins.org/rdf/plugins/vamp-example-plugins#> . |
5 @prefix owl: <http://www.w3.org/2002/07/owl#> . | 5 @prefix owl: <http://www.w3.org/2002/07/owl#> . |
6 @prefix dc: <http://purl.org/dc/elements/1.1/> . | 6 @prefix dc: <http://purl.org/dc/elements/1.1/> . |
7 @prefix af: <http://purl.org/ontology/af/> . | 7 @prefix af: <http://purl.org/ontology/af/> . |
8 @prefix foaf: <http://xmlns.com/foaf/0.1/> . | 8 @prefix foaf: <http://xmlns.com/foaf/0.1/> . |
9 @prefix doap: <http://usefulinc.com/ns/doap#> . | |
9 @prefix cc: <http://web.resource.org/cc/> . | 10 @prefix cc: <http://web.resource.org/cc/> . |
10 @prefix : <#> . | 11 @prefix : <#> . |
11 | 12 |
12 <> a vamp:PluginDescription ; | 13 <> a vamp:PluginDescription ; |
13 foaf:maker <http://www.vamp-plugins.org/doap.rdf#template-generator> ; | 14 foaf:maker <http://www.vamp-plugins.org/doap.rdf#template-generator> ; |
14 foaf:primaryTopic <http://vamp-plugins.org/rdf/plugins/vamp-example-plugins> . | 15 foaf:primaryTopic <http://vamp-plugins.org/rdf/plugins/vamp-example-plugins> . |
15 | 16 |
17 :maker | |
18 foaf:name "Vamp SDK Example Plugins" ; | |
19 foaf:page <http://vamp-plugins.org/> . | |
20 | |
16 :vamp-example-plugins a vamp:PluginLibrary ; | 21 :vamp-example-plugins a vamp:PluginLibrary ; |
17 vamp:identifier "vamp-example-plugins" ; | 22 vamp:identifier "vamp-example-plugins" ; |
23 dc:title "Vamp example plugins" ; | |
24 dc:description """A set of simple plugins as included with the Vamp developers kit. Amplitude tracker, simple percussion onset detector, tempo estimator, spectral centroid, power spectrum, and zero-crossing counter.""" ; | |
18 foaf:page <http://www.vamp-plugins.org/plugin-doc/vamp-example-plugins.html> ; | 25 foaf:page <http://www.vamp-plugins.org/plugin-doc/vamp-example-plugins.html> ; |
19 vamp:available_plugin plugbase:amplitudefollower ; | 26 vamp:available_plugin plugbase:amplitudefollower ; |
20 vamp:available_plugin plugbase:fixedtempo ; | 27 vamp:available_plugin plugbase:fixedtempo ; |
21 vamp:available_plugin plugbase:percussiononsets ; | 28 vamp:available_plugin plugbase:percussiononsets ; |
22 vamp:available_plugin plugbase:powerspectrum ; | 29 vamp:available_plugin plugbase:powerspectrum ; |
23 vamp:available_plugin plugbase:spectralcentroid ; | 30 vamp:available_plugin plugbase:spectralcentroid ; |
24 vamp:available_plugin plugbase:zerocrossing ; | 31 vamp:available_plugin plugbase:zerocrossing ; |
25 foaf:maker [ foaf:name "Vamp SDK Example Plugins" ] ; | 32 foaf:maker :maker ; |
26 dc:title "Vamp Example Plugins" ; | 33 dc:title "Vamp Example Plugins" ; |
27 dc:description """Example plugins from the Vamp Plugin SDK""" | 34 dc:description """Example plugins from the Vamp Plugin SDK""" ; |
35 vamp:has_source true ; | |
28 . | 36 . |
29 | 37 |
30 plugbase:amplitudefollower a vamp:Plugin ; | 38 plugbase:amplitudefollower a vamp:Plugin ; |
31 dc:title "Amplitude Follower" ; | 39 dc:title "Amplitude Follower" ; |
32 vamp:name "Amplitude Follower" ; | 40 vamp:name "Amplitude Follower" ; |
33 dc:description "Track the amplitude of the audio signal" ; | 41 dc:description "Track the amplitude of the audio signal" ; |
34 foaf:page <http://www.vamp-plugins.org/plugin-doc/vamp-example-plugins.html#amplitudefollower> ; | 42 foaf:page <http://www.vamp-plugins.org/plugin-doc/vamp-example-plugins.html#amplitudefollower> ; |
35 foaf:maker [ foaf:name "Vamp SDK Example Plugins" ] ; | 43 foaf:maker :maker ; |
36 cc:license <http://creativecommons.org/licenses/BSD/> ; | 44 cc:license <http://creativecommons.org/licenses/BSD/> ; |
37 dc:rights "Freely redistributable (BSD license)" ; | 45 dc:rights "Freely redistributable (BSD license)" ; |
38 vamp:identifier "amplitudefollower" ; | 46 vamp:identifier "amplitudefollower" ; |
39 vamp:vamp_API_version vamp:api_version_2 ; | 47 vamp:vamp_API_version vamp:api_version_2 ; |
40 owl:versionInfo "1" ; | 48 owl:versionInfo "1" ; |
78 plugbase:fixedtempo a vamp:Plugin ; | 86 plugbase:fixedtempo a vamp:Plugin ; |
79 dc:title "Simple Fixed Tempo Estimator" ; | 87 dc:title "Simple Fixed Tempo Estimator" ; |
80 vamp:name "Simple Fixed Tempo Estimator" ; | 88 vamp:name "Simple Fixed Tempo Estimator" ; |
81 dc:description "Study a short section of audio and estimate its tempo, assuming the tempo is constant" ; | 89 dc:description "Study a short section of audio and estimate its tempo, assuming the tempo is constant" ; |
82 foaf:page <http://www.vamp-plugins.org/plugin-doc/vamp-example-plugins.html#fixedtempo> ; | 90 foaf:page <http://www.vamp-plugins.org/plugin-doc/vamp-example-plugins.html#fixedtempo> ; |
83 foaf:maker [ foaf:name "Vamp SDK Example Plugins" ] ; | 91 foaf:maker :maker ; |
84 cc:license <http://creativecommons.org/licenses/BSD/> ; | 92 cc:license <http://creativecommons.org/licenses/BSD/> ; |
85 dc:rights "Freely redistributable (BSD license)" ; | 93 dc:rights "Freely redistributable (BSD license)" ; |
86 vamp:identifier "fixedtempo" ; | 94 vamp:identifier "fixedtempo" ; |
87 vamp:vamp_API_version vamp:api_version_2 ; | 95 vamp:vamp_API_version vamp:api_version_2 ; |
88 owl:versionInfo "1" ; | 96 owl:versionInfo "1" ; |
150 plugbase:percussiononsets a vamp:Plugin ; | 158 plugbase:percussiononsets a vamp:Plugin ; |
151 dc:title "Simple Percussion Onset Detector" ; | 159 dc:title "Simple Percussion Onset Detector" ; |
152 vamp:name "Simple Percussion Onset Detector" ; | 160 vamp:name "Simple Percussion Onset Detector" ; |
153 dc:description "Detect percussive note onsets by identifying broadband energy rises" ; | 161 dc:description "Detect percussive note onsets by identifying broadband energy rises" ; |
154 foaf:page <http://www.vamp-plugins.org/plugin-doc/vamp-example-plugins.html#percussiononsets> ; | 162 foaf:page <http://www.vamp-plugins.org/plugin-doc/vamp-example-plugins.html#percussiononsets> ; |
155 foaf:maker [ foaf:name "Vamp SDK Example Plugins" ] ; | 163 foaf:maker :maker ; |
156 cc:license <http://creativecommons.org/licenses/BSD/> ; | 164 cc:license <http://creativecommons.org/licenses/BSD/> ; |
157 dc:rights "Freely redistributable (BSD license)" ; | 165 dc:rights "Freely redistributable (BSD license)" ; |
158 vamp:identifier "percussiononsets" ; | 166 vamp:identifier "percussiononsets" ; |
159 vamp:vamp_API_version vamp:api_version_2 ; | 167 vamp:vamp_API_version vamp:api_version_2 ; |
160 owl:versionInfo "2" ; | 168 owl:versionInfo "2" ; |
212 plugbase:powerspectrum a vamp:Plugin ; | 220 plugbase:powerspectrum a vamp:Plugin ; |
213 dc:title "Simple Power Spectrum" ; | 221 dc:title "Simple Power Spectrum" ; |
214 vamp:name "Simple Power Spectrum" ; | 222 vamp:name "Simple Power Spectrum" ; |
215 dc:description "Return the power spectrum of a signal" ; | 223 dc:description "Return the power spectrum of a signal" ; |
216 foaf:page <http://www.vamp-plugins.org/plugin-doc/vamp-example-plugins.html#powerspectrum> ; | 224 foaf:page <http://www.vamp-plugins.org/plugin-doc/vamp-example-plugins.html#powerspectrum> ; |
217 foaf:maker [ foaf:name "Vamp SDK Example Plugins" ] ; | 225 foaf:maker :maker ; |
218 cc:license <http://creativecommons.org/licenses/BSD/> ; | 226 cc:license <http://creativecommons.org/licenses/BSD/> ; |
219 dc:rights "Freely redistributable (BSD license)" ; | 227 dc:rights "Freely redistributable (BSD license)" ; |
220 vamp:identifier "powerspectrum" ; | 228 vamp:identifier "powerspectrum" ; |
221 vamp:vamp_API_version vamp:api_version_2 ; | 229 vamp:vamp_API_version vamp:api_version_2 ; |
222 owl:versionInfo "1" ; | 230 owl:versionInfo "1" ; |
233 plugbase:spectralcentroid a vamp:Plugin ; | 241 plugbase:spectralcentroid a vamp:Plugin ; |
234 dc:title "Spectral Centroid" ; | 242 dc:title "Spectral Centroid" ; |
235 vamp:name "Spectral Centroid" ; | 243 vamp:name "Spectral Centroid" ; |
236 dc:description "Calculate the centroid frequency of the spectrum of the input signal" ; | 244 dc:description "Calculate the centroid frequency of the spectrum of the input signal" ; |
237 foaf:page <http://www.vamp-plugins.org/plugin-doc/vamp-example-plugins.html#spectralcentroid> ; | 245 foaf:page <http://www.vamp-plugins.org/plugin-doc/vamp-example-plugins.html#spectralcentroid> ; |
238 foaf:maker [ foaf:name "Vamp SDK Example Plugins" ] ; | 246 foaf:maker :maker ; |
239 cc:license <http://creativecommons.org/licenses/BSD/> ; | 247 cc:license <http://creativecommons.org/licenses/BSD/> ; |
240 dc:rights "Freely redistributable (BSD license)" ; | 248 dc:rights "Freely redistributable (BSD license)" ; |
241 vamp:identifier "spectralcentroid" ; | 249 vamp:identifier "spectralcentroid" ; |
242 vamp:vamp_API_version vamp:api_version_2 ; | 250 vamp:vamp_API_version vamp:api_version_2 ; |
243 owl:versionInfo "2" ; | 251 owl:versionInfo "2" ; |
269 plugbase:zerocrossing a vamp:Plugin ; | 277 plugbase:zerocrossing a vamp:Plugin ; |
270 dc:title "Zero Crossings" ; | 278 dc:title "Zero Crossings" ; |
271 vamp:name "Zero Crossings" ; | 279 vamp:name "Zero Crossings" ; |
272 dc:description "Detect and count zero crossing points" ; | 280 dc:description "Detect and count zero crossing points" ; |
273 foaf:page <http://www.vamp-plugins.org/plugin-doc/vamp-example-plugins.html#zerocrossing> ; | 281 foaf:page <http://www.vamp-plugins.org/plugin-doc/vamp-example-plugins.html#zerocrossing> ; |
274 foaf:maker [ foaf:name "Vamp SDK Example Plugins" ] ; | 282 foaf:maker :maker ; |
275 cc:license <http://creativecommons.org/licenses/BSD/> ; | 283 cc:license <http://creativecommons.org/licenses/BSD/> ; |
276 dc:rights "Freely redistributable (BSD license)" ; | 284 dc:rights "Freely redistributable (BSD license)" ; |
277 vamp:identifier "zerocrossing" ; | 285 vamp:identifier "zerocrossing" ; |
278 vamp:vamp_API_version vamp:api_version_2 ; | 286 vamp:vamp_API_version vamp:api_version_2 ; |
279 owl:versionInfo "2" ; | 287 owl:versionInfo "2" ; |