annotate plugins/qm-vamp-plugins.n3 @ 22:01c72aeb9610

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