view simplechord.n3 @ 22:444c344681f3 matthiasm-plugin

* Rather than worry about provenance of C versions, why not just use the FORTRAN? (We can back this out if it doesn't go well with the build scripts)
author Chris Cannam
date Thu, 21 Oct 2010 11:58:28 +0100
parents 8aa2e8b3a778
children
line wrap: on
line source
@prefix xsd:      <http://www.w3.org/2001/XMLSchema#> .
@prefix vamp:     <http://purl.org/ontology/vamp/> .
@prefix :         <#> .

:transform_plugin a vamp:Plugin ;
    vamp:identifier "nnls_chroma" .

:transform_library a vamp:PluginLibrary ;
    vamp:identifier "matthiasm" ;
    vamp:available_plugin :transform_plugin .

:transform a vamp:Transform ;
    vamp:plugin :transform_plugin ;
    vamp:step_size "2048"^^xsd:int ; 
    vamp:block_size "16384"^^xsd:int ; 
    vamp:parameter_binding [
        vamp:parameter [ vamp:identifier "notedict" ] ;
        vamp:value "0"^^xsd:float ;
    ] ;
    vamp:parameter_binding [
        vamp:parameter [ vamp:identifier "tuningmode" ] ;
        vamp:value "0"^^xsd:float ;
    ] ;
    vamp:output [ vamp:identifier "simplechord" ] .