annotate segmentino.n3 @ 84:55a047986812 tip

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