view examples/iAudioDB/rdf/adb_chroma.n3 @ 673:e1f7cab30701

rename struct adbfoo to struct adb_foo (or nearest idiomatic equivalent in the appropriate language) This should have minimal impact on ABI compatibility, but is still formally a backward-incompatible change (and is potentially an API incompatibility too, though everyone should be using the typedefed synonyms.
author mas01cr
date Fri, 05 Mar 2010 16:00:58 +0000
parents 780ebab29268
children e78e5a80b73d
line wrap: on
line source
@prefix xsd:      <http://www.w3.org/2001/XMLSchema#> .
@prefix vamp:     <http://purl.org/ontology/vamp/> .
@prefix :         <#> .

:transform a vamp:Transform ;
    vamp:plugin <http://vamp-plugins.org/rdf/plugins/vamp-audiodb-plugins#chromagram> ;
    vamp:step_size "2048"^^xsd:int ; 
    vamp:block_size "16384"^^xsd:int ; 
    vamp:parameter_binding [
        vamp:parameter [ vamp:identifier "bpo" ] ;
        vamp:value "12"^^xsd:float ;
    ] ;
    vamp:parameter_binding [
        vamp:parameter [ vamp:identifier "maxfreq" ] ;
        vamp:value "1046.5"^^xsd:float ;
    ] ;
    vamp:parameter_binding [
        vamp:parameter [ vamp:identifier "minfreq" ] ;
        vamp:value "65.4064"^^xsd:float ;
    ] ;
    vamp:parameter_binding [
        vamp:parameter [ vamp:identifier "summation" ] ;
        vamp:value "1"^^xsd:float ;
    ] ;
    vamp:output <http://vamp-plugins.org/rdf/plugins/vamp-audiodb-plugins#chromagram_output_chroma> .