Mercurial > hg > vamp-onsetsds-plugin
changeset 12:717aa5a28254
RDF description
author | Chris Cannam |
---|---|
date | Thu, 26 Jun 2014 11:46:04 +0100 |
parents | 1ee043ea9d06 |
children | 8bc4ec815b6b |
files | vamp-onsetsds.n3 |
diffstat | 1 files changed, 101 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vamp-onsetsds.n3 Thu Jun 26 11:46:04 2014 +0100 @@ -0,0 +1,101 @@ +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . +@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . +@prefix vamp: <http://purl.org/ontology/vamp/> . +@prefix plugbase: <http://vamp-plugins.org/rdf/plugins/vamp-onsetsds#> . +@prefix owl: <http://www.w3.org/2002/07/owl#> . +@prefix dc: <http://purl.org/dc/elements/1.1/> . +@prefix af: <http://purl.org/ontology/af/> . +@prefix foaf: <http://xmlns.com/foaf/0.1/> . +@prefix doap: <http://usefulinc.com/ns/doap#> . +@prefix cc: <http://web.resource.org/cc/> . +@prefix : <#> . + +<> a vamp:PluginDescription ; + foaf:maker <http://www.vamp-plugins.org/doap.rdf#template-generator> ; + foaf:primaryTopic <http://vamp-plugins.org/rdf/plugins/vamp-onsetsds> . + +:maker + foaf:name "Dan Stowell" ; + foaf:logo <http://vamp-plugins.org/rdf/plugins/makers/qm.png> ; + foaf:page <http://c4dm.eecs.qmul.ac.uk/> . + +:vamp-onsetsds a vamp:PluginLibrary ; + vamp:identifier "vamp-onsetsds" ; + dc:title "OnsetsDS plugin" ; + dc:description """Note onset detector using Dan Stowell's OnsetsDS library""" ; + vamp:available_plugin plugbase:onsetsds ; + foaf:maker :maker ; + foaf:page <http://code.soundsoftware.ac.uk/projects/vamp-onsetsds-plugin> ; + doap:download-page: <http://sourceforge.net/projects/vamp/files/vamp-onsetsds-plugin/0.2/> ; + vamp:has_source true ; + vamp:has_binary "win32" ; + vamp:has_binary "osx" ; + vamp:has_binary "linux32" ; + . + +plugbase:onsetsds a vamp:Plugin ; + dc:title "OnsetsDS Onset Detector" ; + vamp:name "OnsetsDS Onset Detector" ; + dc:description """Detect note onsets""" ; + vamp:category "Time > Onsets" ; + foaf:maker :maker ; + dc:rights """Copyright (c) 2007-2008 Dan Stowell""" ; +# cc:license <Place plugin license URI here and uncomment> ; + vamp:identifier "onsetsds" ; + vamp:vamp_API_version vamp:api_version_2 ; + owl:versionInfo "1" ; + vamp:input_domain vamp:FrequencyDomain ; + + + vamp:parameter plugbase:onsetsds_param_dftype ; + vamp:parameter plugbase:onsetsds_param_threshold ; + vamp:parameter plugbase:onsetsds_param_medspan ; + + vamp:output plugbase:onsetsds_output_onsets ; + . +plugbase:onsetsds_param_dftype a vamp:QuantizedParameter ; + vamp:identifier "dftype" ; + dc:title "Onset detection function" ; + dc:format "" ; + vamp:min_value 0 ; + vamp:max_value 6 ; + vamp:unit "" ; + vamp:quantize_step 1 ; + vamp:default_value 3 ; + vamp:value_names ( "Power" "Sum of magnitudes" "Complex-domain deviation" "Rectified complex-domain deviation" "Phase deviation" "Weighted phase deviation" "Modified Kullback-Liebler deviation"); + . +plugbase:onsetsds_param_threshold a vamp:Parameter ; + vamp:identifier "threshold" ; + dc:title "Detection threshold" ; + dc:format "" ; + vamp:min_value 0 ; + vamp:max_value 1 ; + vamp:unit "" ; + vamp:default_value 0.5 ; + vamp:value_names (); + . +plugbase:onsetsds_param_medspan a vamp:QuantizedParameter ; + vamp:identifier "medspan" ; + dc:title "Median frame span" ; + dc:format "" ; + vamp:min_value 5 ; + vamp:max_value 21 ; + vamp:unit "" ; + vamp:quantize_step 2 ; + vamp:default_value 11 ; + vamp:value_names (); + . +plugbase:onsetsds_output_onsets a vamp:SparseOutput ; + vamp:identifier "onsets" ; + dc:title "Note Onsets" ; + dc:description "Note onset positions" ; + vamp:fixed_bin_count "true" ; + vamp:unit "" ; + vamp:bin_count 0 ; + vamp:sample_type vamp:VariableSampleRate ; + vamp:sample_rate 172.266 ; +# vamp:computes_event_type <Place event type URI here and uncomment> ; +# vamp:computes_feature <Place feature attribute URI here and uncomment> ; +# vamp:computes_signal_type <Place signal type URI here and uncomment> ; + . +