annotate rdf/qm-vamp-plugins:qm-constantq.n3 @ 89:f4a2f5aa743c

* Add bar-and-beat-tracker plugin
author Chris Cannam <c.cannam@qmul.ac.uk>
date Tue, 10 Feb 2009 16:38:02 +0000
parents c2b7e1d4f1db
children
rev   line source
c@69 1 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
c@69 2 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
c@69 3 @prefix vamp: <http://www.purl.org/ontology/vamp/> .
c@69 4 @prefix vampex: <http://www.purl.org/ontology/vamp/examples/> .
c@69 5 @prefix plugbase: <http://purl.org/ontology/vamp/qm-plugins/> .
c@69 6 @prefix owl: <http://www.w3.org/2002/07/owl#> .
c@69 7 @prefix dc: <http://purl.org/dc/elements/1.1/> .
c@69 8 @prefix af: <http://purl.org/ontology/af/> .
c@69 9 @prefix foaf: <http://xmlns.com/foaf/0.1/> .
c@69 10 @prefix cc: <http://web.resource.org/cc/> .
c@69 11 @prefix thisplug: <http://purl.org/ontology/vamp/qm-plugins/qm-constantq#> .
c@69 12 @prefix : <> .
c@69 13
c@69 14 <> a vamp:PluginDescription ;
c@69 15 foaf:maker <http://www.vamp-plugins.org/> ;
c@69 16 foaf:maker <http://www.vamp-plugins.org/doap.rdf#template-generator> ;
c@69 17 foaf:primaryTopic plugbase:qm-constantq .
c@69 18
c@69 19 plugbase:qm-constantq a vamp:Plugin ;
c@69 20 dc:title "Constant-Q Spectrogram" ;
c@69 21 vamp:name "Constant-Q Spectrogram" ;
c@69 22 dc:description "Extract a spectrogram with constant ratio of centre frequency to resolution from the input audio" ;
c@69 23 foaf:maker [ foaf:name "Queen Mary, University of London"] ; # FIXME could give plugin author's URI here
c@69 24 cc:license <FIXME license for the plugin> ;
c@69 25 vamp:identifier "qm-constantq" ;
c@69 26 vamp:vamp_API_version vamp:api_version_1 ;
c@69 27 owl:versionInfo "2" ;
c@69 28 vamp:input_domain vamp:TimeDomain ;
c@69 29
c@69 30 vamp:parameter_descriptor thisplug:param_minpitch ;
c@69 31 vamp:parameter_descriptor thisplug:param_maxpitch ;
c@69 32 vamp:parameter_descriptor thisplug:param_tuning ;
c@69 33 vamp:parameter_descriptor thisplug:param_bpo ;
c@69 34 vamp:parameter_descriptor thisplug:param_normalized ;
c@69 35
c@69 36 vamp:output_descriptor thisplug:output_constantq ;
c@69 37 .
c@69 38 thisplug:param_minpitch a vamp:ParameterDescriptor ;
c@69 39 vamp:identifier "minpitch" ;
c@69 40 dc:title "Minimum Pitch" ;
c@69 41 dc:format "MIDI units" ;
c@69 42 vamp:min_value 0 ;
c@69 43 vamp:max_value 127 ;
c@69 44 vamp:default_value 36 .
c@69 45
c@69 46 thisplug:param_maxpitch a vamp:ParameterDescriptor ;
c@69 47 vamp:identifier "maxpitch" ;
c@69 48 dc:title "Maximum Pitch" ;
c@69 49 dc:format "MIDI units" ;
c@69 50 vamp:min_value 0 ;
c@69 51 vamp:max_value 127 ;
c@69 52 vamp:default_value 84 .
c@69 53
c@69 54 thisplug:param_tuning a vamp:ParameterDescriptor ;
c@69 55 vamp:identifier "tuning" ;
c@69 56 dc:title "Tuning Frequency" ;
c@69 57 dc:format "Hz" ;
c@69 58 vamp:min_value 420 ;
c@69 59 vamp:max_value 460 ;
c@69 60 vamp:default_value 440 .
c@69 61
c@69 62 thisplug:param_bpo a vamp:ParameterDescriptor ;
c@69 63 vamp:identifier "bpo" ;
c@69 64 dc:title "Bins per Octave" ;
c@69 65 dc:format "bins" ;
c@69 66 vamp:min_value 2 ;
c@69 67 vamp:max_value 48 ;
c@69 68 vamp:default_value 12 .
c@69 69
c@69 70 thisplug:param_normalized a vamp:ParameterDescriptor ;
c@69 71 vamp:identifier "normalized" ;
c@69 72 dc:title "Normalized" ;
c@69 73 dc:format "" ;
c@69 74 vamp:min_value 0 ;
c@69 75 vamp:max_value 1 ;
c@69 76 vamp:default_value 0 .
c@69 77
c@69 78 thisplug:output_constantq a vamp:DenseOutput ;
c@69 79 vamp:identifier "constantq" ;
c@69 80 dc:title "Constant-Q Spectrogram" ;
c@69 81 dc:description "Output of constant-Q transform, as a single vector per process block" ;
c@69 82 vamp:fixed_bin_count "true" ;
c@69 83 vamp:is_quantised "false" ;
c@69 84 vamp:unit "" ;
c@69 85 vamp:bin_count 1 ;
c@69 86 vamp:bin_names ( "C");
c@69 87 vamp:sample_type vamp:OneSamplePerStep ;
c@69 88 vamp:computes_feature_type <FIXME feature type URI> ;
c@69 89 vamp:computes_event_type <FIXME event type URI> ;
c@69 90 .