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@8
|
9 @prefix cc: <http://web.resource.org/cc/> .
|
Chris@11
|
10 @prefix : <#> .
|
Chris@8
|
11
|
Chris@8
|
12 <> a vamp:PluginDescription ;
|
Chris@8
|
13 foaf:maker <http://www.vamp-plugins.org/doap.rdf#template-generator> ;
|
Chris@8
|
14 foaf:primaryTopic <http://vamp-plugins.org/rdf/plugins/vamp-onsetsds> .
|
Chris@8
|
15
|
Chris@8
|
16 :vamp-onsetsds a vamp:PluginLibrary ;
|
Chris@8
|
17 vamp:identifier "vamp-onsetsds" ;
|
Chris@8
|
18 vamp:available_plugin plugbase:onsetsds ;
|
Chris@8
|
19 # foaf:page <Place more-information HTML page URL here and uncomment> ;
|
Chris@8
|
20 .
|
Chris@8
|
21
|
Chris@8
|
22 plugbase:onsetsds a vamp:Plugin ;
|
Chris@8
|
23 dc:title "OnsetsDS Onset Detector" ;
|
Chris@8
|
24 vamp:name "OnsetsDS Onset Detector" ;
|
Chris@8
|
25 dc:description """Detect note onsets""" ;
|
Chris@8
|
26 foaf:maker [ foaf:name "Dan Stowell" ] ; # FIXME could give plugin author's URI here
|
Chris@8
|
27 dc:rights """Copyright (c) 2007-2008 Dan Stowell""" ;
|
Chris@8
|
28 # cc:license <Place plugin license URI here and uncomment> ;
|
Chris@8
|
29 vamp:identifier "onsetsds" ;
|
Chris@8
|
30 vamp:vamp_API_version vamp:api_version_2 ;
|
Chris@8
|
31 owl:versionInfo "1" ;
|
Chris@8
|
32 vamp:input_domain vamp:FrequencyDomain ;
|
Chris@8
|
33
|
Chris@8
|
34
|
Chris@8
|
35 vamp:parameter plugbase:onsetsds_param_dftype ;
|
Chris@8
|
36 vamp:parameter plugbase:onsetsds_param_threshold ;
|
Chris@8
|
37 vamp:parameter plugbase:onsetsds_param_medspan ;
|
Chris@8
|
38
|
Chris@8
|
39 vamp:output plugbase:onsetsds_output_onsets ;
|
Chris@8
|
40 .
|
Chris@8
|
41 plugbase:onsetsds_param_dftype a vamp:QuantizedParameter ;
|
Chris@8
|
42 vamp:identifier "dftype" ;
|
Chris@8
|
43 dc:title "Onset detection function" ;
|
Chris@8
|
44 dc:format "" ;
|
Chris@8
|
45 vamp:min_value 0 ;
|
Chris@8
|
46 vamp:max_value 6 ;
|
Chris@8
|
47 vamp:unit "" ;
|
Chris@8
|
48 vamp:quantize_step 1 ;
|
Chris@8
|
49 vamp:default_value 3 ;
|
Chris@8
|
50 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
|
51 .
|
Chris@8
|
52 plugbase:onsetsds_param_threshold a vamp:Parameter ;
|
Chris@8
|
53 vamp:identifier "threshold" ;
|
Chris@8
|
54 dc:title "Detection threshold" ;
|
Chris@8
|
55 dc:format "" ;
|
Chris@8
|
56 vamp:min_value 0 ;
|
Chris@8
|
57 vamp:max_value 1 ;
|
Chris@8
|
58 vamp:unit "" ;
|
Chris@8
|
59 vamp:default_value 0.5 ;
|
Chris@8
|
60 vamp:value_names ();
|
Chris@8
|
61 .
|
Chris@8
|
62 plugbase:onsetsds_param_medspan a vamp:QuantizedParameter ;
|
Chris@8
|
63 vamp:identifier "medspan" ;
|
Chris@8
|
64 dc:title "Median frame span" ;
|
Chris@8
|
65 dc:format "" ;
|
Chris@8
|
66 vamp:min_value 5 ;
|
Chris@8
|
67 vamp:max_value 21 ;
|
Chris@8
|
68 vamp:unit "" ;
|
Chris@8
|
69 vamp:quantize_step 2 ;
|
Chris@8
|
70 vamp:default_value 11 ;
|
Chris@8
|
71 vamp:value_names ();
|
Chris@8
|
72 .
|
Chris@8
|
73 plugbase:onsetsds_output_onsets a vamp:SparseOutput ;
|
Chris@8
|
74 vamp:identifier "onsets" ;
|
Chris@8
|
75 dc:title "Note Onsets" ;
|
Chris@8
|
76 dc:description "Note onset positions" ;
|
Chris@8
|
77 vamp:fixed_bin_count "true" ;
|
Chris@8
|
78 vamp:unit "" ;
|
Chris@8
|
79 vamp:bin_count 0 ;
|
Chris@8
|
80 vamp:sample_type vamp:VariableSampleRate ;
|
Chris@8
|
81 vamp:sample_rate 172.266 ;
|
Chris@8
|
82 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@8
|
83 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@8
|
84 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@8
|
85 .
|
Chris@8
|
86
|