annotate structural_segmentation/segmentino/segmentino.n3 @ 86:01f69f1d5d3c tip

Add further archive versions
author Chris Cannam
date Thu, 01 Aug 2019 17:54:05 +0100
parents 53e404f968eb
children
rev   line source
Chris@84 1 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
Chris@84 2 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
Chris@84 3 @prefix vamp: <http://purl.org/ontology/vamp/> .
Chris@84 4 @prefix plugbase: <http://vamp-plugins.org/rdf/plugins/segmentino#> .
Chris@84 5 @prefix owl: <http://www.w3.org/2002/07/owl#> .
Chris@84 6 @prefix dc: <http://purl.org/dc/elements/1.1/> .
Chris@84 7 @prefix af: <http://purl.org/ontology/af/> .
Chris@84 8 @prefix foaf: <http://xmlns.com/foaf/0.1/> .
Chris@84 9 @prefix cc: <http://web.resource.org/cc/> .
Chris@84 10 @prefix doap: <http://usefulinc.com/ns/doap#> .
Chris@84 11 @prefix : <#> .
Chris@84 12
Chris@84 13 <> a vamp:PluginDescription ;
Chris@84 14 foaf:maker <http://www.vamp-plugins.org/doap.rdf#template-generator> ;
Chris@84 15 foaf:primaryTopic <http://vamp-plugins.org/rdf/plugins/segmentino> .
Chris@84 16
Chris@84 17 :maker
Chris@84 18 foaf:name "Queen Mary, University of London" ;
Chris@84 19 foaf:logo <http://vamp-plugins.org/rdf/plugins/makers/qm.png> ;
Chris@84 20 foaf:page <http://c4dm.eecs.qmul.ac.uk/> .
Chris@84 21
Chris@84 22 :segmentino a vamp:PluginLibrary ;
Chris@84 23 vamp:identifier "segmentino" ;
Chris@84 24 vamp:available_plugin plugbase:segmentino ;
Chris@84 25 foaf:page <http://code.soundsoftware.ac.uk/projects/segmenter-vamp-plugin> ;
Chris@84 26 foaf:maker :maker ;
Chris@84 27 dc:title "Segmentino" ;
Chris@84 28 dc:description """Plugin for automatic music structural segmentation""" ;
Chris@84 29 doap:download-page <http://code.soundsoftware.ac.uk/projects/segmenter-vamp-plugin/files> ;
Chris@84 30 vamp:has_source true ;
Chris@84 31 vamp:has_binary "linux32" ;
Chris@84 32 vamp:has_binary "linux64" ;
Chris@84 33 vamp:has_binary "win32" ;
Chris@84 34 vamp:has_binary "osx"
Chris@84 35 .
Chris@84 36
Chris@84 37 plugbase:segmentino a vamp:Plugin ;
Chris@84 38 dc:title "Segmentino" ;
Chris@84 39 vamp:name "Segmentino" ;
Chris@84 40 vamp:category "Classification" ;
Chris@84 41 dc:description """Estimate contiguous segments pertaining to song parts such as verse and chorus.""" ;
Chris@84 42 foaf:maker [ foaf:name "Queen Mary, University of London" ] ; # FIXME could give plugin author's URI here
Chris@84 43 dc:rights """Plugin by Matthew Davies, Christian Landone, Chris Cannam, Matthias Mauch and Massimiliano Zanoni Copyright (c) 2006-2013 QMUL - Affero GPL""" ;
Chris@84 44 # cc:license <Place plugin license URI here and uncomment> ;
Chris@84 45 vamp:identifier "segmentino" ;
Chris@84 46 vamp:vamp_API_version vamp:api_version_2 ;
Chris@84 47 owl:versionInfo "2" ;
Chris@84 48 vamp:input_domain vamp:TimeDomain ;
Chris@84 49 vamp:output plugbase:segmentino_output_segmentation ;
Chris@84 50 .
Chris@84 51 plugbase:segmentino_output_segmentation a vamp:SparseOutput ;
Chris@84 52 vamp:identifier "segmentation" ;
Chris@84 53 dc:title "Segmentation" ;
Chris@84 54 dc:description """Segmentation""" ;
Chris@84 55 vamp:fixed_bin_count "true" ;
Chris@84 56 vamp:unit "segment-type" ;
Chris@84 57 a vamp:QuantizedOutput ;
Chris@84 58 vamp:quantize_step 1 ;
Chris@84 59 a vamp:KnownExtentsOutput ;
Chris@84 60 vamp:min_value 1 ;
Chris@84 61 vamp:max_value 5 ;
Chris@84 62 vamp:bin_count 1 ;
Chris@84 63 vamp:sample_type vamp:VariableSampleRate ;
Chris@84 64 vamp:sample_rate 86.1326 ;
Chris@84 65 # vamp:computes_event_type <Place event type URI here and uncomment> ;
Chris@84 66 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
Chris@84 67 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
Chris@84 68 .
Chris@84 69