Mercurial > hg > vamp-known-plugins-rdf
comparison plugins/bbc-vamp-plugins.n3 @ 36:b1a4b9c7c0dc rdfquery
Various rdf updates
author | Chris Cannam |
---|---|
date | Wed, 18 Jun 2014 13:45:26 +0100 |
parents | b6ecdd3e5724 |
children | 8ec9526057c1 |
comparison
equal
deleted
inserted
replaced
35:2b10aed4659e | 36:b1a4b9c7c0dc |
---|---|
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 cc: <http://web.resource.org/cc/> . | 9 @prefix cc: <http://web.resource.org/cc/> . |
10 @prefix doap: <http://usefulinc.com/ns/doap#> . | |
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/bbc-vamp-plugins> . | 15 foaf:primaryTopic <http://vamp-plugins.org/rdf/plugins/bbc-vamp-plugins> . |
15 | 16 |
17 :maker | |
18 foaf:name "BBC" ; | |
19 foaf:page "http://www.bbc.co.uk/" . | |
20 | |
16 plugbase:library a vamp:PluginLibrary ; | 21 plugbase:library a vamp:PluginLibrary ; |
17 vamp:identifier "bbc-vamp-plugins" ; | 22 vamp:identifier "bbc-vamp-plugins" ; |
18 dc:title "BBC Vamp Plugins" ; | 23 dc:title "BBC Vamp Plugins" ; |
24 dc:description "A collection of audio feature extraction algorithms from BBC Research and Development" ; | |
25 foaf:page <https://github.com/bbcrd/bbc-vamp-plugins/blob/master/README.md> ; | |
26 doap:download-page <https://github.com/bbcrd/bbc-vamp-plugins/releases> ; | |
19 vamp:available_plugin plugbase:bbc-energy ; | 27 vamp:available_plugin plugbase:bbc-energy ; |
20 vamp:available_plugin plugbase:bbc-intensity ; | 28 vamp:available_plugin plugbase:bbc-intensity ; |
21 vamp:available_plugin plugbase:bbc-rhythm ; | 29 vamp:available_plugin plugbase:bbc-rhythm ; |
22 vamp:available_plugin plugbase:bbc-spectral-contrast ; | 30 vamp:available_plugin plugbase:bbc-spectral-contrast ; |
23 vamp:available_plugin plugbase:bbc-spectral-flux ; | 31 vamp:available_plugin plugbase:bbc-spectral-flux ; |
24 vamp:available_plugin plugbase:bbc-speechmusic-segmenter ; | 32 vamp:available_plugin plugbase:bbc-speechmusic-segmenter ; |
25 # foaf:page <Place more-information HTML page URL here and uncomment> ; | 33 vamp:has_source true ; |
34 vamp:has_binary "linux32" ; | |
35 vamp:has_binary "linux64" ; | |
36 vamp:has_binary "win32" ; | |
37 vamp:has_binary "osx" | |
26 . | 38 . |
27 | 39 |
28 plugbase:bbc-energy a vamp:Plugin ; | 40 plugbase:bbc-energy a vamp:Plugin ; |
29 dc:title "Energy" ; | 41 dc:title "Energy" ; |
30 vamp:name "Energy" ; | 42 vamp:name "Energy" ; |
31 dc:description """""" ; | 43 dc:description """Calculates the RMS energy and low energy ratio of a signal""" ; |
32 foaf:maker [ foaf:name "BBC" ] ; # FIXME could give plugin author's URI here | 44 foaf:maker :maker ; |
33 dc:rights """(c) 2013 British Broadcasting Corporation""" ; | 45 dc:rights """(c) 2013 British Broadcasting Corporation""" ; |
34 # cc:license <Place plugin license URI here and uncomment> ; | 46 # cc:license <Place plugin license URI here and uncomment> ; |
35 vamp:identifier "bbc-energy" ; | 47 vamp:identifier "bbc-energy" ; |
36 vamp:vamp_API_version vamp:api_version_2 ; | 48 vamp:vamp_API_version vamp:api_version_2 ; |
37 owl:versionInfo "2" ; | 49 owl:versionInfo "2" ; |
88 # vamp:computes_signal_type <Place signal type URI here and uncomment> ; | 100 # vamp:computes_signal_type <Place signal type URI here and uncomment> ; |
89 . | 101 . |
90 plugbase:bbc-intensity a vamp:Plugin ; | 102 plugbase:bbc-intensity a vamp:Plugin ; |
91 dc:title "Intensity" ; | 103 dc:title "Intensity" ; |
92 vamp:name "Intensity" ; | 104 vamp:name "Intensity" ; |
93 dc:description """""" ; | 105 dc:description """Calculates the intensity of a signal and the intensity ratio for a number of sub-bands""" ; |
94 foaf:maker [ foaf:name "BBC" ] ; # FIXME could give plugin author's URI here | 106 foaf:maker :maker ; |
95 dc:rights """(c) 2013 British Broadcasting Corporation""" ; | 107 dc:rights """(c) 2013 British Broadcasting Corporation""" ; |
96 # cc:license <Place plugin license URI here and uncomment> ; | 108 # cc:license <Place plugin license URI here and uncomment> ; |
97 vamp:identifier "bbc-intensity" ; | 109 vamp:identifier "bbc-intensity" ; |
98 vamp:vamp_API_version vamp:api_version_2 ; | 110 vamp:vamp_API_version vamp:api_version_2 ; |
99 owl:versionInfo "1" ; | 111 owl:versionInfo "1" ; |
139 # vamp:computes_signal_type <Place signal type URI here and uncomment> ; | 151 # vamp:computes_signal_type <Place signal type URI here and uncomment> ; |
140 . | 152 . |
141 plugbase:bbc-rhythm a vamp:Plugin ; | 153 plugbase:bbc-rhythm a vamp:Plugin ; |
142 dc:title "Rhythm" ; | 154 dc:title "Rhythm" ; |
143 vamp:name "Rhythm" ; | 155 vamp:name "Rhythm" ; |
144 dc:description """""" ; | 156 dc:description """Calculates rhythmic features of a signal, including onsets and tempo """ ; |
145 foaf:maker [ foaf:name "BBC" ] ; # FIXME could give plugin author's URI here | 157 foaf:maker :maker ; |
146 dc:rights """(c) 2013 British Broadcasting Corporation""" ; | 158 dc:rights """(c) 2013 British Broadcasting Corporation""" ; |
147 # cc:license <Place plugin license URI here and uncomment> ; | 159 # cc:license <Place plugin license URI here and uncomment> ; |
148 vamp:identifier "bbc-rhythm" ; | 160 vamp:identifier "bbc-rhythm" ; |
149 vamp:vamp_API_version vamp:api_version_2 ; | 161 vamp:vamp_API_version vamp:api_version_2 ; |
150 owl:versionInfo "1" ; | 162 owl:versionInfo "1" ; |
355 # vamp:computes_signal_type <Place signal type URI here and uncomment> ; | 367 # vamp:computes_signal_type <Place signal type URI here and uncomment> ; |
356 . | 368 . |
357 plugbase:bbc-spectral-contrast a vamp:Plugin ; | 369 plugbase:bbc-spectral-contrast a vamp:Plugin ; |
358 dc:title "Spectral Contrast" ; | 370 dc:title "Spectral Contrast" ; |
359 vamp:name "Spectral Contrast" ; | 371 vamp:name "Spectral Contrast" ; |
360 dc:description """""" ; | 372 dc:description """Calculates the peak and valleys of the spectral contrast feature""" ; |
361 foaf:maker [ foaf:name "BBC" ] ; # FIXME could give plugin author's URI here | 373 foaf:maker :maker ; |
362 dc:rights """(c) 2013 British Broadcasting Corporation""" ; | 374 dc:rights """(c) 2013 British Broadcasting Corporation""" ; |
363 # cc:license <Place plugin license URI here and uncomment> ; | 375 # cc:license <Place plugin license URI here and uncomment> ; |
364 vamp:identifier "bbc-spectral-contrast" ; | 376 vamp:identifier "bbc-spectral-contrast" ; |
365 vamp:vamp_API_version vamp:api_version_2 ; | 377 vamp:vamp_API_version vamp:api_version_2 ; |
366 owl:versionInfo "1" ; | 378 owl:versionInfo "1" ; |
429 # vamp:computes_signal_type <Place signal type URI here and uncomment> ; | 441 # vamp:computes_signal_type <Place signal type URI here and uncomment> ; |
430 . | 442 . |
431 plugbase:bbc-spectral-flux a vamp:Plugin ; | 443 plugbase:bbc-spectral-flux a vamp:Plugin ; |
432 dc:title "Spectral Flux" ; | 444 dc:title "Spectral Flux" ; |
433 vamp:name "Spectral Flux" ; | 445 vamp:name "Spectral Flux" ; |
434 dc:description """""" ; | 446 dc:description """Calculates the spectral flux""" ; |
435 foaf:maker [ foaf:name "BBC" ] ; # FIXME could give plugin author's URI here | 447 foaf:maker :maker ; |
436 dc:rights """(c) 2013 British Broadcasting Corporation""" ; | 448 dc:rights """(c) 2013 British Broadcasting Corporation""" ; |
437 # cc:license <Place plugin license URI here and uncomment> ; | 449 # cc:license <Place plugin license URI here and uncomment> ; |
438 vamp:identifier "bbc-spectral-flux" ; | 450 vamp:identifier "bbc-spectral-flux" ; |
439 vamp:vamp_API_version vamp:api_version_2 ; | 451 vamp:vamp_API_version vamp:api_version_2 ; |
440 owl:versionInfo "1" ; | 452 owl:versionInfo "1" ; |
468 # vamp:computes_signal_type <Place signal type URI here and uncomment> ; | 480 # vamp:computes_signal_type <Place signal type URI here and uncomment> ; |
469 . | 481 . |
470 plugbase:bbc-speechmusic-segmenter a vamp:Plugin ; | 482 plugbase:bbc-speechmusic-segmenter a vamp:Plugin ; |
471 dc:title "Speech/Music segmenter" ; | 483 dc:title "Speech/Music segmenter" ; |
472 vamp:name "Speech/Music segmenter" ; | 484 vamp:name "Speech/Music segmenter" ; |
473 dc:description """A simple speech/music segmenter""" ; | 485 dc:description """Calculates boundaries between speech and music""" ; |
474 foaf:maker [ foaf:name "BBC" ] ; # FIXME could give plugin author's URI here | 486 foaf:maker :maker ; |
475 dc:rights """(c) 2011 British Broadcasting Corporation""" ; | 487 dc:rights """(c) 2011 British Broadcasting Corporation""" ; |
476 # cc:license <Place plugin license URI here and uncomment> ; | 488 # cc:license <Place plugin license URI here and uncomment> ; |
477 vamp:identifier "bbc-speechmusic-segmenter" ; | 489 vamp:identifier "bbc-speechmusic-segmenter" ; |
478 vamp:vamp_API_version vamp:api_version_2 ; | 490 vamp:vamp_API_version vamp:api_version_2 ; |
479 owl:versionInfo "1" ; | 491 owl:versionInfo "1" ; |