Mercurial > hg > qm-vamp-plugins
view rdf/qm-vamp-plugins:qm-constantq.n3 @ 80:e7c785094e7b
* update readmes &c
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Tue, 18 Nov 2008 14:51:49 +0000 |
parents | c2b7e1d4f1db |
children |
line wrap: on
line source
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . @prefix vamp: <http://www.purl.org/ontology/vamp/> . @prefix vampex: <http://www.purl.org/ontology/vamp/examples/> . @prefix plugbase: <http://purl.org/ontology/vamp/qm-plugins/> . @prefix owl: <http://www.w3.org/2002/07/owl#> . @prefix dc: <http://purl.org/dc/elements/1.1/> . @prefix af: <http://purl.org/ontology/af/> . @prefix foaf: <http://xmlns.com/foaf/0.1/> . @prefix cc: <http://web.resource.org/cc/> . @prefix thisplug: <http://purl.org/ontology/vamp/qm-plugins/qm-constantq#> . @prefix : <> . <> a vamp:PluginDescription ; foaf:maker <http://www.vamp-plugins.org/> ; foaf:maker <http://www.vamp-plugins.org/doap.rdf#template-generator> ; foaf:primaryTopic plugbase:qm-constantq . plugbase:qm-constantq a vamp:Plugin ; dc:title "Constant-Q Spectrogram" ; vamp:name "Constant-Q Spectrogram" ; dc:description "Extract a spectrogram with constant ratio of centre frequency to resolution from the input audio" ; foaf:maker [ foaf:name "Queen Mary, University of London"] ; # FIXME could give plugin author's URI here cc:license <FIXME license for the plugin> ; vamp:identifier "qm-constantq" ; vamp:vamp_API_version vamp:api_version_1 ; owl:versionInfo "2" ; vamp:input_domain vamp:TimeDomain ; vamp:parameter_descriptor thisplug:param_minpitch ; vamp:parameter_descriptor thisplug:param_maxpitch ; vamp:parameter_descriptor thisplug:param_tuning ; vamp:parameter_descriptor thisplug:param_bpo ; vamp:parameter_descriptor thisplug:param_normalized ; vamp:output_descriptor thisplug:output_constantq ; . thisplug:param_minpitch a vamp:ParameterDescriptor ; vamp:identifier "minpitch" ; dc:title "Minimum Pitch" ; dc:format "MIDI units" ; vamp:min_value 0 ; vamp:max_value 127 ; vamp:default_value 36 . thisplug:param_maxpitch a vamp:ParameterDescriptor ; vamp:identifier "maxpitch" ; dc:title "Maximum Pitch" ; dc:format "MIDI units" ; vamp:min_value 0 ; vamp:max_value 127 ; vamp:default_value 84 . thisplug:param_tuning a vamp:ParameterDescriptor ; vamp:identifier "tuning" ; dc:title "Tuning Frequency" ; dc:format "Hz" ; vamp:min_value 420 ; vamp:max_value 460 ; vamp:default_value 440 . thisplug:param_bpo a vamp:ParameterDescriptor ; vamp:identifier "bpo" ; dc:title "Bins per Octave" ; dc:format "bins" ; vamp:min_value 2 ; vamp:max_value 48 ; vamp:default_value 12 . thisplug:param_normalized a vamp:ParameterDescriptor ; vamp:identifier "normalized" ; dc:title "Normalized" ; dc:format "" ; vamp:min_value 0 ; vamp:max_value 1 ; vamp:default_value 0 . thisplug:output_constantq a vamp:DenseOutput ; vamp:identifier "constantq" ; dc:title "Constant-Q Spectrogram" ; dc:description "Output of constant-Q transform, as a single vector per process block" ; vamp:fixed_bin_count "true" ; vamp:is_quantised "false" ; vamp:unit "" ; vamp:bin_count 1 ; vamp:bin_names ( "C"); vamp:sample_type vamp:OneSamplePerStep ; vamp:computes_feature_type <FIXME feature type URI> ; vamp:computes_event_type <FIXME event type URI> ; .