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@49
|
18 foaf:name "Dan Stowell" .
|
Chris@49
|
19
|
Chris@8
|
20 :vamp-onsetsds a vamp:PluginLibrary ;
|
Chris@8
|
21 vamp:identifier "vamp-onsetsds" ;
|
Chris@49
|
22 dc:title "OnsetsDS plugin" ;
|
Chris@49
|
23 dc:description """Note onset detector using Dan Stowell's OnsetsDS library""" ;
|
Chris@8
|
24 vamp:available_plugin plugbase:onsetsds ;
|
Chris@49
|
25 foaf:maker :maker ;
|
Chris@49
|
26 foaf:page <http://code.soundsoftware.ac.uk/projects/vamp-onsetsds-plugin> ;
|
Chris@49
|
27 doap:download-page: <http://sourceforge.net/projects/vamp/files/vamp-onsetsds-plugin/0.2/> ;
|
Chris@49
|
28 vamp:has_source true ;
|
Chris@49
|
29 vamp:has_binary "win32" ;
|
Chris@49
|
30 vamp:has_binary "osx" ;
|
Chris@49
|
31 vamp:has_binary "linux32" ;
|
Chris@8
|
32 .
|
Chris@8
|
33
|
Chris@8
|
34 plugbase:onsetsds a vamp:Plugin ;
|
Chris@8
|
35 dc:title "OnsetsDS Onset Detector" ;
|
Chris@8
|
36 vamp:name "OnsetsDS Onset Detector" ;
|
Chris@8
|
37 dc:description """Detect note onsets""" ;
|
Chris@49
|
38 vamp:category "Time > Onsets" ;
|
Chris@49
|
39 foaf:maker :maker ;
|
Chris@8
|
40 dc:rights """Copyright (c) 2007-2008 Dan Stowell""" ;
|
Chris@8
|
41 # cc:license <Place plugin license URI here and uncomment> ;
|
Chris@8
|
42 vamp:identifier "onsetsds" ;
|
Chris@8
|
43 vamp:vamp_API_version vamp:api_version_2 ;
|
Chris@8
|
44 owl:versionInfo "1" ;
|
Chris@8
|
45 vamp:input_domain vamp:FrequencyDomain ;
|
Chris@8
|
46
|
Chris@8
|
47
|
Chris@8
|
48 vamp:parameter plugbase:onsetsds_param_dftype ;
|
Chris@8
|
49 vamp:parameter plugbase:onsetsds_param_threshold ;
|
Chris@8
|
50 vamp:parameter plugbase:onsetsds_param_medspan ;
|
Chris@8
|
51
|
Chris@8
|
52 vamp:output plugbase:onsetsds_output_onsets ;
|
Chris@8
|
53 .
|
Chris@8
|
54 plugbase:onsetsds_param_dftype a vamp:QuantizedParameter ;
|
Chris@8
|
55 vamp:identifier "dftype" ;
|
Chris@8
|
56 dc:title "Onset detection function" ;
|
Chris@8
|
57 dc:format "" ;
|
Chris@8
|
58 vamp:min_value 0 ;
|
Chris@8
|
59 vamp:max_value 6 ;
|
Chris@8
|
60 vamp:unit "" ;
|
Chris@8
|
61 vamp:quantize_step 1 ;
|
Chris@8
|
62 vamp:default_value 3 ;
|
Chris@8
|
63 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
|
64 .
|
Chris@8
|
65 plugbase:onsetsds_param_threshold a vamp:Parameter ;
|
Chris@8
|
66 vamp:identifier "threshold" ;
|
Chris@8
|
67 dc:title "Detection threshold" ;
|
Chris@8
|
68 dc:format "" ;
|
Chris@8
|
69 vamp:min_value 0 ;
|
Chris@8
|
70 vamp:max_value 1 ;
|
Chris@8
|
71 vamp:unit "" ;
|
Chris@8
|
72 vamp:default_value 0.5 ;
|
Chris@8
|
73 vamp:value_names ();
|
Chris@8
|
74 .
|
Chris@8
|
75 plugbase:onsetsds_param_medspan a vamp:QuantizedParameter ;
|
Chris@8
|
76 vamp:identifier "medspan" ;
|
Chris@8
|
77 dc:title "Median frame span" ;
|
Chris@8
|
78 dc:format "" ;
|
Chris@8
|
79 vamp:min_value 5 ;
|
Chris@8
|
80 vamp:max_value 21 ;
|
Chris@8
|
81 vamp:unit "" ;
|
Chris@8
|
82 vamp:quantize_step 2 ;
|
Chris@8
|
83 vamp:default_value 11 ;
|
Chris@8
|
84 vamp:value_names ();
|
Chris@8
|
85 .
|
Chris@8
|
86 plugbase:onsetsds_output_onsets a vamp:SparseOutput ;
|
Chris@8
|
87 vamp:identifier "onsets" ;
|
Chris@8
|
88 dc:title "Note Onsets" ;
|
Chris@8
|
89 dc:description "Note onset positions" ;
|
Chris@8
|
90 vamp:fixed_bin_count "true" ;
|
Chris@8
|
91 vamp:unit "" ;
|
Chris@8
|
92 vamp:bin_count 0 ;
|
Chris@8
|
93 vamp:sample_type vamp:VariableSampleRate ;
|
Chris@8
|
94 vamp:sample_rate 172.266 ;
|
Chris@8
|
95 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@8
|
96 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@8
|
97 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@8
|
98 .
|
Chris@8
|
99
|