annotate examples/iAudioDB/rdf/qm_mfcc.n3 @ 669:780ebab29268

Added initial increment of OSX audioDB interface
author mas01mj
date Wed, 03 Mar 2010 17:17:08 +0000
parents
children e78e5a80b73d
rev   line source
mas01mj@669 1 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
mas01mj@669 2 @prefix vamp: <http://purl.org/ontology/vamp/> .
mas01mj@669 3 @prefix : <#> .
mas01mj@669 4
mas01mj@669 5 :transform a vamp:Transform ;
mas01mj@669 6 vamp:plugin <http://vamp-plugins.org/rdf/plugins/qm-vamp-plugins#qm-mfcc> ;
mas01mj@669 7 vamp:step_size "1024"^^xsd:int ;
mas01mj@669 8 vamp:block_size "2048"^^xsd:int ;
mas01mj@669 9 vamp:parameter_binding [
mas01mj@669 10 vamp:parameter [ vamp:identifier "logpower" ] ;
mas01mj@669 11 vamp:value "1"^^xsd:float ;
mas01mj@669 12 ] ;
mas01mj@669 13 vamp:parameter_binding [
mas01mj@669 14 vamp:parameter [ vamp:identifier "nceps" ] ;
mas01mj@669 15 vamp:value "20"^^xsd:float ;
mas01mj@669 16 ] ;
mas01mj@669 17 vamp:parameter_binding [
mas01mj@669 18 vamp:parameter [ vamp:identifier "wantc0" ] ;
mas01mj@669 19 vamp:value "1"^^xsd:float ;
mas01mj@669 20 ] ;
mas01mj@669 21 vamp:output <http://vamp-plugins.org/rdf/plugins/qm-vamp-plugins#qm-mfcc_output_coefficients> .