view tests/misc-queries/test-query-dense-output @ 45:69c438d4b9d3

* Pick up default sample rate and channel count from first audio file (formerly they were hardcoded to 44100 and 1...)
author Chris Cannam
date Mon, 18 Oct 2010 14:17:48 +0100
parents 92911f967a16
children
line wrap: on
line source

PREFIX vamp: <http://purl.org/ontology/vamp/>
PREFIX mo: <http://purl.org/ontology/mo/>
PREFIX af: <http://purl.org/ontology/af/>

SELECT ?signal_source ?feature_signal_type ?value
FROM <file:///share/music/wav/12-You Look So Fine.n3>

WHERE {
      ?signal mo:available_as ?signal_source .
      ?signal a mo:Signal .
      ?signal af:signal_feature ?feature .
      ?feature a ?feature_signal_type.
      ?feature af:value ?value .
}