Mercurial > hg > sonic-annotator
comparison tests/test-multiple-audio/transforms/af.n3 @ 273:5db279f1e0f8 piper-nopiper
Switch the multiple-audio tests to using amplitudefollower -- percussiononsets is too sensitive to the very low-level noise that comes from variations in mp3 decoder fixed-point arithmetic function choice
author | Chris Cannam |
---|---|
date | Fri, 25 Nov 2016 13:37:02 +0000 |
parents | |
children | 9e98a1a8ebbd |
comparison
equal
deleted
inserted
replaced
272:45892d8efa4c | 273:5db279f1e0f8 |
---|---|
1 @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>. | |
2 @prefix vamp: <http://purl.org/ontology/vamp/>. | |
3 @prefix examples: <http://vamp-plugins.org/rdf/plugins/vamp-example-plugins#>. | |
4 @prefix : <#>. | |
5 | |
6 :transform0 a vamp:Transform; | |
7 vamp:plugin examples:amplitudefollower ; | |
8 vamp:output examples:amplitudefollower_output_amplitude ; | |
9 vamp:summary_type "mean" . | |
10 | |
11 :transform1 a vamp:Transform; | |
12 vamp:plugin examples:amplitudefollower ; | |
13 vamp:output examples:amplitudefollower_output_amplitude ; | |
14 vamp:summary_type "median" . | |
15 | |
16 # This is not a summary and so should not appear with --summary-only | |
17 :transform2 a vamp:Transform; | |
18 vamp:plugin examples:percussiononsets ; | |
19 vamp:output examples:percussiononsets_output_onsets . | |
20 | |
21 :transform3 a vamp:Transform; | |
22 vamp:plugin examples:amplitudefollower ; | |
23 vamp:output examples:amplitudefollower_output_amplitude ; | |
24 vamp:summary_type "mode" . | |
25 | |
26 # This has different step and block sizes from the default | |
27 # (:transform0), and so should be listed separately with different | |
28 # values in the output | |
29 :transform4 a vamp:Transform; | |
30 vamp:plugin examples:amplitudefollower ; | |
31 vamp:output examples:amplitudefollower_output_amplitude ; | |
32 vamp:step_size 4096 ; | |
33 vamp:block_size 8192 ; | |
34 vamp:summary_type "mean" . | |
35 | |
36 # This is not a summary and so should not appear with --summary-only | |
37 :transform5 a vamp:Transform; | |
38 vamp:plugin examples:amplitudefollower ; | |
39 vamp:output examples:amplitudefollower_output_amplitude . | |
40 | |
41 |