# HG changeset patch # User Chris Cannam # Date 1386339270 0 # Node ID e9e8b0f107dfef7d07e71272972ce10fc2e314ca # Parent 37af1c80fb94f03a3e755cf3761a928df0bd1d0b Category and basic RDF diff -r 37af1c80fb94 -r e9e8b0f107df segmentino.cat --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/segmentino.cat Fri Dec 06 14:14:30 2013 +0000 @@ -0,0 +1,1 @@ +vamp:segmentino:segmentino::Classification diff -r 37af1c80fb94 -r e9e8b0f107df segmentino.n3 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/segmentino.n3 Fri Dec 06 14:14:30 2013 +0000 @@ -0,0 +1,53 @@ +@prefix rdfs: . +@prefix xsd: . +@prefix vamp: . +@prefix plugbase: . +@prefix owl: . +@prefix dc: . +@prefix af: . +@prefix foaf: . +@prefix cc: . +@prefix : <#> . + +<> a vamp:PluginDescription ; + foaf:maker ; + foaf:primaryTopic . + +:segmentino a vamp:PluginLibrary ; + vamp:identifier "segmentino" ; + vamp:available_plugin plugbase:segmentino ; + foaf:page ; + . + +plugbase:segmentino a vamp:Plugin ; + dc:title "Segmentino" ; + vamp:name "Segmentino" ; + dc:description """Estimate contiguous segments pertaining to song parts such as verse and chorus.""" ; + foaf:maker [ foaf:name "Queen Mary, University of London" ] ; # FIXME could give plugin author's URI here + dc:rights """Plugin by Matthew Davies, Christian Landone, Chris Cannam, Matthias Mauch and Massimiliano Zanoni Copyright (c) 2006-2013 QMUL - Affero GPL""" ; +# cc:license ; + vamp:identifier "segmentino" ; + vamp:vamp_API_version vamp:api_version_2 ; + owl:versionInfo "2" ; + vamp:input_domain vamp:TimeDomain ; + vamp:output plugbase:segmentino_output_segmentation ; + . +plugbase:segmentino_output_segmentation a vamp:SparseOutput ; + vamp:identifier "segmentation" ; + dc:title "Segmentation" ; + dc:description """Segmentation""" ; + vamp:fixed_bin_count "true" ; + vamp:unit "segment-type" ; + a vamp:QuantizedOutput ; + vamp:quantize_step 1 ; + a vamp:KnownExtentsOutput ; + vamp:min_value 1 ; + vamp:max_value 5 ; + vamp:bin_count 1 ; + vamp:sample_type vamp:VariableSampleRate ; + vamp:sample_rate 86.1326 ; +# vamp:computes_event_type ; +# vamp:computes_feature ; +# vamp:computes_signal_type ; + . +