Mercurial > hg > vamp-plugin-sdk
comparison examples/vamp-example-plugins.n3 @ 367:57cc0f0c20ff
Update RDF for example plugins
author | Chris Cannam |
---|---|
date | Wed, 25 Jun 2014 13:58:26 +0100 |
parents | 93c81a6c917a |
children | b9422f3e63a4 |
comparison
equal
deleted
inserted
replaced
366:aede6e90a6b8 | 367:57cc0f0c20ff |
---|---|
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> ; |
26 doap:download-page <http://vamp-plugins.org/develop.html> ; | |
19 vamp:available_plugin plugbase:amplitudefollower ; | 27 vamp:available_plugin plugbase:amplitudefollower ; |
20 vamp:available_plugin plugbase:fixedtempo ; | 28 vamp:available_plugin plugbase:fixedtempo ; |
21 vamp:available_plugin plugbase:percussiononsets ; | 29 vamp:available_plugin plugbase:percussiononsets ; |
22 vamp:available_plugin plugbase:powerspectrum ; | 30 vamp:available_plugin plugbase:powerspectrum ; |
23 vamp:available_plugin plugbase:spectralcentroid ; | 31 vamp:available_plugin plugbase:spectralcentroid ; |
24 vamp:available_plugin plugbase:zerocrossing ; | 32 vamp:available_plugin plugbase:zerocrossing ; |
33 foaf:maker :maker ; | |
34 dc:title "Vamp Example Plugins" ; | |
35 dc:description """Example plugins from the Vamp Plugin SDK""" ; | |
36 vamp:has_source true ; | |
37 vamp:has_binary "linux32" ; | |
38 vamp:has_binary "linux64" ; | |
39 vamp:has_binary "osx" ; | |
40 vamp:has_binary "win32" ; | |
25 . | 41 . |
26 | 42 |
27 plugbase:amplitudefollower a vamp:Plugin ; | 43 plugbase:amplitudefollower a vamp:Plugin ; |
28 dc:title "Amplitude Follower" ; | 44 dc:title "Amplitude Follower" ; |
29 vamp:name "Amplitude Follower" ; | 45 vamp:name "Amplitude Follower" ; |
30 dc:description "Track the amplitude of the audio signal" ; | 46 dc:description "Track the amplitude of the audio signal" ; |
31 foaf:page <http://www.vamp-plugins.org/plugin-doc/vamp-example-plugins.html#amplitudefollower> ; | 47 foaf:page <http://www.vamp-plugins.org/plugin-doc/vamp-example-plugins.html#amplitudefollower> ; |
32 foaf:maker [ foaf:name "Vamp SDK Example Plugins" ] ; | 48 foaf:maker :maker ; |
33 cc:license <http://creativecommons.org/licenses/BSD/> ; | 49 cc:license <http://creativecommons.org/licenses/BSD/> ; |
34 dc:rights "Freely redistributable (BSD license)" ; | 50 dc:rights "Freely redistributable (BSD license)" ; |
35 vamp:identifier "amplitudefollower" ; | 51 vamp:identifier "amplitudefollower" ; |
36 vamp:vamp_API_version vamp:api_version_2 ; | 52 vamp:vamp_API_version vamp:api_version_2 ; |
37 owl:versionInfo "1" ; | 53 owl:versionInfo "1" ; |
75 plugbase:fixedtempo a vamp:Plugin ; | 91 plugbase:fixedtempo a vamp:Plugin ; |
76 dc:title "Simple Fixed Tempo Estimator" ; | 92 dc:title "Simple Fixed Tempo Estimator" ; |
77 vamp:name "Simple Fixed Tempo Estimator" ; | 93 vamp:name "Simple Fixed Tempo Estimator" ; |
78 dc:description "Study a short section of audio and estimate its tempo, assuming the tempo is constant" ; | 94 dc:description "Study a short section of audio and estimate its tempo, assuming the tempo is constant" ; |
79 foaf:page <http://www.vamp-plugins.org/plugin-doc/vamp-example-plugins.html#fixedtempo> ; | 95 foaf:page <http://www.vamp-plugins.org/plugin-doc/vamp-example-plugins.html#fixedtempo> ; |
80 foaf:maker [ foaf:name "Vamp SDK Example Plugins" ] ; | 96 foaf:maker :maker ; |
81 cc:license <http://creativecommons.org/licenses/BSD/> ; | 97 cc:license <http://creativecommons.org/licenses/BSD/> ; |
82 dc:rights "Freely redistributable (BSD license)" ; | 98 dc:rights "Freely redistributable (BSD license)" ; |
83 vamp:identifier "fixedtempo" ; | 99 vamp:identifier "fixedtempo" ; |
84 vamp:vamp_API_version vamp:api_version_2 ; | 100 vamp:vamp_API_version vamp:api_version_2 ; |
85 owl:versionInfo "1" ; | 101 owl:versionInfo "1" ; |
147 plugbase:percussiononsets a vamp:Plugin ; | 163 plugbase:percussiononsets a vamp:Plugin ; |
148 dc:title "Simple Percussion Onset Detector" ; | 164 dc:title "Simple Percussion Onset Detector" ; |
149 vamp:name "Simple Percussion Onset Detector" ; | 165 vamp:name "Simple Percussion Onset Detector" ; |
150 dc:description "Detect percussive note onsets by identifying broadband energy rises" ; | 166 dc:description "Detect percussive note onsets by identifying broadband energy rises" ; |
151 foaf:page <http://www.vamp-plugins.org/plugin-doc/vamp-example-plugins.html#percussiononsets> ; | 167 foaf:page <http://www.vamp-plugins.org/plugin-doc/vamp-example-plugins.html#percussiononsets> ; |
152 foaf:maker [ foaf:name "Vamp SDK Example Plugins" ] ; | 168 foaf:maker :maker ; |
153 cc:license <http://creativecommons.org/licenses/BSD/> ; | 169 cc:license <http://creativecommons.org/licenses/BSD/> ; |
154 dc:rights "Freely redistributable (BSD license)" ; | 170 dc:rights "Freely redistributable (BSD license)" ; |
155 vamp:identifier "percussiononsets" ; | 171 vamp:identifier "percussiononsets" ; |
156 vamp:vamp_API_version vamp:api_version_2 ; | 172 vamp:vamp_API_version vamp:api_version_2 ; |
157 owl:versionInfo "2" ; | 173 owl:versionInfo "2" ; |
209 plugbase:powerspectrum a vamp:Plugin ; | 225 plugbase:powerspectrum a vamp:Plugin ; |
210 dc:title "Simple Power Spectrum" ; | 226 dc:title "Simple Power Spectrum" ; |
211 vamp:name "Simple Power Spectrum" ; | 227 vamp:name "Simple Power Spectrum" ; |
212 dc:description "Return the power spectrum of a signal" ; | 228 dc:description "Return the power spectrum of a signal" ; |
213 foaf:page <http://www.vamp-plugins.org/plugin-doc/vamp-example-plugins.html#powerspectrum> ; | 229 foaf:page <http://www.vamp-plugins.org/plugin-doc/vamp-example-plugins.html#powerspectrum> ; |
214 foaf:maker [ foaf:name "Vamp SDK Example Plugins" ] ; | 230 foaf:maker :maker ; |
215 cc:license <http://creativecommons.org/licenses/BSD/> ; | 231 cc:license <http://creativecommons.org/licenses/BSD/> ; |
216 dc:rights "Freely redistributable (BSD license)" ; | 232 dc:rights "Freely redistributable (BSD license)" ; |
217 vamp:identifier "powerspectrum" ; | 233 vamp:identifier "powerspectrum" ; |
218 vamp:vamp_API_version vamp:api_version_2 ; | 234 vamp:vamp_API_version vamp:api_version_2 ; |
219 owl:versionInfo "1" ; | 235 owl:versionInfo "1" ; |
230 plugbase:spectralcentroid a vamp:Plugin ; | 246 plugbase:spectralcentroid a vamp:Plugin ; |
231 dc:title "Spectral Centroid" ; | 247 dc:title "Spectral Centroid" ; |
232 vamp:name "Spectral Centroid" ; | 248 vamp:name "Spectral Centroid" ; |
233 dc:description "Calculate the centroid frequency of the spectrum of the input signal" ; | 249 dc:description "Calculate the centroid frequency of the spectrum of the input signal" ; |
234 foaf:page <http://www.vamp-plugins.org/plugin-doc/vamp-example-plugins.html#spectralcentroid> ; | 250 foaf:page <http://www.vamp-plugins.org/plugin-doc/vamp-example-plugins.html#spectralcentroid> ; |
235 foaf:maker [ foaf:name "Vamp SDK Example Plugins" ] ; | 251 foaf:maker :maker ; |
236 cc:license <http://creativecommons.org/licenses/BSD/> ; | 252 cc:license <http://creativecommons.org/licenses/BSD/> ; |
237 dc:rights "Freely redistributable (BSD license)" ; | 253 dc:rights "Freely redistributable (BSD license)" ; |
238 vamp:identifier "spectralcentroid" ; | 254 vamp:identifier "spectralcentroid" ; |
239 vamp:vamp_API_version vamp:api_version_2 ; | 255 vamp:vamp_API_version vamp:api_version_2 ; |
240 owl:versionInfo "2" ; | 256 owl:versionInfo "2" ; |
266 plugbase:zerocrossing a vamp:Plugin ; | 282 plugbase:zerocrossing a vamp:Plugin ; |
267 dc:title "Zero Crossings" ; | 283 dc:title "Zero Crossings" ; |
268 vamp:name "Zero Crossings" ; | 284 vamp:name "Zero Crossings" ; |
269 dc:description "Detect and count zero crossing points" ; | 285 dc:description "Detect and count zero crossing points" ; |
270 foaf:page <http://www.vamp-plugins.org/plugin-doc/vamp-example-plugins.html#zerocrossing> ; | 286 foaf:page <http://www.vamp-plugins.org/plugin-doc/vamp-example-plugins.html#zerocrossing> ; |
271 foaf:maker [ foaf:name "Vamp SDK Example Plugins" ] ; | 287 foaf:maker :maker ; |
272 cc:license <http://creativecommons.org/licenses/BSD/> ; | 288 cc:license <http://creativecommons.org/licenses/BSD/> ; |
273 dc:rights "Freely redistributable (BSD license)" ; | 289 dc:rights "Freely redistributable (BSD license)" ; |
274 vamp:identifier "zerocrossing" ; | 290 vamp:identifier "zerocrossing" ; |
275 vamp:vamp_API_version vamp:api_version_2 ; | 291 vamp:vamp_API_version vamp:api_version_2 ; |
276 owl:versionInfo "2" ; | 292 owl:versionInfo "2" ; |