comparison plugins/segmentino.n3 @ 26:9fd8358b8101

New plugins in rdf
author Chris Cannam
date Fri, 13 Dec 2013 10:27:32 +0000
parents
children 2b10aed4659e
comparison
equal deleted inserted replaced
25:6b859da7083a 26:9fd8358b8101
1 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
2 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
3 @prefix vamp: <http://purl.org/ontology/vamp/> .
4 @prefix plugbase: <http://vamp-plugins.org/rdf/plugins/segmentino#> .
5 @prefix owl: <http://www.w3.org/2002/07/owl#> .
6 @prefix dc: <http://purl.org/dc/elements/1.1/> .
7 @prefix af: <http://purl.org/ontology/af/> .
8 @prefix foaf: <http://xmlns.com/foaf/0.1/> .
9 @prefix cc: <http://web.resource.org/cc/> .
10 @prefix : <#> .
11
12 <> a vamp:PluginDescription ;
13 foaf:maker <http://www.vamp-plugins.org/doap.rdf#template-generator> ;
14 foaf:primaryTopic <http://vamp-plugins.org/rdf/plugins/segmentino> .
15
16 :segmentino a vamp:PluginLibrary ;
17 vamp:identifier "segmentino" ;
18 vamp:available_plugin plugbase:segmentino ;
19 foaf:page <http://code.soundsoftware.ac.uk/projects/segmenter-vamp-plugin> ;
20 .
21
22 plugbase:segmentino a vamp:Plugin ;
23 dc:title "Segmentino" ;
24 vamp:name "Segmentino" ;
25 dc:description """Estimate contiguous segments pertaining to song parts such as verse and chorus.""" ;
26 foaf:maker [ foaf:name "Queen Mary, University of London" ] ; # FIXME could give plugin author's URI here
27 dc:rights """Plugin by Matthew Davies, Christian Landone, Chris Cannam, Matthias Mauch and Massimiliano Zanoni Copyright (c) 2006-2013 QMUL - Affero GPL""" ;
28 # cc:license <Place plugin license URI here and uncomment> ;
29 vamp:identifier "segmentino" ;
30 vamp:vamp_API_version vamp:api_version_2 ;
31 owl:versionInfo "2" ;
32 vamp:input_domain vamp:TimeDomain ;
33 vamp:output plugbase:segmentino_output_segmentation ;
34 .
35 plugbase:segmentino_output_segmentation a vamp:SparseOutput ;
36 vamp:identifier "segmentation" ;
37 dc:title "Segmentation" ;
38 dc:description """Segmentation""" ;
39 vamp:fixed_bin_count "true" ;
40 vamp:unit "segment-type" ;
41 a vamp:QuantizedOutput ;
42 vamp:quantize_step 1 ;
43 a vamp:KnownExtentsOutput ;
44 vamp:min_value 1 ;
45 vamp:max_value 5 ;
46 vamp:bin_count 1 ;
47 vamp:sample_type vamp:VariableSampleRate ;
48 vamp:sample_rate 86.1326 ;
49 # vamp:computes_event_type <Place event type URI here and uncomment> ;
50 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
51 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
52 .
53