source: examples/utils.c @ ee0cc27b

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since ee0cc27b was ee0cc27b, checked in by Paul Brossier <piem@altern.org>, 19 years ago

added -s option in examples/utils.c
added -s option in examples/utils.c

  • Property mode set to 100644
File size: 11.0 KB
Line 
1
2#include "aubio.h"
3
4#ifndef JACK_SUPPORT
5#define JACK_SUPPORT 0
6#endif
7
8#include <getopt.h>
9#include <stdlib.h>
10#include <stdio.h>
11#include <string.h>
12#include <math.h> /* for isfinite */
13#include "utils.h"
14
15/* not supported yet */
16#ifdef LADCCA_SUPPORT
17#include <ladcca/ladcca.h>
18cca_client_t * aubio_cca_client;
19#endif /* LADCCA_SUPPORT */
20
21/* settings */
22const char * output_filename = NULL;
23const char * input_filename  = NULL;
24const char * onset_filename  = "/usr/share/sounds/aubio/woodblock.aiff";
25int frames = 0;
26int verbose = 0;
27int usejack = 0;
28int usedoubled = 1;
29
30
31/* energy,specdiff,hfc,complexdomain,phase */
32aubio_onsetdetection_type type_onset  = hfc;
33aubio_onsetdetection_type type_onset2 = complexdomain;
34smpl_t threshold                      = 0.3;
35smpl_t threshold2                     = -90.;
36uint_t buffer_size                    = 1024;
37uint_t overlap_size                   = 512;
38uint_t channels                       = 1;
39uint_t samplerate                     = 44100;
40
41
42aubio_file_t * file = NULL;
43aubio_file_t * fileout = NULL;
44
45aubio_pvoc_t * pv;
46fvec_t * ibuf;
47fvec_t * obuf;
48cvec_t * fftgrain;
49fvec_t * woodblock;
50aubio_onsetdetection_t *o;
51aubio_onsetdetection_t *o2;
52fvec_t *onset;
53fvec_t *onset2;
54int isonset = 0;
55aubio_pickpeak_t * parms;
56
57
58/* pitch objects */
59smpl_t pitch               = 0.;
60aubio_pitchdetection_t * pitchdet;
61aubio_pitchdetection_type mode = aubio_yin; // aubio_mcomb
62uint_t median         = 6;
63
64fvec_t * note_buffer  = NULL;
65fvec_t * note_buffer2 = NULL;
66smpl_t curlevel       = 0.;
67smpl_t maxonset       = 0.;
68
69/* midi objects */
70aubio_midi_player_t * mplay; 
71aubio_midi_driver_t * mdriver; 
72aubio_midi_event_t  * event;
73
74smpl_t curnote = 0.;
75smpl_t newnote = 0.;
76uint_t isready = 0;
77
78
79
80/* badly redeclare some things */
81aubio_onsetdetection_type type_onset;
82smpl_t threshold;
83smpl_t averaging;
84const char * prog_name;
85
86void usage (FILE * stream, int exit_code)
87{
88        fprintf(stream, "usage: %s [ options ] \n", prog_name);
89        fprintf(stream, 
90                        "       -j      --jack          Use Jack.\n"
91                        "       -o      --output        Output type.\n"
92                        "       -i      --input         Input type.\n"
93                        "       -h      --help          Display this message.\n"
94                        "       -v      --verbose       Print verbose message.\n"
95               );
96        exit(exit_code);
97}
98
99int parse_args (int argc, char **argv) {
100        const char *options = "hvjo:i:O:t:s:a";
101        int next_option;
102        struct option long_options[] =
103        {
104                {"help"     , 0, NULL, 'h'},
105                {"verbose"  , 0, NULL, 'v'},
106                {"jack"     , 0, NULL, 'j'},
107                {"output"   , 0, NULL, 'o'},
108                {"input"    , 0, NULL, 'i'},
109                {"onset"    , 0, NULL, 'O'},
110                {"threshold", 0, NULL, 't'},
111                {"silence"  , 0, NULL, 's'},
112                {"averaging", 0, NULL, 'a'},
113                {NULL       , 0, NULL, 0}
114        };
115        prog_name = argv[0];   
116        if( argc < 1 ) {
117                usage (stderr, 1);
118                return -1;
119        }
120        do {
121                next_option = getopt_long (argc, argv, options, 
122                                long_options, NULL);
123                switch (next_option) {
124                        case 'o':
125                                output_filename = optarg;
126                                break;
127                        case 'i':
128                                input_filename = optarg;
129                                break;
130                        case 'h':       /* help */
131                                usage (stdout, 0);
132                                return -1;
133                        case 'v':               /* verbose */
134                                verbose = 1;
135                                break;
136                        case 'j':               /* verbose */
137                                usejack = 1;
138                                break;
139                        case 'O':   /*onset type*/
140                                if (strcmp(optarg,"energy") == 0) 
141                                        type_onset = energy;
142                                else if (strcmp(optarg,"specdiff") == 0) 
143                                        type_onset = specdiff;
144                                else if (strcmp(optarg,"hfc") == 0) 
145                                        type_onset = hfc;
146                                else if (strcmp(optarg,"complexdomain") == 0) 
147                                        type_onset = complexdomain;
148                                else if (strcmp(optarg,"phase") == 0) 
149                                        type_onset = phase;
150                                else {
151                                        debug("could not get onset type.\n");
152                                        abort();
153                                }
154                                usedoubled = 0;
155                                break;
156                        case 's':   /* threshold value for onset */
157                                threshold2 = (smpl_t)atof(optarg);
158                                break;
159                        case 't':   /* threshold value for onset */
160                                threshold = (smpl_t)atof(optarg);
161                                /*
162                                   if (!isfinite(threshold)) {
163                                   debug("could not get threshold.\n");
164                                   abort();
165                                   }
166                                   */
167                                break;
168                        case 'a':
169                                averaging = 1;
170                                break; 
171                        case '?':       /* unknown options */
172                                usage(stderr, 1);
173                                break;
174                        case -1:                /* done with options */
175                                break;
176                        default:                /*something else unexpected */
177                                abort ();
178                }
179        }
180        while (next_option != -1);
181
182        if (input_filename != NULL) {
183                debug ("Input file : %s\n", input_filename );
184        } else if (input_filename != NULL && output_filename != NULL) {
185                debug ("Input file : %s\n", input_filename );
186                debug ("Output file : %s\n", output_filename );
187        } else {
188                if (JACK_SUPPORT)
189                {
190                        debug ("Jack input output\n");
191                        usejack = 1;
192                } else {
193                        debug ("Error: Could not switch to jack mode\n   aubio was compiled without jack support\n");
194                        exit(1);
195                }
196        }       
197        return 0;
198}
199
200void examples_common_init(int argc,char ** argv) {
201
202
203  aubio_file_t * onsetfile = new_file_ro(onset_filename);
204  /* parse command line arguments */
205  parse_args(argc, argv);
206
207  if(!usejack)
208  {
209    debug("Opening files ...\n");
210    file = new_file_ro (input_filename);
211    if (verbose) file_info(file);
212    channels = aubio_file_channels(file);
213    samplerate = aubio_file_samplerate(file);
214    if (output_filename != NULL)
215      fileout = new_file_wo(file, output_filename);
216  }
217
218  ibuf      = new_fvec(overlap_size, channels);
219  obuf      = new_fvec(overlap_size, channels);
220  woodblock = new_fvec(buffer_size,1);
221  fftgrain  = new_cvec(buffer_size, channels);
222
223  if (usepitch) {
224    pitchdet = new_aubio_pitchdetection(buffer_size*4, 
225                    overlap_size, channels, samplerate, mode, aubio_freq);
226 
227  if (median) {
228          note_buffer = new_fvec(median, 1);
229          note_buffer2= new_fvec(median, 1);
230  }
231  }
232  /* read the output sound once */
233  file_read(onsetfile, overlap_size, woodblock);
234  /* phase vocoder */
235  pv = new_aubio_pvoc(buffer_size, overlap_size, channels);
236  /* onsets */
237  parms = new_aubio_peakpicker(threshold);
238  o = new_aubio_onsetdetection(type_onset,buffer_size,channels);
239  onset = new_fvec(1, channels);
240  if (usedoubled)    {
241    o2 = new_aubio_onsetdetection(type_onset2,buffer_size,channels);
242    onset2 = new_fvec(1 , channels);
243  }
244
245}
246
247
248void examples_common_del(void){
249  if (usepitch) {
250          send_noteon(curnote,0);
251          del_aubio_pitchdetection(pitchdet);
252          if (median) {
253                  del_fvec(note_buffer);
254                  del_fvec(note_buffer2);
255          }
256  }
257  del_aubio_pvoc(pv);
258  del_fvec(obuf);
259  del_fvec(ibuf);
260  del_cvec(fftgrain);
261  del_fvec(onset);
262}
263
264void examples_common_process(aubio_process_func_t process_func, aubio_print_func_t print ){
265  if(usejack) {
266#ifdef JACK_SUPPORT
267    aubio_jack_t * jack_setup;
268    debug("Jack init ...\n");
269    jack_setup = new_aubio_jack(channels, channels,
270          (aubio_process_func_t)process_func);
271    if (usepitch) {
272            debug("Midi init ...\n");
273            mplay = new_aubio_midi_player();
274            mdriver = new_aubio_midi_driver("alsa_seq",
275                            (handle_midi_event_func_t)aubio_midi_send_event, mplay);
276            event = new_aubio_midi_event();
277    }
278    debug("Jack activation ...\n");
279    aubio_jack_activate(jack_setup);
280    debug("Processing (Ctrl+C to quit) ...\n");
281    pause();
282    aubio_jack_close(jack_setup);
283    if (usepitch) {
284            send_noteon(curnote,0);
285            del_aubio_midi_driver(mdriver);
286    }
287#else
288    usage(stderr, 1);
289    outmsg("Compiled without jack output, exiting.\n");
290#endif
291
292  } else {
293    /* phasevoc */
294    debug("Processing ...\n");
295
296    frames = 0;
297
298    while (overlap_size == file_read(file, overlap_size, ibuf))
299    {
300      isonset=0;
301      process_func(ibuf->data, obuf->data, overlap_size);
302      print(); 
303      if (output_filename != NULL) {
304        file_write(fileout,overlap_size,obuf);
305      }
306      frames++;
307    }
308
309    debug("Processed %d frames of %d samples.\n", frames, buffer_size);
310    del_file(file);
311
312    if (output_filename != NULL)
313      del_file(fileout);
314
315  }
316}
317
318
319
320void send_noteon(int pitch, int velo)
321{
322    smpl_t mpitch = (FLOOR)(freqtomidi(pitch)+.5);
323    /* we should check if we use midi here, not jack */
324#if ALSA_SUPPORT
325    if (usejack) {
326        if (velo==0) {
327            aubio_midi_event_set_type(event,NOTE_OFF);
328        } else {
329            aubio_midi_event_set_type(event,NOTE_ON);
330        }
331        aubio_midi_event_set_channel(event,0);
332        aubio_midi_event_set_pitch(event,mpitch);
333        aubio_midi_event_set_velocity(event,velo);
334        aubio_midi_direct_output(mdriver,event);
335    } else 
336#endif
337    if (!verbose)
338    {
339        if (velo==0) {
340            outmsg("%f\n",frames*overlap_size/(float)samplerate);
341        } else {
342            outmsg("%f\t%f\t", mpitch,
343                        frames*overlap_size/(float)samplerate);
344        }
345    }
346}
347
348
349void note_append(fvec_t * note_buffer, smpl_t curnote) {
350  uint_t i = 0;
351  for (i = 0; i < note_buffer->length - 1; i++) { 
352      note_buffer->data[0][i] = note_buffer->data[0][i+1];
353  }
354  note_buffer->data[0][note_buffer->length - 1] = curnote;
355  return;
356}
357
358uint_t get_note(fvec_t *note_buffer, fvec_t *note_buffer2){
359  uint_t i = 0;
360  for (i = 0; i < note_buffer->length; i++) { 
361      note_buffer2->data[0][i] = note_buffer->data[0][i];
362  }
363  return vec_median(note_buffer2);
364}
365
Note: See TracBrowser for help on using the repository browser.