annotate tests/misc-queries/test-query-plugin-output-types @ 271:7b3a80021b7c
 piper-nopiper 
Add MAD_BUFFER_GUARD padding at end of mp3 buffer, in order to ensure last frame is decoded successfully (otherwise the decoded audio is truncated). Another thing learned from madplay.
 | author | Chris Cannam | 
 | date | Thu, 24 Nov 2016 17:06:31 +0000 | 
 | parents | 92911f967a16 | 
 | children |  | 
 | rev | line source | 
  
| Chris@0 | 1 | 
| Chris@0 | 2 PREFIX vamp: <http://purl.org/ontology/vamp/> | 
| Chris@0 | 3 PREFIX examples: <http://vamp-plugins.org/rdf/plugins/vamp-example-plugins#> | 
| Chris@0 | 4 | 
| Chris@0 | 5 SELECT ?output_id ?output_type ?feature_type ?event_type ?unit | 
| Chris@0 | 6 FROM <http://vamp-plugins.org/rdf/plugins/vamp-example-plugins> | 
| Chris@0 | 7 | 
| Chris@0 | 8 WHERE { | 
| Chris@0 | 9       ?plugin a vamp:Plugin . | 
| Chris@0 | 10       ?plugin vamp:identifier "percussiononsets" . | 
| Chris@0 | 11       ?plugin vamp:output_descriptor ?output . | 
| Chris@0 | 12       ?output vamp:identifier ?output_id . | 
| Chris@0 | 13       ?output a ?output_type . | 
| Chris@0 | 14       OPTIONAL { ?output vamp:computes_feature_type ?feature_type } . | 
| Chris@0 | 15       OPTIONAL { ?output vamp:computes_event_type ?event_type } . | 
| Chris@0 | 16       OPTIONAL { ?output vamp:unit ?unit } . | 
| Chris@0 | 17 } | 
| Chris@0 | 18 |