# HG changeset patch # User Chris Cannam # Date 1386339669 0 # Node ID 296404fd93c74f1ef065d74ffeb1b7d6d6ad166d # Parent fffb710f2cf006570211b0e6da53f29f488b2d51 Add basic RDF diff -r fffb710f2cf0 -r 296404fd93c7 beatroot-vamp.n3 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/beatroot-vamp.n3 Fri Dec 06 14:21:09 2013 +0000 @@ -0,0 +1,93 @@ +@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 . + +:beatroot-vamp a vamp:PluginLibrary ; + vamp:identifier "beatroot-vamp" ; + vamp:available_plugin plugbase:beatroot ; + foaf:page ; + . + +plugbase:beatroot a vamp:Plugin ; + dc:title "BeatRoot Beat Tracker" ; + vamp:name "BeatRoot Beat Tracker" ; + dc:description """Identify beat locations in music""" ; + foaf:maker [ foaf:name "Simon Dixon (plugin by Chris Cannam)" ] ; # FIXME could give plugin author's URI here + dc:rights """GPL""" ; +# cc:license ; + vamp:identifier "beatroot" ; + vamp:vamp_API_version vamp:api_version_2 ; + owl:versionInfo "1" ; + vamp:input_domain vamp:FrequencyDomain ; + + + vamp:parameter plugbase:beatroot_param_preMarginFactor ; + vamp:parameter plugbase:beatroot_param_postMarginFactor ; + vamp:parameter plugbase:beatroot_param_maxChange ; + vamp:parameter plugbase:beatroot_param_expiryTime ; + + vamp:output plugbase:beatroot_output_beats ; + . +plugbase:beatroot_param_preMarginFactor a vamp:Parameter ; + vamp:identifier "preMarginFactor" ; + dc:title "Pre-Margin Factor" ; + dc:format "" ; + vamp:min_value 0 ; + vamp:max_value 1 ; + vamp:unit "" ; + vamp:default_value 0.15 ; + vamp:value_names (); + . +plugbase:beatroot_param_postMarginFactor a vamp:Parameter ; + vamp:identifier "postMarginFactor" ; + dc:title "Post-Margin Factor" ; + dc:format "" ; + vamp:min_value 0 ; + vamp:max_value 1 ; + vamp:unit "" ; + vamp:default_value 0.3 ; + vamp:value_names (); + . +plugbase:beatroot_param_maxChange a vamp:Parameter ; + vamp:identifier "maxChange" ; + dc:title "Maximum Change" ; + dc:format "" ; + vamp:min_value 0 ; + vamp:max_value 1 ; + vamp:unit "" ; + vamp:default_value 0.2 ; + vamp:value_names (); + . +plugbase:beatroot_param_expiryTime a vamp:Parameter ; + vamp:identifier "expiryTime" ; + dc:title "Expiry Time" ; + dc:format "" ; + vamp:min_value 2 ; + vamp:max_value 120 ; + vamp:unit "" ; + vamp:default_value 10 ; + vamp:value_names (); + . +plugbase:beatroot_output_beats a vamp:SparseOutput ; + vamp:identifier "beats" ; + dc:title "Beats" ; + dc:description """Estimated beat locations""" ; + vamp:fixed_bin_count "true" ; + vamp:unit "" ; + vamp:bin_count 0 ; + vamp:sample_type vamp:VariableSampleRate ; + vamp:sample_rate 44100 ; + vamp:computes_event_type af:Beat ; + . +