Mercurial > hg > sonic-annotator
diff test-queries/test-query-plugin-output-types @ 0:581b1b150a4d
* copy to sonic-annotator
| author | Chris Cannam | 
|---|---|
| date | Thu, 11 Dec 2008 10:22:33 +0000 | 
| parents | |
| children | 
line wrap: on
 line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-queries/test-query-plugin-output-types Thu Dec 11 10:22:33 2008 +0000 @@ -0,0 +1,18 @@ + +PREFIX vamp: <http://purl.org/ontology/vamp/> +PREFIX examples: <http://vamp-plugins.org/rdf/plugins/vamp-example-plugins#> + +SELECT ?output_id ?output_type ?feature_type ?event_type ?unit +FROM <http://vamp-plugins.org/rdf/plugins/vamp-example-plugins> + +WHERE { + ?plugin a vamp:Plugin . + ?plugin vamp:identifier "percussiononsets" . + ?plugin vamp:output_descriptor ?output . + ?output vamp:identifier ?output_id . + ?output a ?output_type . + OPTIONAL { ?output vamp:computes_feature_type ?feature_type } . + OPTIONAL { ?output vamp:computes_event_type ?event_type } . + OPTIONAL { ?output vamp:unit ?unit } . +} +
