view rdf/qm-vamp-plugins:qm-mfcc.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-mfcc#> .
@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-mfcc .

plugbase:qm-mfcc a   vamp:Plugin ;
    dc:title              "Mel-Frequency Cepstral Coefficients" ;
    vamp:name             "Mel-Frequency Cepstral Coefficients" ;
    dc:description        "Calculate a series of MFCC vectors from the 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-mfcc" ;
    vamp:vamp_API_version vamp:api_version_1 ;
    owl:versionInfo       "1" ;
    vamp:input_domain     vamp:TimeDomain ;

    vamp:parameter_descriptor   thisplug:param_nceps ;
    vamp:parameter_descriptor   thisplug:param_logpower ;
    vamp:parameter_descriptor   thisplug:param_wantc0 ;

    vamp:output_descriptor      thisplug:output_coefficients ;
    vamp:output_descriptor      thisplug:output_means ;
    .
thisplug:param_nceps a  vamp:ParameterDescriptor ;
    vamp:identifier     "nceps" ;
    dc:title            "Number of Coefficients" ;
    dc:format           "" ;
    vamp:min_value       1 ;
    vamp:max_value       40 ;
    vamp:default_value   20 .

thisplug:param_logpower a  vamp:ParameterDescriptor ;
    vamp:identifier     "logpower" ;
    dc:title            "Power for Mel Amplitude Logs" ;
    dc:format           "" ;
    vamp:min_value       0 ;
    vamp:max_value       5 ;
    vamp:default_value   1 .

thisplug:param_wantc0 a  vamp:ParameterDescriptor ;
    vamp:identifier     "wantc0" ;
    dc:title            "Include C0" ;
    dc:format           "" ;
    vamp:min_value       0 ;
    vamp:max_value       1 ;
    vamp:default_value   1 .

thisplug:output_coefficients a  vamp:DenseOutput ;
    vamp:identifier       "coefficients" ;
    dc:title              "Coefficients" ;
    dc:description        "MFCC values"  ;
    vamp:fixed_bin_count  "true" ;
    vamp:is_quantised     "false"  ;
    vamp:unit             "" ;
    vamp:bin_count          20 ;
    vamp:bin_names          ( "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "");
    vamp:sample_type       vamp:OneSamplePerStep ;
    vamp:computes_feature_type  <FIXME feature type URI> ;
    vamp:computes_event_type    <FIXME event type URI> ;
    .
thisplug:output_means a  vamp:DenseOutput ;
    vamp:identifier       "means" ;
    dc:title              "Means of Coefficients" ;
    dc:description        "Mean values of MFCCs across duration of audio input"  ;
    vamp:fixed_bin_count  "true" ;
    vamp:is_quantised     "false"  ;
    vamp:unit             "" ;
    vamp:bin_count          20 ;
    vamp:bin_names          ( "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "");
    vamp:sample_type       vamp:FixedSampleRate ;
    vamp:sample_rate       1 ;
    vamp:computes_feature_type  <FIXME feature type URI> ;
    vamp:computes_event_type    <FIXME event type URI> ;
    .