annotate plugins/segmentino.n3 @ 100:c0afe853924a tip

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