annotate plugins/qm-vamp-plugins.n3 @ 7:cdc1b7c1c1a3

* Add rdf for QM plugins
author Chris Cannam
date Fri, 14 Nov 2008 13:28:42 +0000
parents
children 24cf3804da57
rev   line source
Chris@7 1 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
Chris@7 2 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
Chris@7 3 @prefix vamp: <http://purl.org/ontology/vamp/> .
Chris@7 4 @prefix plugbase: <http://vamp-plugins.org/rdf/plugins/qm-vamp-plugins#> .
Chris@7 5 @prefix owl: <http://www.w3.org/2002/07/owl#> .
Chris@7 6 @prefix dc: <http://purl.org/dc/elements/1.1/> .
Chris@7 7 @prefix af: <http://purl.org/ontology/af/> .
Chris@7 8 @prefix foaf: <http://xmlns.com/foaf/0.1/> .
Chris@7 9 @prefix cc: <http://web.resource.org/cc/> .
Chris@7 10 @prefix : <> .
Chris@7 11
Chris@7 12 <> a vamp:PluginDescription ;
Chris@7 13 foaf:maker <http://www.vamp-plugins.org/doap.rdf#template-generator> ;
Chris@7 14 foaf:primaryTopic <http://vamp-plugins.org/rdf/plugins/qm-vamp-plugins> .
Chris@7 15
Chris@7 16 :qm-vamp-plugins a vamp:PluginLibrary ;
Chris@7 17 vamp:identifier "qm-vamp-plugins" ;
Chris@7 18 vamp:available_plugin plugbase:qm-chromagram ;
Chris@7 19 vamp:available_plugin plugbase:qm-constantq ;
Chris@7 20 vamp:available_plugin plugbase:qm-keydetector ;
Chris@7 21 vamp:available_plugin plugbase:qm-mfcc ;
Chris@7 22 vamp:available_plugin plugbase:qm-onsetdetector ;
Chris@7 23 vamp:available_plugin plugbase:qm-segmenter ;
Chris@7 24 vamp:available_plugin plugbase:qm-similarity ;
Chris@7 25 vamp:available_plugin plugbase:qm-tempotracker ;
Chris@7 26 vamp:available_plugin plugbase:qm-tonalchange ;
Chris@7 27 foaf:page <http://vamp-plugins.org/plugin-doc/qm-vamp-plugins.html> ;
Chris@7 28 .
Chris@7 29
Chris@7 30 plugbase:qm-chromagram a vamp:Plugin ;
Chris@7 31 dc:title "Chromagram" ;
Chris@7 32 vamp:name "Chromagram" ;
Chris@7 33 dc:description """Extract a series of tonal chroma vectors from the audio""" ;
Chris@7 34 foaf:page <http://vamp-plugins.org/plugin-doc/qm-vamp-plugins.html#qm-chromagram> ;
Chris@7 35 foaf:maker [ foaf:name "Queen Mary, University of London" ] ; # FIXME could give plugin author's URI here
Chris@7 36 dc:rights """Plugin by Chris Cannam and Christian Landone. Copyright (c) 2006-2008 QMUL - All Rights Reserved""" ;
Chris@7 37 vamp:identifier "qm-chromagram" ;
Chris@7 38 vamp:vamp_API_version vamp:api_version_2 ;
Chris@7 39 owl:versionInfo "3" ;
Chris@7 40 vamp:input_domain vamp:FrequencyDomain ;
Chris@7 41
Chris@7 42
Chris@7 43 vamp:parameter plugbase:qm-chromagram_param_minpitch ;
Chris@7 44 vamp:parameter plugbase:qm-chromagram_param_maxpitch ;
Chris@7 45 vamp:parameter plugbase:qm-chromagram_param_tuning ;
Chris@7 46 vamp:parameter plugbase:qm-chromagram_param_bpo ;
Chris@7 47 vamp:parameter plugbase:qm-chromagram_param_normalization ;
Chris@7 48
Chris@7 49 vamp:output plugbase:qm-chromagram_output_chromagram ;
Chris@7 50 vamp:output plugbase:qm-chromagram_output_chromameans ;
Chris@7 51 .
Chris@7 52 plugbase:qm-chromagram_param_minpitch a vamp:QuantizedParameter ;
Chris@7 53 vamp:identifier "minpitch" ;
Chris@7 54 dc:title "Minimum Pitch" ;
Chris@7 55 dc:format "MIDI units" ;
Chris@7 56 vamp:min_value 0 ;
Chris@7 57 vamp:max_value 127 ;
Chris@7 58 vamp:unit "MIDI units" ;
Chris@7 59 vamp:quantize_step 1 ;
Chris@7 60 vamp:default_value 12 ;
Chris@7 61 vamp:value_names ();
Chris@7 62 .
Chris@7 63 plugbase:qm-chromagram_param_maxpitch a vamp:QuantizedParameter ;
Chris@7 64 vamp:identifier "maxpitch" ;
Chris@7 65 dc:title "Maximum Pitch" ;
Chris@7 66 dc:format "MIDI units" ;
Chris@7 67 vamp:min_value 0 ;
Chris@7 68 vamp:max_value 127 ;
Chris@7 69 vamp:unit "MIDI units" ;
Chris@7 70 vamp:quantize_step 1 ;
Chris@7 71 vamp:default_value 96 ;
Chris@7 72 vamp:value_names ();
Chris@7 73 .
Chris@7 74 plugbase:qm-chromagram_param_tuning a vamp:Parameter ;
Chris@7 75 vamp:identifier "tuning" ;
Chris@7 76 dc:title "Tuning Frequency" ;
Chris@7 77 dc:format "Hz" ;
Chris@7 78 vamp:min_value 420 ;
Chris@7 79 vamp:max_value 460 ;
Chris@7 80 vamp:unit "Hz" ;
Chris@7 81 vamp:default_value 440 ;
Chris@7 82 vamp:value_names ();
Chris@7 83 .
Chris@7 84 plugbase:qm-chromagram_param_bpo a vamp:QuantizedParameter ;
Chris@7 85 vamp:identifier "bpo" ;
Chris@7 86 dc:title "Bins per Octave" ;
Chris@7 87 dc:format "bins" ;
Chris@7 88 vamp:min_value 2 ;
Chris@7 89 vamp:max_value 48 ;
Chris@7 90 vamp:unit "bins" ;
Chris@7 91 vamp:quantize_step 1 ;
Chris@7 92 vamp:default_value 12 ;
Chris@7 93 vamp:value_names ();
Chris@7 94 .
Chris@7 95 plugbase:qm-chromagram_param_normalization a vamp:QuantizedParameter ;
Chris@7 96 vamp:identifier "normalization" ;
Chris@7 97 dc:title "Normalization" ;
Chris@7 98 dc:format "" ;
Chris@7 99 vamp:min_value 0 ;
Chris@7 100 vamp:max_value 2 ;
Chris@7 101 vamp:unit "" ;
Chris@7 102 vamp:quantize_step 1 ;
Chris@7 103 vamp:default_value 0 ;
Chris@7 104 vamp:value_names ( "None" "Unit Sum" "Unit Maximum");
Chris@7 105 .
Chris@7 106 plugbase:qm-chromagram_output_chromagram a vamp:DenseOutput ;
Chris@7 107 vamp:identifier "chromagram" ;
Chris@7 108 dc:title "Chromagram" ;
Chris@7 109 dc:description "Output of chromagram, as a single vector per process block" ;
Chris@7 110 vamp:fixed_bin_count "true" ;
Chris@7 111 vamp:unit "" ;
Chris@7 112 vamp:bin_count 12 ;
Chris@7 113 vamp:bin_names ( "C" "C#" "D" "D#" "E" "F" "F#" "G" "G#" "A" "A#" "B");
Chris@7 114 # vamp:computes_event_type <Place event type URI here and uncomment> ;
Chris@7 115 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
Chris@7 116 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
Chris@7 117 .
Chris@7 118 plugbase:qm-chromagram_output_chromameans a vamp:DenseOutput ;
Chris@7 119 vamp:identifier "chromameans" ;
Chris@7 120 dc:title "Chroma Means" ;
Chris@7 121 dc:description "Mean values of chromagram bins across the duration of the input audio" ;
Chris@7 122 vamp:fixed_bin_count "true" ;
Chris@7 123 vamp:unit "" ;
Chris@7 124 vamp:bin_count 12 ;
Chris@7 125 vamp:bin_names ( "C" "C#" "D" "D#" "E" "F" "F#" "G" "G#" "A" "A#" "B");
Chris@7 126 # vamp:computes_event_type <Place event type URI here and uncomment> ;
Chris@7 127 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
Chris@7 128 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
Chris@7 129 .
Chris@7 130 plugbase:qm-constantq a vamp:Plugin ;
Chris@7 131 dc:title "Constant-Q Spectrogram" ;
Chris@7 132 vamp:name "Constant-Q Spectrogram" ;
Chris@7 133 dc:description """Extract a spectrogram with constant ratio of centre frequency to resolution from the input audio""" ;
Chris@7 134 foaf:page <http://vamp-plugins.org/plugin-doc/qm-vamp-plugins.html#qm-constantq> ;
Chris@7 135 foaf:maker [ foaf:name "Queen Mary, University of London" ] ; # FIXME could give plugin author's URI here
Chris@7 136 dc:rights """Plugin by Chris Cannam and Christian Landone. Copyright (c) 2006-2008 QMUL - All Rights Reserved""" ;
Chris@7 137 vamp:identifier "qm-constantq" ;
Chris@7 138 vamp:vamp_API_version vamp:api_version_2 ;
Chris@7 139 owl:versionInfo "2" ;
Chris@7 140 vamp:input_domain vamp:FrequencyDomain ;
Chris@7 141
Chris@7 142
Chris@7 143 vamp:parameter plugbase:qm-constantq_param_minpitch ;
Chris@7 144 vamp:parameter plugbase:qm-constantq_param_maxpitch ;
Chris@7 145 vamp:parameter plugbase:qm-constantq_param_tuning ;
Chris@7 146 vamp:parameter plugbase:qm-constantq_param_bpo ;
Chris@7 147 vamp:parameter plugbase:qm-constantq_param_normalized ;
Chris@7 148
Chris@7 149 vamp:output plugbase:qm-constantq_output_constantq ;
Chris@7 150 .
Chris@7 151 plugbase:qm-constantq_param_minpitch a vamp:QuantizedParameter ;
Chris@7 152 vamp:identifier "minpitch" ;
Chris@7 153 dc:title "Minimum Pitch" ;
Chris@7 154 dc:format "MIDI units" ;
Chris@7 155 vamp:min_value 0 ;
Chris@7 156 vamp:max_value 127 ;
Chris@7 157 vamp:unit "MIDI units" ;
Chris@7 158 vamp:quantize_step 1 ;
Chris@7 159 vamp:default_value 36 ;
Chris@7 160 vamp:value_names ();
Chris@7 161 .
Chris@7 162 plugbase:qm-constantq_param_maxpitch a vamp:QuantizedParameter ;
Chris@7 163 vamp:identifier "maxpitch" ;
Chris@7 164 dc:title "Maximum Pitch" ;
Chris@7 165 dc:format "MIDI units" ;
Chris@7 166 vamp:min_value 0 ;
Chris@7 167 vamp:max_value 127 ;
Chris@7 168 vamp:unit "MIDI units" ;
Chris@7 169 vamp:quantize_step 1 ;
Chris@7 170 vamp:default_value 84 ;
Chris@7 171 vamp:value_names ();
Chris@7 172 .
Chris@7 173 plugbase:qm-constantq_param_tuning a vamp:Parameter ;
Chris@7 174 vamp:identifier "tuning" ;
Chris@7 175 dc:title "Tuning Frequency" ;
Chris@7 176 dc:format "Hz" ;
Chris@7 177 vamp:min_value 420 ;
Chris@7 178 vamp:max_value 460 ;
Chris@7 179 vamp:unit "Hz" ;
Chris@7 180 vamp:default_value 440 ;
Chris@7 181 vamp:value_names ();
Chris@7 182 .
Chris@7 183 plugbase:qm-constantq_param_bpo a vamp:QuantizedParameter ;
Chris@7 184 vamp:identifier "bpo" ;
Chris@7 185 dc:title "Bins per Octave" ;
Chris@7 186 dc:format "bins" ;
Chris@7 187 vamp:min_value 2 ;
Chris@7 188 vamp:max_value 48 ;
Chris@7 189 vamp:unit "bins" ;
Chris@7 190 vamp:quantize_step 1 ;
Chris@7 191 vamp:default_value 12 ;
Chris@7 192 vamp:value_names ();
Chris@7 193 .
Chris@7 194 plugbase:qm-constantq_param_normalized a vamp:QuantizedParameter ;
Chris@7 195 vamp:identifier "normalized" ;
Chris@7 196 dc:title "Normalized" ;
Chris@7 197 dc:format "" ;
Chris@7 198 vamp:min_value 0 ;
Chris@7 199 vamp:max_value 1 ;
Chris@7 200 vamp:unit "" ;
Chris@7 201 vamp:quantize_step 1 ;
Chris@7 202 vamp:default_value 0 ;
Chris@7 203 vamp:value_names ();
Chris@7 204 .
Chris@7 205 plugbase:qm-constantq_output_constantq a vamp:DenseOutput ;
Chris@7 206 vamp:identifier "constantq" ;
Chris@7 207 dc:title "Constant-Q Spectrogram" ;
Chris@7 208 dc:description "Output of constant-Q transform, as a single vector per process block" ;
Chris@7 209 vamp:fixed_bin_count "true" ;
Chris@7 210 vamp:unit "" ;
Chris@7 211 vamp:bin_count 1 ;
Chris@7 212 vamp:bin_names ( "C");
Chris@7 213 # vamp:computes_event_type <Place event type URI here and uncomment> ;
Chris@7 214 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
Chris@7 215 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
Chris@7 216 .
Chris@7 217 plugbase:qm-keydetector a vamp:Plugin ;
Chris@7 218 dc:title "Key Detector" ;
Chris@7 219 vamp:name "Key Detector" ;
Chris@7 220 dc:description """Estimate the key of the music""" ;
Chris@7 221 foaf:page <http://vamp-plugins.org/plugin-doc/qm-vamp-plugins.html#qm-keydetector> ;
Chris@7 222 foaf:maker [ foaf:name "Queen Mary, University of London" ] ; # FIXME could give plugin author's URI here
Chris@7 223 dc:rights """Plugin by Katy Noland and Christian Landone. Copyright (c) 2006-2008 QMUL - All Rights Reserved""" ;
Chris@7 224 vamp:identifier "qm-keydetector" ;
Chris@7 225 vamp:vamp_API_version vamp:api_version_2 ;
Chris@7 226 owl:versionInfo "3" ;
Chris@7 227 vamp:input_domain vamp:TimeDomain ;
Chris@7 228
Chris@7 229 vamp:parameter plugbase:qm-keydetector_param_tuning ;
Chris@7 230 vamp:parameter plugbase:qm-keydetector_param_length ;
Chris@7 231
Chris@7 232 vamp:output plugbase:qm-keydetector_output_tonic ;
Chris@7 233 vamp:output plugbase:qm-keydetector_output_mode ;
Chris@7 234 vamp:output plugbase:qm-keydetector_output_key ;
Chris@7 235 vamp:output plugbase:qm-keydetector_output_keystrength ;
Chris@7 236 .
Chris@7 237 plugbase:qm-keydetector_param_tuning a vamp:Parameter ;
Chris@7 238 vamp:identifier "tuning" ;
Chris@7 239 dc:title "Tuning Frequency" ;
Chris@7 240 dc:format "Hz" ;
Chris@7 241 vamp:min_value 420 ;
Chris@7 242 vamp:max_value 460 ;
Chris@7 243 vamp:unit "Hz" ;
Chris@7 244 vamp:default_value 440 ;
Chris@7 245 vamp:value_names ();
Chris@7 246 .
Chris@7 247 plugbase:qm-keydetector_param_length a vamp:QuantizedParameter ;
Chris@7 248 vamp:identifier "length" ;
Chris@7 249 dc:title "Window Length" ;
Chris@7 250 dc:format "chroma frames" ;
Chris@7 251 vamp:min_value 1 ;
Chris@7 252 vamp:max_value 30 ;
Chris@7 253 vamp:unit "chroma frames" ;
Chris@7 254 vamp:quantize_step 1 ;
Chris@7 255 vamp:default_value 10 ;
Chris@7 256 vamp:value_names ();
Chris@7 257 .
Chris@7 258 plugbase:qm-keydetector_output_tonic a vamp:SparseOutput ;
Chris@7 259 vamp:identifier "tonic" ;
Chris@7 260 dc:title "Tonic Pitch" ;
Chris@7 261 dc:description "Tonic of the estimated key (from C = 1 to B = 12)" ;
Chris@7 262 vamp:fixed_bin_count "true" ;
Chris@7 263 vamp:unit "" ;
Chris@7 264 a vamp:QuantizedOutput ;
Chris@7 265 vamp:quantize_step 1 ;
Chris@7 266 a vamp:KnownExtentsOutput ;
Chris@7 267 vamp:min_value 1 ;
Chris@7 268 vamp:max_value 12 ;
Chris@7 269 vamp:bin_count 1 ;
Chris@7 270 vamp:bin_names ( "");
Chris@7 271 vamp:sample_type vamp:VariableSampleRate ;
Chris@7 272 vamp:sample_rate 1.34583 ;
Chris@7 273 # vamp:computes_event_type <Place event type URI here and uncomment> ;
Chris@7 274 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
Chris@7 275 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
Chris@7 276 .
Chris@7 277 plugbase:qm-keydetector_output_mode a vamp:SparseOutput ;
Chris@7 278 vamp:identifier "mode" ;
Chris@7 279 dc:title "Key Mode" ;
Chris@7 280 dc:description "Major or minor mode of the estimated key (major = 0, minor = 1)" ;
Chris@7 281 vamp:fixed_bin_count "true" ;
Chris@7 282 vamp:unit "" ;
Chris@7 283 a vamp:QuantizedOutput ;
Chris@7 284 vamp:quantize_step 1 ;
Chris@7 285 a vamp:KnownExtentsOutput ;
Chris@7 286 vamp:min_value 0 ;
Chris@7 287 vamp:max_value 1 ;
Chris@7 288 vamp:bin_count 1 ;
Chris@7 289 vamp:bin_names ( "");
Chris@7 290 vamp:sample_type vamp:VariableSampleRate ;
Chris@7 291 vamp:sample_rate 1.34583 ;
Chris@7 292 # vamp:computes_event_type <Place event type URI here and uncomment> ;
Chris@7 293 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
Chris@7 294 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
Chris@7 295 .
Chris@7 296 plugbase:qm-keydetector_output_key a vamp:SparseOutput ;
Chris@7 297 vamp:identifier "key" ;
Chris@7 298 dc:title "Key" ;
Chris@7 299 dc:description "Estimated key (from C major = 1 to B major = 12 and C minor = 13 to B minor = 24)" ;
Chris@7 300 vamp:fixed_bin_count "true" ;
Chris@7 301 vamp:unit "" ;
Chris@7 302 a vamp:QuantizedOutput ;
Chris@7 303 vamp:quantize_step 1 ;
Chris@7 304 a vamp:KnownExtentsOutput ;
Chris@7 305 vamp:min_value 1 ;
Chris@7 306 vamp:max_value 24 ;
Chris@7 307 vamp:bin_count 1 ;
Chris@7 308 vamp:bin_names ( "");
Chris@7 309 vamp:sample_type vamp:VariableSampleRate ;
Chris@7 310 vamp:sample_rate 1.34583 ;
Chris@7 311 # vamp:computes_event_type <Place event type URI here and uncomment> ;
Chris@7 312 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
Chris@7 313 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
Chris@7 314 .
Chris@7 315 plugbase:qm-keydetector_output_keystrength a vamp:DenseOutput ;
Chris@7 316 vamp:identifier "keystrength" ;
Chris@7 317 dc:title "Key Strength Plot" ;
Chris@7 318 dc:description "Correlation of the chroma vector with stored key profile for each major and minor key" ;
Chris@7 319 vamp:fixed_bin_count "true" ;
Chris@7 320 vamp:unit "" ;
Chris@7 321 vamp:bin_count 25 ;
Chris@7 322 vamp:bin_names ( "F# / Gb major" "B major" "E major" "A major" "D major" "G major" "C major" "F major" "Bb major" "Eb major" "Ab major" "Db major" " " "Eb / D# minor" "G# minor" "C# minor" "F# minor" "B minor" "E minor" "A minor" "D minor" "G minor" "C minor" "F minor" "Bb minor");
Chris@7 323 # vamp:computes_event_type <Place event type URI here and uncomment> ;
Chris@7 324 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
Chris@7 325 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
Chris@7 326 .
Chris@7 327 plugbase:qm-mfcc a vamp:Plugin ;
Chris@7 328 dc:title "Mel-Frequency Cepstral Coefficients" ;
Chris@7 329 vamp:name "Mel-Frequency Cepstral Coefficients" ;
Chris@7 330 dc:description """Calculate a series of MFCC vectors from the audio""" ;
Chris@7 331 foaf:page <http://vamp-plugins.org/plugin-doc/qm-vamp-plugins.html#qm-mfcc> ;
Chris@7 332 foaf:maker [ foaf:name "Queen Mary, University of London" ] ; # FIXME could give plugin author's URI here
Chris@7 333 dc:rights """Plugin by Nicolas Chetry and Chris Cannam. Copyright (c) 2008 QMUL - All Rights Reserved""" ;
Chris@7 334 vamp:identifier "qm-mfcc" ;
Chris@7 335 vamp:vamp_API_version vamp:api_version_2 ;
Chris@7 336 owl:versionInfo "1" ;
Chris@7 337 vamp:input_domain vamp:FrequencyDomain ;
Chris@7 338
Chris@7 339
Chris@7 340 vamp:parameter plugbase:qm-mfcc_param_nceps ;
Chris@7 341 vamp:parameter plugbase:qm-mfcc_param_logpower ;
Chris@7 342 vamp:parameter plugbase:qm-mfcc_param_wantc0 ;
Chris@7 343
Chris@7 344 vamp:output plugbase:qm-mfcc_output_coefficients ;
Chris@7 345 vamp:output plugbase:qm-mfcc_output_means ;
Chris@7 346 .
Chris@7 347 plugbase:qm-mfcc_param_nceps a vamp:QuantizedParameter ;
Chris@7 348 vamp:identifier "nceps" ;
Chris@7 349 dc:title "Number of Coefficients" ;
Chris@7 350 dc:format "" ;
Chris@7 351 vamp:min_value 1 ;
Chris@7 352 vamp:max_value 40 ;
Chris@7 353 vamp:unit "" ;
Chris@7 354 vamp:quantize_step 1 ;
Chris@7 355 vamp:default_value 20 ;
Chris@7 356 vamp:value_names ();
Chris@7 357 .
Chris@7 358 plugbase:qm-mfcc_param_logpower a vamp:Parameter ;
Chris@7 359 vamp:identifier "logpower" ;
Chris@7 360 dc:title "Power for Mel Amplitude Logs" ;
Chris@7 361 dc:format "" ;
Chris@7 362 vamp:min_value 0 ;
Chris@7 363 vamp:max_value 5 ;
Chris@7 364 vamp:unit "" ;
Chris@7 365 vamp:default_value 1 ;
Chris@7 366 vamp:value_names ();
Chris@7 367 .
Chris@7 368 plugbase:qm-mfcc_param_wantc0 a vamp:QuantizedParameter ;
Chris@7 369 vamp:identifier "wantc0" ;
Chris@7 370 dc:title "Include C0" ;
Chris@7 371 dc:format "" ;
Chris@7 372 vamp:min_value 0 ;
Chris@7 373 vamp:max_value 1 ;
Chris@7 374 vamp:unit "" ;
Chris@7 375 vamp:quantize_step 1 ;
Chris@7 376 vamp:default_value 1 ;
Chris@7 377 vamp:value_names ();
Chris@7 378 .
Chris@7 379 plugbase:qm-mfcc_output_coefficients a vamp:DenseOutput ;
Chris@7 380 vamp:identifier "coefficients" ;
Chris@7 381 dc:title "Coefficients" ;
Chris@7 382 dc:description "MFCC values" ;
Chris@7 383 vamp:fixed_bin_count "true" ;
Chris@7 384 vamp:unit "" ;
Chris@7 385 vamp:bin_count 20 ;
Chris@7 386 vamp:bin_names ( "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "");
Chris@7 387 # vamp:computes_event_type <Place event type URI here and uncomment> ;
Chris@7 388 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
Chris@7 389 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
Chris@7 390 .
Chris@7 391 plugbase:qm-mfcc_output_means a vamp:DenseOutput ;
Chris@7 392 vamp:identifier "means" ;
Chris@7 393 dc:title "Means of Coefficients" ;
Chris@7 394 dc:description "Mean values of MFCCs across duration of audio input" ;
Chris@7 395 vamp:fixed_bin_count "true" ;
Chris@7 396 vamp:unit "" ;
Chris@7 397 vamp:bin_count 20 ;
Chris@7 398 vamp:bin_names ( "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "");
Chris@7 399 # vamp:computes_event_type <Place event type URI here and uncomment> ;
Chris@7 400 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
Chris@7 401 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
Chris@7 402 .
Chris@7 403 plugbase:qm-onsetdetector a vamp:Plugin ;
Chris@7 404 dc:title "Note Onset Detector" ;
Chris@7 405 vamp:name "Note Onset Detector" ;
Chris@7 406 dc:description """Estimate individual note onset positions""" ;
Chris@7 407 foaf:page <http://vamp-plugins.org/plugin-doc/qm-vamp-plugins.html#qm-onsetdetector> ;
Chris@7 408 foaf:maker [ foaf:name "Queen Mary, University of London" ] ; # FIXME could give plugin author's URI here
Chris@7 409 dc:rights """Plugin by Christian Landone, Chris Duxbury and Juan Pablo Bello. Copyright (c) 2006-2008 QMUL - All Rights Reserved""" ;
Chris@7 410 vamp:identifier "qm-onsetdetector" ;
Chris@7 411 vamp:vamp_API_version vamp:api_version_2 ;
Chris@7 412 owl:versionInfo "2" ;
Chris@7 413 vamp:input_domain vamp:FrequencyDomain ;
Chris@7 414
Chris@7 415
Chris@7 416 vamp:parameter plugbase:qm-onsetdetector_param_dftype ;
Chris@7 417 vamp:parameter plugbase:qm-onsetdetector_param_sensitivity ;
Chris@7 418 vamp:parameter plugbase:qm-onsetdetector_param_whiten ;
Chris@7 419
Chris@7 420 vamp:output plugbase:qm-onsetdetector_output_onsets ;
Chris@7 421 vamp:output plugbase:qm-onsetdetector_output_detection_fn ;
Chris@7 422 vamp:output plugbase:qm-onsetdetector_output_smoothed_df ;
Chris@7 423 .
Chris@7 424 plugbase:qm-onsetdetector_param_dftype a vamp:QuantizedParameter ;
Chris@7 425 vamp:identifier "dftype" ;
Chris@7 426 dc:title "Onset Detection Function Type" ;
Chris@7 427 dc:format "" ;
Chris@7 428 vamp:min_value 0 ;
Chris@7 429 vamp:max_value 4 ;
Chris@7 430 vamp:unit "" ;
Chris@7 431 vamp:quantize_step 1 ;
Chris@7 432 vamp:default_value 3 ;
Chris@7 433 vamp:value_names ( "High-Frequency Content" "Spectral Difference" "Phase Deviation" "Complex Domain" "Broadband Energy Rise");
Chris@7 434 .
Chris@7 435 plugbase:qm-onsetdetector_param_sensitivity a vamp:QuantizedParameter ;
Chris@7 436 vamp:identifier "sensitivity" ;
Chris@7 437 dc:title "Onset Detector Sensitivity" ;
Chris@7 438 dc:format "%" ;
Chris@7 439 vamp:min_value 0 ;
Chris@7 440 vamp:max_value 100 ;
Chris@7 441 vamp:unit "%" ;
Chris@7 442 vamp:quantize_step 1 ;
Chris@7 443 vamp:default_value 50 ;
Chris@7 444 vamp:value_names ();
Chris@7 445 .
Chris@7 446 plugbase:qm-onsetdetector_param_whiten a vamp:QuantizedParameter ;
Chris@7 447 vamp:identifier "whiten" ;
Chris@7 448 dc:title "Adaptive Whitening" ;
Chris@7 449 dc:format "" ;
Chris@7 450 vamp:min_value 0 ;
Chris@7 451 vamp:max_value 1 ;
Chris@7 452 vamp:unit "" ;
Chris@7 453 vamp:quantize_step 1 ;
Chris@7 454 vamp:default_value 0 ;
Chris@7 455 vamp:value_names ();
Chris@7 456 .
Chris@7 457 plugbase:qm-onsetdetector_output_onsets a vamp:SparseOutput ;
Chris@7 458 vamp:identifier "onsets" ;
Chris@7 459 dc:title "Note Onsets" ;
Chris@7 460 dc:description "Perceived note onset positions" ;
Chris@7 461 vamp:fixed_bin_count "true" ;
Chris@7 462 vamp:unit "" ;
Chris@7 463 vamp:bin_count 0 ;
Chris@7 464 vamp:bin_names ();
Chris@7 465 vamp:sample_type vamp:VariableSampleRate ;
Chris@7 466 vamp:sample_rate 86.1326 ;
Chris@7 467 # vamp:computes_event_type <Place event type URI here and uncomment> ;
Chris@7 468 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
Chris@7 469 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
Chris@7 470 .
Chris@7 471 plugbase:qm-onsetdetector_output_detection_fn a vamp:DenseOutput ;
Chris@7 472 vamp:identifier "detection_fn" ;
Chris@7 473 dc:title "Onset Detection Function" ;
Chris@7 474 dc:description "Probability function of note onset likelihood" ;
Chris@7 475 vamp:fixed_bin_count "true" ;
Chris@7 476 vamp:unit "" ;
Chris@7 477 vamp:bin_count 1 ;
Chris@7 478 vamp:bin_names ( "");
Chris@7 479 # vamp:computes_event_type <Place event type URI here and uncomment> ;
Chris@7 480 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
Chris@7 481 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
Chris@7 482 .
Chris@7 483 plugbase:qm-onsetdetector_output_smoothed_df a vamp:SparseOutput ;
Chris@7 484 vamp:identifier "smoothed_df" ;
Chris@7 485 dc:title "Smoothed Detection Function" ;
Chris@7 486 dc:description "Smoothed probability function used for peak-picking" ;
Chris@7 487 vamp:fixed_bin_count "true" ;
Chris@7 488 vamp:unit "" ;
Chris@7 489 vamp:bin_count 1 ;
Chris@7 490 vamp:bin_names ( "");
Chris@7 491 vamp:sample_type vamp:VariableSampleRate ;
Chris@7 492 vamp:sample_rate 86.1326 ;
Chris@7 493 # vamp:computes_event_type <Place event type URI here and uncomment> ;
Chris@7 494 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
Chris@7 495 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
Chris@7 496 .
Chris@7 497 plugbase:qm-segmenter a vamp:Plugin ;
Chris@7 498 dc:title "Segmenter" ;
Chris@7 499 vamp:name "Segmenter" ;
Chris@7 500 dc:description """Divide the track into a sequence of consistent segments""" ;
Chris@7 501 foaf:page <http://vamp-plugins.org/plugin-doc/qm-vamp-plugins.html#qm-segmenter> ;
Chris@7 502 foaf:maker [ foaf:name "Queen Mary, University of London" ] ; # FIXME could give plugin author's URI here
Chris@7 503 dc:rights """Plugin by Mark Levy. Copyright (c) 2006-2008 QMUL - All Rights Reserved""" ;
Chris@7 504 vamp:identifier "qm-segmenter" ;
Chris@7 505 vamp:vamp_API_version vamp:api_version_2 ;
Chris@7 506 owl:versionInfo "2" ;
Chris@7 507 vamp:input_domain vamp:TimeDomain ;
Chris@7 508
Chris@7 509 vamp:parameter plugbase:qm-segmenter_param_nSegmentTypes ;
Chris@7 510 vamp:parameter plugbase:qm-segmenter_param_featureType ;
Chris@7 511 vamp:parameter plugbase:qm-segmenter_param_neighbourhoodLimit ;
Chris@7 512
Chris@7 513 vamp:output plugbase:qm-segmenter_output_segmentation ;
Chris@7 514 .
Chris@7 515 plugbase:qm-segmenter_param_nSegmentTypes a vamp:QuantizedParameter ;
Chris@7 516 vamp:identifier "nSegmentTypes" ;
Chris@7 517 dc:title "Number of segment-types" ;
Chris@7 518 dc:format "" ;
Chris@7 519 vamp:min_value 2 ;
Chris@7 520 vamp:max_value 12 ;
Chris@7 521 vamp:unit "" ;
Chris@7 522 vamp:quantize_step 1 ;
Chris@7 523 vamp:default_value 10 ;
Chris@7 524 vamp:value_names ();
Chris@7 525 .
Chris@7 526 plugbase:qm-segmenter_param_featureType a vamp:QuantizedParameter ;
Chris@7 527 vamp:identifier "featureType" ;
Chris@7 528 dc:title "Feature Type" ;
Chris@7 529 dc:format "" ;
Chris@7 530 vamp:min_value 1 ;
Chris@7 531 vamp:max_value 3 ;
Chris@7 532 vamp:unit "" ;
Chris@7 533 vamp:quantize_step 1 ;
Chris@7 534 vamp:default_value 1 ;
Chris@7 535 vamp:value_names ( "Hybrid (Constant-Q)" "Chromatic (Chroma)" "Timbral (MFCC)");
Chris@7 536 .
Chris@7 537 plugbase:qm-segmenter_param_neighbourhoodLimit a vamp:QuantizedParameter ;
Chris@7 538 vamp:identifier "neighbourhoodLimit" ;
Chris@7 539 dc:title "Minimum segment duration" ;
Chris@7 540 dc:format "s" ;
Chris@7 541 vamp:min_value 1 ;
Chris@7 542 vamp:max_value 15 ;
Chris@7 543 vamp:unit "s" ;
Chris@7 544 vamp:quantize_step 0.2 ;
Chris@7 545 vamp:default_value 4 ;
Chris@7 546 vamp:value_names ();
Chris@7 547 .
Chris@7 548 plugbase:qm-segmenter_output_segmentation a vamp:SparseOutput ;
Chris@7 549 vamp:identifier "segmentation" ;
Chris@7 550 dc:title "Segmentation" ;
Chris@7 551 dc:description "Segmentation" ;
Chris@7 552 vamp:fixed_bin_count "true" ;
Chris@7 553 vamp:unit "segment-type" ;
Chris@7 554 a vamp:QuantizedOutput ;
Chris@7 555 vamp:quantize_step 1 ;
Chris@7 556 a vamp:KnownExtentsOutput ;
Chris@7 557 vamp:min_value 1 ;
Chris@7 558 vamp:max_value 10 ;
Chris@7 559 vamp:bin_count 1 ;
Chris@7 560 vamp:bin_names ( "");
Chris@7 561 vamp:sample_type vamp:VariableSampleRate ;
Chris@7 562 vamp:sample_rate 5 ;
Chris@7 563 # vamp:computes_event_type <Place event type URI here and uncomment> ;
Chris@7 564 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
Chris@7 565 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
Chris@7 566 .
Chris@7 567 plugbase:qm-similarity a vamp:Plugin ;
Chris@7 568 dc:title "Similarity" ;
Chris@7 569 vamp:name "Similarity" ;
Chris@7 570 dc:description """Return a distance matrix for similarity between the input audio channels""" ;
Chris@7 571 foaf:page <http://vamp-plugins.org/plugin-doc/qm-vamp-plugins.html#qm-similarity> ;
Chris@7 572 foaf:maker [ foaf:name "Queen Mary, University of London" ] ; # FIXME could give plugin author's URI here
Chris@7 573 dc:rights """Plugin by Mark Levy, Kurt Jacobson and Chris Cannam. Copyright (c) 2008 QMUL - All Rights Reserved""" ;
Chris@7 574 vamp:identifier "qm-similarity" ;
Chris@7 575 vamp:vamp_API_version vamp:api_version_2 ;
Chris@7 576 owl:versionInfo "1" ;
Chris@7 577 vamp:input_domain vamp:TimeDomain ;
Chris@7 578
Chris@7 579 vamp:parameter plugbase:qm-similarity_param_featureType ;
Chris@7 580
Chris@7 581 vamp:output plugbase:qm-similarity_output_distancematrix ;
Chris@7 582 vamp:output plugbase:qm-similarity_output_distancevector ;
Chris@7 583 vamp:output plugbase:qm-similarity_output_sorteddistancevector ;
Chris@7 584 vamp:output plugbase:qm-similarity_output_means ;
Chris@7 585 vamp:output plugbase:qm-similarity_output_variances ;
Chris@7 586 vamp:output plugbase:qm-similarity_output_beatspectrum ;
Chris@7 587 .
Chris@7 588 plugbase:qm-similarity_param_featureType a vamp:QuantizedParameter ;
Chris@7 589 vamp:identifier "featureType" ;
Chris@7 590 dc:title "Feature Type" ;
Chris@7 591 dc:format "" ;
Chris@7 592 vamp:min_value 0 ;
Chris@7 593 vamp:max_value 4 ;
Chris@7 594 vamp:unit "" ;
Chris@7 595 vamp:quantize_step 1 ;
Chris@7 596 vamp:default_value 1 ;
Chris@7 597 vamp:value_names ( "Timbre" "Timbre and Rhythm" "Chroma" "Chroma and Rhythm" "Rhythm only");
Chris@7 598 .
Chris@7 599 plugbase:qm-similarity_output_distancematrix a vamp:DenseOutput ;
Chris@7 600 vamp:identifier "distancematrix" ;
Chris@7 601 dc:title "Distance Matrix" ;
Chris@7 602 dc:description "Distance matrix for similarity metric. Smaller = more similar. Should be symmetrical." ;
Chris@7 603 vamp:fixed_bin_count "true" ;
Chris@7 604 vamp:unit "" ;
Chris@7 605 vamp:bin_count 0 ;
Chris@7 606 vamp:bin_names ();
Chris@7 607 # vamp:computes_event_type <Place event type URI here and uncomment> ;
Chris@7 608 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
Chris@7 609 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
Chris@7 610 .
Chris@7 611 plugbase:qm-similarity_output_distancevector a vamp:DenseOutput ;
Chris@7 612 vamp:identifier "distancevector" ;
Chris@7 613 dc:title "Distance from First Channel" ;
Chris@7 614 dc:description "Distance vector for similarity of each channel to the first channel. Smaller = more similar." ;
Chris@7 615 vamp:fixed_bin_count "true" ;
Chris@7 616 vamp:unit "" ;
Chris@7 617 vamp:bin_count 0 ;
Chris@7 618 vamp:bin_names ();
Chris@7 619 # vamp:computes_event_type <Place event type URI here and uncomment> ;
Chris@7 620 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
Chris@7 621 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
Chris@7 622 .
Chris@7 623 plugbase:qm-similarity_output_sorteddistancevector a vamp:DenseOutput ;
Chris@7 624 vamp:identifier "sorteddistancevector" ;
Chris@7 625 dc:title "Ordered Distances from First Channel" ;
Chris@7 626 dc:description "Vector of the order of other channels in similarity to the first, followed by distance vector for similarity of each to the first. Smaller = more similar." ;
Chris@7 627 vamp:fixed_bin_count "true" ;
Chris@7 628 vamp:unit "" ;
Chris@7 629 vamp:bin_count 0 ;
Chris@7 630 vamp:bin_names ();
Chris@7 631 # vamp:computes_event_type <Place event type URI here and uncomment> ;
Chris@7 632 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
Chris@7 633 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
Chris@7 634 .
Chris@7 635 plugbase:qm-similarity_output_means a vamp:DenseOutput ;
Chris@7 636 vamp:identifier "means" ;
Chris@7 637 dc:title "Feature Means" ;
Chris@7 638 dc:description "Means of the feature bins. Feature time (sec) corresponds to input channel. Number of bins depends on selected feature type." ;
Chris@7 639 vamp:fixed_bin_count "true" ;
Chris@7 640 vamp:unit "" ;
Chris@7 641 vamp:bin_count 20 ;
Chris@7 642 vamp:bin_names ( "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "");
Chris@7 643 # vamp:computes_event_type <Place event type URI here and uncomment> ;
Chris@7 644 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
Chris@7 645 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
Chris@7 646 .
Chris@7 647 plugbase:qm-similarity_output_variances a vamp:DenseOutput ;
Chris@7 648 vamp:identifier "variances" ;
Chris@7 649 dc:title "Feature Variances" ;
Chris@7 650 dc:description "Variances of the feature bins. Feature time (sec) corresponds to input channel. Number of bins depends on selected feature type." ;
Chris@7 651 vamp:fixed_bin_count "true" ;
Chris@7 652 vamp:unit "" ;
Chris@7 653 vamp:bin_count 20 ;
Chris@7 654 vamp:bin_names ( "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "");
Chris@7 655 # vamp:computes_event_type <Place event type URI here and uncomment> ;
Chris@7 656 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
Chris@7 657 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
Chris@7 658 .
Chris@7 659 plugbase:qm-similarity_output_beatspectrum a vamp:SparseOutput ;
Chris@7 660 vamp:identifier "beatspectrum" ;
Chris@7 661 dc:title "Beat Spectra" ;
Chris@7 662 dc:description "Rhythmic self-similarity vectors (beat spectra) for the input channels. Feature time (sec) corresponds to input channel. Not returned if rhythm weighting is zero." ;
Chris@7 663 vamp:fixed_bin_count "false" ;
Chris@7 664 vamp:unit "" ;
Chris@7 665 vamp:sample_type vamp:VariableSampleRate ;
Chris@7 666 vamp:sample_rate 1 ;
Chris@7 667 # vamp:computes_event_type <Place event type URI here and uncomment> ;
Chris@7 668 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
Chris@7 669 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
Chris@7 670 .
Chris@7 671 plugbase:qm-tempotracker a vamp:Plugin ;
Chris@7 672 dc:title "Tempo and Beat Tracker" ;
Chris@7 673 vamp:name "Tempo and Beat Tracker" ;
Chris@7 674 dc:description """Estimate beat locations and tempo""" ;
Chris@7 675 foaf:page <http://vamp-plugins.org/plugin-doc/qm-vamp-plugins.html#qm-tempotracker> ;
Chris@7 676 foaf:maker [ foaf:name "Queen Mary, University of London" ] ; # FIXME could give plugin author's URI here
Chris@7 677 dc:rights """Plugin by Christian Landone and Matthew Davies. Copyright (c) 2006-2008 QMUL - All Rights Reserved""" ;
Chris@7 678 vamp:identifier "qm-tempotracker" ;
Chris@7 679 vamp:vamp_API_version vamp:api_version_2 ;
Chris@7 680 owl:versionInfo "3" ;
Chris@7 681 vamp:input_domain vamp:FrequencyDomain ;
Chris@7 682
Chris@7 683
Chris@7 684 vamp:parameter plugbase:qm-tempotracker_param_dftype ;
Chris@7 685 vamp:parameter plugbase:qm-tempotracker_param_whiten ;
Chris@7 686
Chris@7 687 vamp:output plugbase:qm-tempotracker_output_beats ;
Chris@7 688 vamp:output plugbase:qm-tempotracker_output_detection_fn ;
Chris@7 689 vamp:output plugbase:qm-tempotracker_output_tempo ;
Chris@7 690 .
Chris@7 691 plugbase:qm-tempotracker_param_dftype a vamp:QuantizedParameter ;
Chris@7 692 vamp:identifier "dftype" ;
Chris@7 693 dc:title "Onset Detection Function Type" ;
Chris@7 694 dc:format "" ;
Chris@7 695 vamp:min_value 0 ;
Chris@7 696 vamp:max_value 4 ;
Chris@7 697 vamp:unit "" ;
Chris@7 698 vamp:quantize_step 1 ;
Chris@7 699 vamp:default_value 3 ;
Chris@7 700 vamp:value_names ( "High-Frequency Content" "Spectral Difference" "Phase Deviation" "Complex Domain" "Broadband Energy Rise");
Chris@7 701 .
Chris@7 702 plugbase:qm-tempotracker_param_whiten a vamp:QuantizedParameter ;
Chris@7 703 vamp:identifier "whiten" ;
Chris@7 704 dc:title "Adaptive Whitening" ;
Chris@7 705 dc:format "" ;
Chris@7 706 vamp:min_value 0 ;
Chris@7 707 vamp:max_value 1 ;
Chris@7 708 vamp:unit "" ;
Chris@7 709 vamp:quantize_step 1 ;
Chris@7 710 vamp:default_value 0 ;
Chris@7 711 vamp:value_names ();
Chris@7 712 .
Chris@7 713 plugbase:qm-tempotracker_output_beats a vamp:SparseOutput ;
Chris@7 714 vamp:identifier "beats" ;
Chris@7 715 dc:title "Beats" ;
Chris@7 716 dc:description "Estimated metrical beat locations" ;
Chris@7 717 vamp:fixed_bin_count "true" ;
Chris@7 718 vamp:unit "" ;
Chris@7 719 vamp:bin_count 0 ;
Chris@7 720 vamp:bin_names ();
Chris@7 721 vamp:sample_type vamp:VariableSampleRate ;
Chris@7 722 vamp:sample_rate 86.1326 ;
Chris@7 723 # vamp:computes_event_type <Place event type URI here and uncomment> ;
Chris@7 724 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
Chris@7 725 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
Chris@7 726 .
Chris@7 727 plugbase:qm-tempotracker_output_detection_fn a vamp:DenseOutput ;
Chris@7 728 vamp:identifier "detection_fn" ;
Chris@7 729 dc:title "Onset Detection Function" ;
Chris@7 730 dc:description "Probability function of note onset likelihood" ;
Chris@7 731 vamp:fixed_bin_count "true" ;
Chris@7 732 vamp:unit "" ;
Chris@7 733 vamp:bin_count 1 ;
Chris@7 734 vamp:bin_names ( "");
Chris@7 735 # vamp:computes_event_type <Place event type URI here and uncomment> ;
Chris@7 736 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
Chris@7 737 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
Chris@7 738 .
Chris@7 739 plugbase:qm-tempotracker_output_tempo a vamp:SparseOutput ;
Chris@7 740 vamp:identifier "tempo" ;
Chris@7 741 dc:title "Tempo" ;
Chris@7 742 dc:description "Locked tempo estimates" ;
Chris@7 743 vamp:fixed_bin_count "true" ;
Chris@7 744 vamp:unit "bpm" ;
Chris@7 745 vamp:bin_count 1 ;
Chris@7 746 vamp:bin_names ( "");
Chris@7 747 vamp:sample_type vamp:VariableSampleRate ;
Chris@7 748 vamp:sample_rate 86.1326 ;
Chris@7 749 # vamp:computes_event_type <Place event type URI here and uncomment> ;
Chris@7 750 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
Chris@7 751 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
Chris@7 752 .
Chris@7 753 plugbase:qm-tonalchange a vamp:Plugin ;
Chris@7 754 dc:title "Tonal Change" ;
Chris@7 755 vamp:name "Tonal Change" ;
Chris@7 756 dc:description """Detect and return the positions of harmonic changes such as chord boundaries""" ;
Chris@7 757 foaf:page <http://vamp-plugins.org/plugin-doc/qm-vamp-plugins.html#qm-tonalchange> ;
Chris@7 758 foaf:maker [ foaf:name "Queen Mary, University of London" ] ; # FIXME could give plugin author's URI here
Chris@7 759 dc:rights """Plugin by Martin Gasser and Christopher Harte. Copyright (c) 2006-2008 QMUL - All Rights Reserved""" ;
Chris@7 760 vamp:identifier "qm-tonalchange" ;
Chris@7 761 vamp:vamp_API_version vamp:api_version_2 ;
Chris@7 762 owl:versionInfo "1" ;
Chris@7 763 vamp:input_domain vamp:TimeDomain ;
Chris@7 764
Chris@7 765 vamp:parameter plugbase:qm-tonalchange_param_smoothingwidth ;
Chris@7 766 vamp:parameter plugbase:qm-tonalchange_param_minpitch ;
Chris@7 767 vamp:parameter plugbase:qm-tonalchange_param_maxpitch ;
Chris@7 768 vamp:parameter plugbase:qm-tonalchange_param_tuning ;
Chris@7 769
Chris@7 770 vamp:output plugbase:qm-tonalchange_output_tcstransform ;
Chris@7 771 vamp:output plugbase:qm-tonalchange_output_tcfunction ;
Chris@7 772 vamp:output plugbase:qm-tonalchange_output_changepositions ;
Chris@7 773 .
Chris@7 774 plugbase:qm-tonalchange_param_smoothingwidth a vamp:QuantizedParameter ;
Chris@7 775 vamp:identifier "smoothingwidth" ;
Chris@7 776 dc:title "Gaussian smoothing" ;
Chris@7 777 dc:format "frames" ;
Chris@7 778 vamp:min_value 0 ;
Chris@7 779 vamp:max_value 20 ;
Chris@7 780 vamp:unit "frames" ;
Chris@7 781 vamp:quantize_step 1 ;
Chris@7 782 vamp:default_value 5 ;
Chris@7 783 vamp:value_names ();
Chris@7 784 .
Chris@7 785 plugbase:qm-tonalchange_param_minpitch a vamp:QuantizedParameter ;
Chris@7 786 vamp:identifier "minpitch" ;
Chris@7 787 dc:title "Chromagram minimum pitch" ;
Chris@7 788 dc:format "MIDI units" ;
Chris@7 789 vamp:min_value 0 ;
Chris@7 790 vamp:max_value 127 ;
Chris@7 791 vamp:unit "MIDI units" ;
Chris@7 792 vamp:quantize_step 1 ;
Chris@7 793 vamp:default_value 32 ;
Chris@7 794 vamp:value_names ();
Chris@7 795 .
Chris@7 796 plugbase:qm-tonalchange_param_maxpitch a vamp:QuantizedParameter ;
Chris@7 797 vamp:identifier "maxpitch" ;
Chris@7 798 dc:title "Chromagram maximum pitch" ;
Chris@7 799 dc:format "MIDI units" ;
Chris@7 800 vamp:min_value 0 ;
Chris@7 801 vamp:max_value 127 ;
Chris@7 802 vamp:unit "MIDI units" ;
Chris@7 803 vamp:quantize_step 1 ;
Chris@7 804 vamp:default_value 108 ;
Chris@7 805 vamp:value_names ();
Chris@7 806 .
Chris@7 807 plugbase:qm-tonalchange_param_tuning a vamp:Parameter ;
Chris@7 808 vamp:identifier "tuning" ;
Chris@7 809 dc:title "Chromagram tuning frequency" ;
Chris@7 810 dc:format "Hz" ;
Chris@7 811 vamp:min_value 420 ;
Chris@7 812 vamp:max_value 460 ;
Chris@7 813 vamp:unit "Hz" ;
Chris@7 814 vamp:default_value 440 ;
Chris@7 815 vamp:value_names ();
Chris@7 816 .
Chris@7 817 plugbase:qm-tonalchange_output_tcstransform a vamp:DenseOutput ;
Chris@7 818 vamp:identifier "tcstransform" ;
Chris@7 819 dc:title "Transform to 6D Tonal Content Space" ;
Chris@7 820 dc:description "" ;
Chris@7 821 vamp:fixed_bin_count "true" ;
Chris@7 822 vamp:unit "" ;
Chris@7 823 a vamp:KnownExtentsOutput ;
Chris@7 824 vamp:min_value -1 ;
Chris@7 825 vamp:max_value 1 ;
Chris@7 826 vamp:bin_count 6 ;
Chris@7 827 vamp:bin_names ( "" "" "" "" "" "");
Chris@7 828 # vamp:computes_event_type <Place event type URI here and uncomment> ;
Chris@7 829 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
Chris@7 830 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
Chris@7 831 .
Chris@7 832 plugbase:qm-tonalchange_output_tcfunction a vamp:SparseOutput ;
Chris@7 833 vamp:identifier "tcfunction" ;
Chris@7 834 dc:title "Tonal Change Detection Function" ;
Chris@7 835 dc:description "" ;
Chris@7 836 vamp:fixed_bin_count "true" ;
Chris@7 837 vamp:unit "" ;
Chris@7 838 vamp:bin_count 1 ;
Chris@7 839 vamp:bin_names ( "");
Chris@7 840 vamp:sample_type vamp:VariableSampleRate ;
Chris@7 841 vamp:sample_rate 21.5332 ;
Chris@7 842 # vamp:computes_event_type <Place event type URI here and uncomment> ;
Chris@7 843 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
Chris@7 844 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
Chris@7 845 .
Chris@7 846 plugbase:qm-tonalchange_output_changepositions a vamp:SparseOutput ;
Chris@7 847 vamp:identifier "changepositions" ;
Chris@7 848 dc:title "Tonal Change Positions" ;
Chris@7 849 dc:description "" ;
Chris@7 850 vamp:fixed_bin_count "true" ;
Chris@7 851 vamp:unit "" ;
Chris@7 852 vamp:bin_count 0 ;
Chris@7 853 vamp:bin_names ();
Chris@7 854 vamp:sample_type vamp:VariableSampleRate ;
Chris@7 855 vamp:sample_rate 21.5332 ;
Chris@7 856 # vamp:computes_event_type <Place event type URI here and uncomment> ;
Chris@7 857 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
Chris@7 858 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
Chris@7 859 .
Chris@7 860