# HG changeset patch # User Chris Cannam # Date 1403779564 -3600 # Node ID 717aa5a28254817c48be2450af49b9b84c61c91e # Parent 1ee043ea9d066ab16f9f576236ae16c5c853e6b6 RDF description diff -r 1ee043ea9d06 -r 717aa5a28254 vamp-onsetsds.n3 --- /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: . +@prefix xsd: . +@prefix vamp: . +@prefix plugbase: . +@prefix owl: . +@prefix dc: . +@prefix af: . +@prefix foaf: . +@prefix doap: . +@prefix cc: . +@prefix : <#> . + +<> a vamp:PluginDescription ; + foaf:maker ; + foaf:primaryTopic . + +:maker + foaf:name "Dan Stowell" ; + foaf:logo ; + foaf:page . + +: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 ; + doap:download-page: ; + 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 ; + 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 ; +# vamp:computes_feature ; +# vamp:computes_signal_type ; + . +