Mercurial > hg > audiodb
annotate 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 |
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/vamp-audiodb-plugins#chromagram> ; |
mas01mj@669 | 7 vamp:step_size "2048"^^xsd:int ; |
mas01mj@669 | 8 vamp:block_size "16384"^^xsd:int ; |
mas01mj@669 | 9 vamp:parameter_binding [ |
mas01mj@669 | 10 vamp:parameter [ vamp:identifier "bpo" ] ; |
mas01mj@669 | 11 vamp:value "12"^^xsd:float ; |
mas01mj@669 | 12 ] ; |
mas01mj@669 | 13 vamp:parameter_binding [ |
mas01mj@669 | 14 vamp:parameter [ vamp:identifier "maxfreq" ] ; |
mas01mj@669 | 15 vamp:value "1046.5"^^xsd:float ; |
mas01mj@669 | 16 ] ; |
mas01mj@669 | 17 vamp:parameter_binding [ |
mas01mj@669 | 18 vamp:parameter [ vamp:identifier "minfreq" ] ; |
mas01mj@669 | 19 vamp:value "65.4064"^^xsd:float ; |
mas01mj@669 | 20 ] ; |
mas01mj@669 | 21 vamp:parameter_binding [ |
mas01mj@669 | 22 vamp:parameter [ vamp:identifier "summation" ] ; |
mas01mj@669 | 23 vamp:value "1"^^xsd:float ; |
mas01mj@669 | 24 ] ; |
mas01mj@669 | 25 vamp:output <http://vamp-plugins.org/rdf/plugins/vamp-audiodb-plugins#chromagram_output_chroma> . |