annotate plugins/vamp-onsetsds.n3 @ 100:c0afe853924a tip

Use common name
author Chris Cannam <cannam@all-day-breakfast.com>
date Tue, 29 Jun 2021 12:11:48 +0100
parents bfea53fbfd3c
children
rev   line source
Chris@8 1 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
Chris@8 2 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
Chris@8 3 @prefix vamp: <http://purl.org/ontology/vamp/> .
Chris@8 4 @prefix plugbase: <http://vamp-plugins.org/rdf/plugins/vamp-onsetsds#> .
Chris@8 5 @prefix owl: <http://www.w3.org/2002/07/owl#> .
Chris@8 6 @prefix dc: <http://purl.org/dc/elements/1.1/> .
Chris@8 7 @prefix af: <http://purl.org/ontology/af/> .
Chris@8 8 @prefix foaf: <http://xmlns.com/foaf/0.1/> .
Chris@49 9 @prefix doap: <http://usefulinc.com/ns/doap#> .
Chris@8 10 @prefix cc: <http://web.resource.org/cc/> .
Chris@11 11 @prefix : <#> .
Chris@8 12
Chris@8 13 <> a vamp:PluginDescription ;
Chris@8 14 foaf:maker <http://www.vamp-plugins.org/doap.rdf#template-generator> ;
Chris@8 15 foaf:primaryTopic <http://vamp-plugins.org/rdf/plugins/vamp-onsetsds> .
Chris@8 16
Chris@49 17 :maker
Chris@50 18 foaf:name "Dan Stowell" ;
Chris@50 19 foaf:logo <http://vamp-plugins.org/rdf/plugins/makers/qm.png> ;
Chris@50 20 foaf:page <http://c4dm.eecs.qmul.ac.uk/> .
Chris@49 21
Chris@8 22 :vamp-onsetsds a vamp:PluginLibrary ;
Chris@8 23 vamp:identifier "vamp-onsetsds" ;
Chris@49 24 dc:title "OnsetsDS plugin" ;
Chris@49 25 dc:description """Note onset detector using Dan Stowell's OnsetsDS library""" ;
Chris@8 26 vamp:available_plugin plugbase:onsetsds ;
Chris@49 27 foaf:maker :maker ;
Chris@49 28 foaf:page <http://code.soundsoftware.ac.uk/projects/vamp-onsetsds-plugin> ;
Chris@64 29 doap:download-page <http://sourceforge.net/projects/vamp/files/vamp-onsetsds-plugin/0.2/> ;
Chris@49 30 vamp:has_source true ;
Chris@49 31 vamp:has_binary "win32" ;
Chris@49 32 vamp:has_binary "osx" ;
Chris@49 33 vamp:has_binary "linux32" ;
Chris@8 34 .
Chris@8 35
Chris@8 36 plugbase:onsetsds a vamp:Plugin ;
Chris@8 37 dc:title "OnsetsDS Onset Detector" ;
Chris@8 38 vamp:name "OnsetsDS Onset Detector" ;
Chris@8 39 dc:description """Detect note onsets""" ;
Chris@49 40 vamp:category "Time > Onsets" ;
Chris@49 41 foaf:maker :maker ;
Chris@8 42 dc:rights """Copyright (c) 2007-2008 Dan Stowell""" ;
Chris@8 43 # cc:license <Place plugin license URI here and uncomment> ;
Chris@8 44 vamp:identifier "onsetsds" ;
Chris@8 45 vamp:vamp_API_version vamp:api_version_2 ;
Chris@8 46 owl:versionInfo "1" ;
Chris@8 47 vamp:input_domain vamp:FrequencyDomain ;
Chris@8 48
Chris@8 49
Chris@8 50 vamp:parameter plugbase:onsetsds_param_dftype ;
Chris@8 51 vamp:parameter plugbase:onsetsds_param_threshold ;
Chris@8 52 vamp:parameter plugbase:onsetsds_param_medspan ;
Chris@8 53
Chris@8 54 vamp:output plugbase:onsetsds_output_onsets ;
Chris@8 55 .
Chris@8 56 plugbase:onsetsds_param_dftype a vamp:QuantizedParameter ;
Chris@8 57 vamp:identifier "dftype" ;
Chris@8 58 dc:title "Onset detection function" ;
Chris@8 59 dc:format "" ;
Chris@8 60 vamp:min_value 0 ;
Chris@8 61 vamp:max_value 6 ;
Chris@8 62 vamp:unit "" ;
Chris@8 63 vamp:quantize_step 1 ;
Chris@8 64 vamp:default_value 3 ;
Chris@8 65 vamp:value_names ( "Power" "Sum of magnitudes" "Complex-domain deviation" "Rectified complex-domain deviation" "Phase deviation" "Weighted phase deviation" "Modified Kullback-Liebler deviation");
Chris@8 66 .
Chris@8 67 plugbase:onsetsds_param_threshold a vamp:Parameter ;
Chris@8 68 vamp:identifier "threshold" ;
Chris@8 69 dc:title "Detection threshold" ;
Chris@8 70 dc:format "" ;
Chris@8 71 vamp:min_value 0 ;
Chris@8 72 vamp:max_value 1 ;
Chris@8 73 vamp:unit "" ;
Chris@8 74 vamp:default_value 0.5 ;
Chris@8 75 vamp:value_names ();
Chris@8 76 .
Chris@8 77 plugbase:onsetsds_param_medspan a vamp:QuantizedParameter ;
Chris@8 78 vamp:identifier "medspan" ;
Chris@8 79 dc:title "Median frame span" ;
Chris@8 80 dc:format "" ;
Chris@8 81 vamp:min_value 5 ;
Chris@8 82 vamp:max_value 21 ;
Chris@8 83 vamp:unit "" ;
Chris@8 84 vamp:quantize_step 2 ;
Chris@8 85 vamp:default_value 11 ;
Chris@8 86 vamp:value_names ();
Chris@8 87 .
Chris@8 88 plugbase:onsetsds_output_onsets a vamp:SparseOutput ;
Chris@8 89 vamp:identifier "onsets" ;
Chris@8 90 dc:title "Note Onsets" ;
Chris@8 91 dc:description "Note onset positions" ;
Chris@8 92 vamp:fixed_bin_count "true" ;
Chris@8 93 vamp:unit "" ;
Chris@8 94 vamp:bin_count 0 ;
Chris@8 95 vamp:sample_type vamp:VariableSampleRate ;
Chris@8 96 vamp:sample_rate 172.266 ;
Chris@8 97 # vamp:computes_event_type <Place event type URI here and uncomment> ;
Chris@8 98 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
Chris@8 99 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
Chris@8 100 .
Chris@8 101