annotate plugins/qm-vamp-plugins.n3 @ 29:ae64d092bddf rdfquery

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