1 | /* |
---|
2 | Copyright (C) 2003-2013 Paul Brossier <piem@aubio.org> |
---|
3 | |
---|
4 | This file is part of aubio. |
---|
5 | |
---|
6 | aubio is free software: you can redistribute it and/or modify |
---|
7 | it under the terms of the GNU General Public License as published by |
---|
8 | the Free Software Foundation, either version 3 of the License, or |
---|
9 | (at your option) any later version. |
---|
10 | |
---|
11 | aubio is distributed in the hope that it will be useful, |
---|
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
14 | GNU General Public License for more details. |
---|
15 | |
---|
16 | You should have received a copy of the GNU General Public License |
---|
17 | along with aubio. If not, see <http://www.gnu.org/licenses/>. |
---|
18 | |
---|
19 | */ |
---|
20 | |
---|
21 | #include "utils.h" |
---|
22 | #include "parse_args.h" |
---|
23 | |
---|
24 | sint_t wassilence = 1, issilence; |
---|
25 | |
---|
26 | void process_block(fvec_t * ibuf, fvec_t * obuf) { |
---|
27 | fvec_zeros (obuf); |
---|
28 | if (aubio_silence_detection(ibuf, silence_threshold)==1) { |
---|
29 | if (wassilence==1) issilence = 1; |
---|
30 | else issilence = 2; |
---|
31 | wassilence=1; |
---|
32 | } else { |
---|
33 | if (wassilence<=0) issilence = 0; |
---|
34 | else issilence = -1; |
---|
35 | wassilence=0; |
---|
36 | } |
---|
37 | } |
---|
38 | |
---|
39 | void process_print (void) { |
---|
40 | int curblocks = (blocks - 4) > 0 ? blocks - 4 : 0; |
---|
41 | if (issilence == -1) { |
---|
42 | outmsg("NOISY: %f\n",curblocks*hop_size/(float)samplerate); |
---|
43 | } else if (issilence == 2) { |
---|
44 | outmsg("QUIET: %f\n",curblocks*hop_size/(float)samplerate); |
---|
45 | } |
---|
46 | } |
---|
47 | |
---|
48 | int main(int argc, char **argv) { |
---|
49 | examples_common_init(argc,argv); |
---|
50 | verbmsg ("using source: %s at %dHz\n", source_uri, samplerate); |
---|
51 | verbmsg ("buffer_size: %d, ", buffer_size); |
---|
52 | verbmsg ("hop_size: %d\n", hop_size); |
---|
53 | examples_common_process((aubio_process_func_t)process_block,process_print); |
---|
54 | examples_common_del(); |
---|
55 | return 0; |
---|
56 | } |
---|
57 | |
---|