c@69
|
1 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
c@69
|
2 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
|
c@69
|
3 @prefix vamp: <http://www.purl.org/ontology/vamp/> .
|
c@69
|
4 @prefix vampex: <http://www.purl.org/ontology/vamp/examples/> .
|
c@69
|
5 @prefix plugbase: <http://purl.org/ontology/vamp/qm-plugins/> .
|
c@69
|
6 @prefix owl: <http://www.w3.org/2002/07/owl#> .
|
c@69
|
7 @prefix dc: <http://purl.org/dc/elements/1.1/> .
|
c@69
|
8 @prefix af: <http://purl.org/ontology/af/> .
|
c@69
|
9 @prefix foaf: <http://xmlns.com/foaf/0.1/> .
|
c@69
|
10 @prefix cc: <http://web.resource.org/cc/> .
|
c@69
|
11 @prefix thisplug: <http://purl.org/ontology/vamp/qm-plugins/qm-onsetdetector#> .
|
c@69
|
12 @prefix : <> .
|
c@69
|
13
|
c@69
|
14 <> a vamp:PluginDescription ;
|
c@69
|
15 foaf:maker <http://www.vamp-plugins.org/> ;
|
c@69
|
16 foaf:maker <http://www.vamp-plugins.org/doap.rdf#template-generator> ;
|
c@69
|
17 foaf:primaryTopic plugbase:qm-onsetdetector .
|
c@69
|
18
|
c@69
|
19 plugbase:qm-onsetdetector a vamp:Plugin ;
|
c@69
|
20 dc:title "Note Onset Detector" ;
|
c@69
|
21 vamp:name "Note Onset Detector" ;
|
c@69
|
22 dc:description "Estimate individual note onset positions" ;
|
c@69
|
23 foaf:maker [ foaf:name "Queen Mary, University of London"] ; # FIXME could give plugin author's URI here
|
c@69
|
24 cc:license <FIXME license for the plugin> ;
|
c@69
|
25 vamp:identifier "qm-onsetdetector" ;
|
c@69
|
26 vamp:vamp_API_version vamp:api_version_1 ;
|
c@69
|
27 owl:versionInfo "2" ;
|
c@69
|
28 vamp:input_domain vamp:TimeDomain ;
|
c@69
|
29
|
c@69
|
30 vamp:parameter_descriptor thisplug:param_dftype ;
|
c@69
|
31 vamp:parameter_descriptor thisplug:param_sensitivity ;
|
c@69
|
32 vamp:parameter_descriptor thisplug:param_whiten ;
|
c@69
|
33
|
c@69
|
34 vamp:output_descriptor thisplug:output_onsets ;
|
c@69
|
35 vamp:output_descriptor thisplug:output_detection_fn ;
|
c@69
|
36 vamp:output_descriptor thisplug:output_smoothed_df ;
|
c@69
|
37 .
|
c@69
|
38 thisplug:param_dftype a vamp:ParameterDescriptor ;
|
c@69
|
39 vamp:identifier "dftype" ;
|
c@69
|
40 dc:title "Onset Detection Function Type" ;
|
c@69
|
41 dc:format "" ;
|
c@69
|
42 vamp:min_value 0 ;
|
c@69
|
43 vamp:max_value 4 ;
|
c@69
|
44 vamp:default_value 3 .
|
c@69
|
45
|
c@69
|
46 thisplug:param_sensitivity a vamp:ParameterDescriptor ;
|
c@69
|
47 vamp:identifier "sensitivity" ;
|
c@69
|
48 dc:title "Onset Detector Sensitivity" ;
|
c@69
|
49 dc:format "%" ;
|
c@69
|
50 vamp:min_value 0 ;
|
c@69
|
51 vamp:max_value 100 ;
|
c@69
|
52 vamp:default_value 50 .
|
c@69
|
53
|
c@69
|
54 thisplug:param_whiten a vamp:ParameterDescriptor ;
|
c@69
|
55 vamp:identifier "whiten" ;
|
c@69
|
56 dc:title "Adaptive Whitening" ;
|
c@69
|
57 dc:format "" ;
|
c@69
|
58 vamp:min_value 0 ;
|
c@69
|
59 vamp:max_value 1 ;
|
c@69
|
60 vamp:default_value 0 .
|
c@69
|
61
|
c@69
|
62 thisplug:output_onsets a vamp:SparseOutput ;
|
c@69
|
63 vamp:identifier "onsets" ;
|
c@69
|
64 dc:title "Note Onsets" ;
|
c@69
|
65 dc:description "Perceived note onset positions" ;
|
c@69
|
66 vamp:fixed_bin_count "true" ;
|
c@69
|
67 vamp:is_quantized "true" ;
|
c@69
|
68 vamp:unit "" ;
|
c@69
|
69 vamp:bin_count 0 ;
|
c@69
|
70 vamp:bin_names ();
|
c@69
|
71 vamp:quantize_step 1.68156e-44 ;
|
c@69
|
72 vamp:sample_type vamp:VariableSampleRate ;
|
c@69
|
73 vamp:sample_rate 86.1326 ;
|
c@69
|
74 vamp:computes_feature_type <FIXME feature type URI> ;
|
c@69
|
75 vamp:computes_event_type <FIXME event type URI> ;
|
c@69
|
76 .
|
c@69
|
77 thisplug:output_detection_fn a vamp:DenseOutput ;
|
c@69
|
78 vamp:identifier "detection_fn" ;
|
c@69
|
79 dc:title "Onset Detection Function" ;
|
c@69
|
80 dc:description "Probability function of note onset likelihood" ;
|
c@69
|
81 vamp:fixed_bin_count "true" ;
|
c@69
|
82 vamp:is_quantised "false" ;
|
c@69
|
83 vamp:unit "" ;
|
c@69
|
84 vamp:bin_count 1 ;
|
c@69
|
85 vamp:bin_names ( "");
|
c@69
|
86 vamp:sample_type vamp:OneSamplePerStep ;
|
c@69
|
87 vamp:computes_feature_type <FIXME feature type URI> ;
|
c@69
|
88 vamp:computes_event_type <FIXME event type URI> ;
|
c@69
|
89 .
|
c@69
|
90 thisplug:output_smoothed_df a vamp:SparseOutput ;
|
c@69
|
91 vamp:identifier "smoothed_df" ;
|
c@69
|
92 dc:title "Smoothed Detection Function" ;
|
c@69
|
93 dc:description "Smoothed probability function used for peak-picking" ;
|
c@69
|
94 vamp:fixed_bin_count "true" ;
|
c@69
|
95 vamp:is_quantized "false" ;
|
c@69
|
96 vamp:unit "" ;
|
c@69
|
97 vamp:bin_count 1 ;
|
c@69
|
98 vamp:bin_names ( "");
|
c@69
|
99 vamp:sample_type vamp:VariableSampleRate ;
|
c@69
|
100 vamp:sample_rate 86.1326 ;
|
c@69
|
101 vamp:computes_feature_type <FIXME feature type URI> ;
|
c@69
|
102 vamp:computes_event_type <FIXME event type URI> ;
|
c@69
|
103 .
|