Mercurial > hg > audiodb
annotate examples/iAudioDB/rdf/qm_mfcc.n3 @ 685:e78e5a80b73d
* Extraction params supplied at db creation time
* n3 configs are customized at extraction time
* Changes to import UI
* Extraction params stored in db plist
author | mas01mj |
---|---|
date | Thu, 11 Mar 2010 11:50:39 +0000 |
parents | 780ebab29268 |
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> . |