annotate qm-vamp-plugins.n3 @ 106:35f2138c6891

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