annotate examples/iAudioDB/rdf/qm_mfcc.n3 @ 770:c54bc2ffbf92 tip

update tags
author convert-repo
date Fri, 16 Dec 2011 11:34:01 +0000
parents e78e5a80b73d
children
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@685 7 vamp:step_size "HOP_SIZE"^^xsd:int ;
mas01mj@685 8 vamp:block_size "WINDOW_SIZE"^^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> .