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