Chris@89
|
1 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
Chris@89
|
2 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
|
Chris@89
|
3 @prefix vamp: <http://purl.org/ontology/vamp/> .
|
Chris@89
|
4 @prefix plugbase: <http://vamp-plugins.org/rdf/plugins/tuning-difference#> .
|
Chris@89
|
5 @prefix owl: <http://www.w3.org/2002/07/owl#> .
|
Chris@89
|
6 @prefix dc: <http://purl.org/dc/elements/1.1/> .
|
Chris@89
|
7 @prefix af: <http://purl.org/ontology/af/> .
|
Chris@89
|
8 @prefix foaf: <http://xmlns.com/foaf/0.1/> .
|
Chris@89
|
9 @prefix doap: <http://usefulinc.com/ns/doap#> .
|
Chris@89
|
10 @prefix cc: <http://web.resource.org/cc/> .
|
Chris@89
|
11 @prefix : <#> .
|
Chris@89
|
12
|
Chris@89
|
13
|
Chris@89
|
14 ## Properties of this document
|
Chris@89
|
15
|
Chris@89
|
16 <> a vamp:PluginDescription ;
|
Chris@89
|
17 foaf:maker <http://vamp-plugins.org/rdf/template-generator> ;
|
Chris@89
|
18 foaf:primaryTopic <http://vamp-plugins.org/rdf/plugins/tuning-difference> .
|
Chris@89
|
19
|
Chris@89
|
20
|
Chris@89
|
21 ## Maker of the whole plugin library
|
Chris@89
|
22
|
Chris@89
|
23 :library_maker
|
Chris@89
|
24 foaf:name "Chris Cannam" ;
|
Chris@89
|
25 foaf:logo <http://vamp-plugins.org/rdf/plugins/makers/qm.png> ;
|
Chris@89
|
26 foaf:page <http://c4dm.eecs.qmul.ac.uk/> .
|
Chris@89
|
27
|
Chris@89
|
28 ## Properties of the plugin library, and references to the plugins it contains
|
Chris@89
|
29
|
Chris@89
|
30 plugbase:library a vamp:PluginLibrary ;
|
Chris@89
|
31 vamp:identifier "tuning-difference" ;
|
Chris@89
|
32 foaf:maker :library_maker ;
|
Chris@89
|
33 vamp:available_plugin plugbase:tuning-difference ;
|
Chris@89
|
34 dc:title "Tuning Difference" ;
|
Chris@89
|
35 dc:description "Estimate the tuning frequency of a recording, by comparing it to another recording of the same music whose tuning frequency is known" ;
|
Chris@89
|
36 foaf:page <http://code.soundsoftware.ac.uk/projects/tuning-difference> ;
|
Chris@89
|
37 doap:download-page <http://code.soundsoftware.ac.uk/projects/tuning-difference> ;
|
Chris@89
|
38 .
|
Chris@89
|
39
|
Chris@89
|
40
|
Chris@89
|
41 ## Properties of the Tuning Difference plugin
|
Chris@89
|
42
|
Chris@89
|
43 plugbase:tuning-difference a vamp:Plugin ;
|
Chris@89
|
44 dc:title "Tuning Difference" ;
|
Chris@89
|
45 vamp:name "Tuning Difference" ;
|
Chris@89
|
46 dc:description """Estimate the tuning frequency of a recording, by comparing it to another recording of the same music whose tuning frequency is known""" ;
|
Chris@89
|
47 foaf:maker :library_maker ;
|
Chris@89
|
48 dc:rights """GPL""" ;
|
Chris@89
|
49 vamp:identifier "tuning-difference" ;
|
Chris@89
|
50 vamp:vamp_API_version vamp:api_version_2 ;
|
Chris@89
|
51 owl:versionInfo "3" ;
|
Chris@89
|
52 vamp:input_domain vamp:TimeDomain ;
|
Chris@89
|
53 vamp:parameter plugbase:tuning-difference_param_maxduration ;
|
Chris@89
|
54 vamp:parameter plugbase:tuning-difference_param_maxrange ;
|
Chris@89
|
55 vamp:parameter plugbase:tuning-difference_param_finetuning ;
|
Chris@89
|
56
|
Chris@89
|
57 vamp:output plugbase:tuning-difference_output_cents ;
|
Chris@89
|
58 vamp:output plugbase:tuning-difference_output_tuningfreq ;
|
Chris@89
|
59 vamp:output plugbase:tuning-difference_output_reffeature ;
|
Chris@89
|
60 vamp:output plugbase:tuning-difference_output_otherfeature ;
|
Chris@89
|
61 vamp:output plugbase:tuning-difference_output_rotfeature ;
|
Chris@89
|
62 .
|
Chris@89
|
63 plugbase:tuning-difference_param_maxduration a vamp:Parameter ;
|
Chris@89
|
64 vamp:identifier "maxduration" ;
|
Chris@89
|
65 dc:title "Maximum duration to analyse" ;
|
Chris@89
|
66 dc:format "s" ;
|
Chris@89
|
67 vamp:min_value 0 ;
|
Chris@89
|
68 vamp:max_value 3600 ;
|
Chris@89
|
69 vamp:unit "s" ;
|
Chris@89
|
70 vamp:default_value 0 ;
|
Chris@89
|
71 vamp:value_names ();
|
Chris@89
|
72 .
|
Chris@89
|
73 plugbase:tuning-difference_param_maxrange a vamp:QuantizedParameter ;
|
Chris@89
|
74 vamp:identifier "maxrange" ;
|
Chris@89
|
75 dc:title "Maximum range in semitones" ;
|
Chris@89
|
76 dc:format "semitones" ;
|
Chris@89
|
77 vamp:min_value 1 ;
|
Chris@89
|
78 vamp:max_value 11 ;
|
Chris@89
|
79 vamp:unit "semitones" ;
|
Chris@89
|
80 vamp:quantize_step 1 ;
|
Chris@89
|
81 vamp:default_value 4 ;
|
Chris@89
|
82 vamp:value_names ();
|
Chris@89
|
83 .
|
Chris@89
|
84 plugbase:tuning-difference_param_finetuning a vamp:QuantizedParameter ;
|
Chris@89
|
85 vamp:identifier "finetuning" ;
|
Chris@89
|
86 dc:title "Fine tuning" ;
|
Chris@89
|
87 dc:format "" ;
|
Chris@89
|
88 vamp:min_value 0 ;
|
Chris@89
|
89 vamp:max_value 1 ;
|
Chris@89
|
90 vamp:unit "" ;
|
Chris@89
|
91 vamp:quantize_step 1 ;
|
Chris@89
|
92 vamp:default_value 1 ;
|
Chris@89
|
93 vamp:value_names ();
|
Chris@89
|
94 .
|
Chris@89
|
95 plugbase:tuning-difference_output_cents a vamp:SparseOutput ;
|
Chris@89
|
96 vamp:identifier "cents" ;
|
Chris@89
|
97 dc:title "Tuning Difference" ;
|
Chris@89
|
98 dc:description """Difference in averaged frequency profile between channels 1 and 2, in cents. A positive value means channel 2 is higher.""" ;
|
Chris@89
|
99 vamp:fixed_bin_count "true" ;
|
Chris@89
|
100 vamp:unit "cents" ;
|
Chris@89
|
101 vamp:bin_count 1 ;
|
Chris@89
|
102 vamp:sample_type vamp:VariableSampleRate ;
|
Chris@89
|
103 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@89
|
104 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@89
|
105 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@89
|
106 .
|
Chris@89
|
107 plugbase:tuning-difference_output_tuningfreq a vamp:SparseOutput ;
|
Chris@89
|
108 vamp:identifier "tuningfreq" ;
|
Chris@89
|
109 dc:title "Relative Tuning Frequency" ;
|
Chris@89
|
110 dc:description """Tuning frequency of channel 2, if channel 1 is assumed to contain the same music as it at a tuning frequency of A=440Hz.""" ;
|
Chris@89
|
111 vamp:fixed_bin_count "true" ;
|
Chris@89
|
112 vamp:unit "hz" ;
|
Chris@89
|
113 vamp:bin_count 1 ;
|
Chris@89
|
114 vamp:sample_type vamp:VariableSampleRate ;
|
Chris@89
|
115 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@89
|
116 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@89
|
117 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@89
|
118 .
|
Chris@89
|
119 plugbase:tuning-difference_output_reffeature a vamp:DenseOutput ;
|
Chris@89
|
120 vamp:identifier "reffeature" ;
|
Chris@89
|
121 dc:title "Reference Feature" ;
|
Chris@89
|
122 dc:description """Chroma feature from reference audio.""" ;
|
Chris@89
|
123 vamp:fixed_bin_count "true" ;
|
Chris@89
|
124 vamp:unit "" ;
|
Chris@89
|
125 vamp:bin_count 60 ;
|
Chris@89
|
126 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@89
|
127 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@89
|
128 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@89
|
129 .
|
Chris@89
|
130 plugbase:tuning-difference_output_otherfeature a vamp:DenseOutput ;
|
Chris@89
|
131 vamp:identifier "otherfeature" ;
|
Chris@89
|
132 dc:title "Other Feature" ;
|
Chris@89
|
133 dc:description """Chroma feature from other audio, before rotation.""" ;
|
Chris@89
|
134 vamp:fixed_bin_count "true" ;
|
Chris@89
|
135 vamp:unit "" ;
|
Chris@89
|
136 vamp:bin_count 60 ;
|
Chris@89
|
137 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@89
|
138 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@89
|
139 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@89
|
140 .
|
Chris@89
|
141 plugbase:tuning-difference_output_rotfeature a vamp:DenseOutput ;
|
Chris@89
|
142 vamp:identifier "rotfeature" ;
|
Chris@89
|
143 dc:title "Other Feature at Rotated Frequency" ;
|
Chris@89
|
144 dc:description """Chroma feature from reference audio calculated with the tuning frequency obtained from rotation matching.""" ;
|
Chris@89
|
145 vamp:fixed_bin_count "true" ;
|
Chris@89
|
146 vamp:unit "" ;
|
Chris@89
|
147 vamp:bin_count 60 ;
|
Chris@89
|
148 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@89
|
149 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@89
|
150 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@89
|
151 .
|
Chris@89
|
152
|