source: examples/utils.c @ 9e84cc5

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

examples/utils.c,aubiomfcc.c: do not set mfcc parameters here, do that in aubiomfcc.c instead

  • Property mode set to 100644
File size: 16.6 KB
RevLine 
[96fb8ad]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
[71482a9]15#ifdef LASH_SUPPORT
16#include <lash/lash.h>
17#include <pthread.h>
18lash_client_t * aubio_lash_client;
19lash_args_t * lash_args;
20void * lash_thread_main (void * data);
21int lash_main (void);
22void save_data (void);
[55c6da4]23void restore_data(lash_config_t * lash_config);
[71482a9]24pthread_t lash_thread;
25#endif /* LASH_SUPPORT */
[96fb8ad]26
[bd2f2ab]27/* settings */
28const char * output_filename = NULL;
29const char * input_filename  = NULL;
[6b233fc]30const char * onset_filename  = AUBIO_PREFIX "/share/sounds/" PACKAGE "/woodblock.aiff";
[bd2f2ab]31int frames = 0;
32int verbose = 0;
33int usejack = 0;
34int usedoubled = 1;
35
36
37/* energy,specdiff,hfc,complexdomain,phase */
[5cf415f]38aubio_onsetdetection_type type_onset  = aubio_onset_kl;
39aubio_onsetdetection_type type_onset2 = aubio_onset_complex;
[bd2f2ab]40smpl_t threshold                      = 0.3;
[660cad22]41smpl_t silence                        = -90.;
[9e84cc5]42uint_t buffer_size                    = 512; //1024;
43uint_t overlap_size                   = 256; //512;
[bd2f2ab]44uint_t channels                       = 1;
45uint_t samplerate                     = 44100;
46
47
[5e9c68a]48aubio_sndfile_t * file = NULL;
49aubio_sndfile_t * fileout = NULL;
[bd2f2ab]50
51aubio_pvoc_t * pv;
52fvec_t * ibuf;
53fvec_t * obuf;
54cvec_t * fftgrain;
55fvec_t * woodblock;
56aubio_onsetdetection_t *o;
57aubio_onsetdetection_t *o2;
58fvec_t *onset;
59fvec_t *onset2;
60int isonset = 0;
61aubio_pickpeak_t * parms;
62
63/* pitch objects */
64smpl_t pitch               = 0.;
65aubio_pitchdetection_t * pitchdet;
[4c67dc8]66aubio_pitchdetection_type type_pitch = aubio_pitch_yinfft; // aubio_pitch_mcomb
[fb615eb]67aubio_pitchdetection_mode mode_pitch = aubio_pitchm_freq;
[bd2f2ab]68uint_t median         = 6;
69
70fvec_t * note_buffer  = NULL;
71fvec_t * note_buffer2 = NULL;
72smpl_t curlevel       = 0.;
73smpl_t maxonset       = 0.;
74
75/* midi objects */
76aubio_midi_player_t * mplay; 
77aubio_midi_driver_t * mdriver; 
78aubio_midi_event_t  * event;
79
80smpl_t curnote = 0.;
81smpl_t newnote = 0.;
82uint_t isready = 0;
83
84
[96fb8ad]85
86/* badly redeclare some things */
87aubio_onsetdetection_type type_onset;
88smpl_t threshold;
89smpl_t averaging;
90const char * prog_name;
91
92void usage (FILE * stream, int exit_code)
93{
[ee0cc27b]94        fprintf(stream, "usage: %s [ options ] \n", prog_name);
95        fprintf(stream, 
[fb615eb]96                        "       -h      --help          Display this message.\n"
[3a323d0]97                        "       -v      --verbose       Be verbose.\n"
[fb615eb]98                        "       -j      --jack          Use Jack.\n"
99                        "       -o      --output        Output type.\n"
100                        "       -i      --input         Input type.\n"
101                        "       -O      --onset         Select onset detection algorithm.\n"
102                        "       -t      --threshold     Set onset detection threshold.\n"
103                        "       -s      --silence       Select silence threshold.\n"
104                        "       -p      --pitch         Select pitch detection algorithm.\n"
105                        "       -H      --hopsize       Set hopsize.\n"
106                        "       -a      --averaging     Use averaging.\n"
[ee0cc27b]107               );
108        exit(exit_code);
[96fb8ad]109}
110
111int parse_args (int argc, char **argv) {
[fb615eb]112        const char *options = "hvjo:i:O:t:s:p:H:a";
[ee0cc27b]113        int next_option;
114        struct option long_options[] =
115        {
116                {"help"     , 0, NULL, 'h'},
117                {"verbose"  , 0, NULL, 'v'},
118                {"jack"     , 0, NULL, 'j'},
[13d57e8]119                {"output"   , 1, NULL, 'o'},
120                {"input"    , 1, NULL, 'i'},
121                {"onset"    , 1, NULL, 'O'},
122                {"threshold", 1, NULL, 't'},
123                {"silence"  , 1, NULL, 's'},
[fb615eb]124                {"pitch"    , 1, NULL, 'p'},
[ee0cc27b]125                {"averaging", 0, NULL, 'a'},
[13d57e8]126                {"hopsize",   1, NULL, 'H'},
[ee0cc27b]127                {NULL       , 0, NULL, 0}
128        };
[71482a9]129#ifdef LASH_SUPPORT
130        lash_args = lash_extract_args(&argc, &argv);
131#endif /* LASH_SUPPORT */
[fb615eb]132        prog_name = argv[0];
[ee0cc27b]133        if( argc < 1 ) {
134                usage (stderr, 1);
135                return -1;
[96fb8ad]136        }
[ee0cc27b]137        do {
138                next_option = getopt_long (argc, argv, options, 
139                                long_options, NULL);
140                switch (next_option) {
141                        case 'o':
142                                output_filename = optarg;
143                                break;
144                        case 'i':
145                                input_filename = optarg;
146                                break;
[fb615eb]147                        case 'h': /* help */
[ee0cc27b]148                                usage (stdout, 0);
149                                return -1;
[fb615eb]150                        case 'v': /* verbose */
[ee0cc27b]151                                verbose = 1;
152                                break;
[fb615eb]153                        case 'j':
[ee0cc27b]154                                usejack = 1;
155                                break;
156                        case 'O':   /*onset type*/
157                                if (strcmp(optarg,"energy") == 0) 
[5cf415f]158                                        type_onset = aubio_onset_energy;
[ee0cc27b]159                                else if (strcmp(optarg,"specdiff") == 0) 
[5cf415f]160                                        type_onset = aubio_onset_specdiff;
[ee0cc27b]161                                else if (strcmp(optarg,"hfc") == 0) 
[5cf415f]162                                        type_onset = aubio_onset_hfc;
[ee0cc27b]163                                else if (strcmp(optarg,"complexdomain") == 0) 
[5cf415f]164                                        type_onset = aubio_onset_complex;
165                                else if (strcmp(optarg,"complex") == 0) 
166                                        type_onset = aubio_onset_complex;
[ee0cc27b]167                                else if (strcmp(optarg,"phase") == 0) 
[5cf415f]168                                        type_onset = aubio_onset_phase;
169                                else if (strcmp(optarg,"mkl") == 0) 
170                                        type_onset = aubio_onset_mkl;
171                                else if (strcmp(optarg,"kl") == 0) 
172                                        type_onset = aubio_onset_kl;
[ee0cc27b]173                                else {
[92e4028]174                                        errmsg("unknown onset type.\n");
[ee0cc27b]175                                        abort();
176                                }
177                                usedoubled = 0;
178                                break;
179                        case 's':   /* threshold value for onset */
[660cad22]180                                silence = (smpl_t)atof(optarg);
[ee0cc27b]181                                break;
182                        case 't':   /* threshold value for onset */
183                                threshold = (smpl_t)atof(optarg);
184                                /*
185                                   if (!isfinite(threshold)) {
186                                   debug("could not get threshold.\n");
187                                   abort();
188                                   }
189                                   */
190                                break;
[fb615eb]191                        case 'p':
192                                if (strcmp(optarg,"mcomb") == 0) 
193                                        type_pitch = aubio_pitch_mcomb;
[4c67dc8]194                                else if (strcmp(optarg,"yinfft") == 0) 
195                                        type_pitch = aubio_pitch_yin;
[fb615eb]196                                else if (strcmp(optarg,"yin") == 0) 
197                                        type_pitch = aubio_pitch_yin;
198                                else if (strcmp(optarg,"schmitt") == 0) 
199                                        type_pitch = aubio_pitch_schmitt;
200                                else if (strcmp(optarg,"fcomb") == 0) 
201                                        type_pitch = aubio_pitch_fcomb;
202                                else {
[92e4028]203                                        errmsg("unknown pitch type.\n");
[fb615eb]204                                        abort();
205                                }
206                                break;
[ee0cc27b]207                        case 'a':
208                                averaging = 1;
209                                break; 
[0ce9acc3]210                        case 'H':
211                                overlap_size = atoi(optarg);
212                                break;
[fb615eb]213                        case '?': /* unknown options */
[ee0cc27b]214                                usage(stderr, 1);
215                                break;
[fb615eb]216                        case -1: /* done with options */
[ee0cc27b]217                                break;
[fb615eb]218                        default: /*something else unexpected */
[ee0cc27b]219                                abort ();
220                }
[96fb8ad]221        }
[ee0cc27b]222        while (next_option != -1);
223
224        if (input_filename != NULL) {
225                debug ("Input file : %s\n", input_filename );
226        } else if (input_filename != NULL && output_filename != NULL) {
227                debug ("Input file : %s\n", input_filename );
228                debug ("Output file : %s\n", output_filename );
229        } else {
230                if (JACK_SUPPORT)
231                {
232                        debug ("Jack input output\n");
233                        usejack = 1;
234                } else {
235                        debug ("Error: Could not switch to jack mode\n   aubio was compiled without jack support\n");
236                        exit(1);
237                }
[fb615eb]238        }
[71482a9]239
[ee0cc27b]240        return 0;
[96fb8ad]241}
242
[bd2f2ab]243void examples_common_init(int argc,char ** argv) {
244
245
[b1f723d]246  aubio_sndfile_t * onsetfile = NULL;
[bd2f2ab]247  /* parse command line arguments */
248  parse_args(argc, argv);
249
[f382ac6]250  woodblock = new_fvec(buffer_size,1);
251  if (output_filename || usejack) {
[6b233fc]252          /* dummy assignement to keep egcs happy */
253          isonset = (onsetfile = new_aubio_sndfile_ro(onset_filename)) ||
[5e9c68a]254                  (onsetfile = new_aubio_sndfile_ro("sounds/woodblock.aiff")) ||
255                  (onsetfile = new_aubio_sndfile_ro("../sounds/woodblock.aiff"));
[9af07aa]256          if (onsetfile == NULL) {
257            outmsg("Could not find woodblock.aiff\n");
258            exit(1);
259          }
[b1f723d]260  }
261  if (onsetfile) {
[f382ac6]262          /* read the output sound once */
[5e9c68a]263          aubio_sndfile_read(onsetfile, overlap_size, woodblock);
[f382ac6]264  }
265
[bd2f2ab]266  if(!usejack)
267  {
268    debug("Opening files ...\n");
[5e9c68a]269    file = new_aubio_sndfile_ro (input_filename);
[9af07aa]270    if (file == NULL) {
271      outmsg("Could not open input file %s.\n", input_filename);
272      exit(1);
273    }
[5e9c68a]274    if (verbose) aubio_sndfile_info(file);
275    channels = aubio_sndfile_channels(file);
276    samplerate = aubio_sndfile_samplerate(file);
[bd2f2ab]277    if (output_filename != NULL)
[5e9c68a]278      fileout = new_aubio_sndfile_wo(file, output_filename);
[bd2f2ab]279  }
[71482a9]280#ifdef LASH_SUPPORT
281  else {
282    aubio_lash_client = lash_init(lash_args, argv[0],
283        LASH_Config_Data_Set | LASH_Terminal,
284        LASH_PROTOCOL(2, 0));
285    if (!aubio_lash_client) {
286      fprintf(stderr, "%s: could not initialise lash\n", __FUNCTION__);
287    }
288    /* tell the lash server our client id */
289    if (lash_enabled(aubio_lash_client)) {
290      lash_event_t * event = (lash_event_t *)lash_event_new_with_type(LASH_Client_Name);
291      lash_event_set_string(event, "aubio");
292      lash_send_event(aubio_lash_client, event);
[8e3a067]293      pthread_create(&lash_thread, NULL, lash_thread_main, NULL);
[71482a9]294    }
295  }
296#endif /* LASH_SUPPORT */
[bd2f2ab]297
298  ibuf      = new_fvec(overlap_size, channels);
299  obuf      = new_fvec(overlap_size, channels);
300  fftgrain  = new_cvec(buffer_size, channels);
301
[7a46bf6]302 
[bd2f2ab]303  if (usepitch) {
[edca23f]304    pitchdet = new_aubio_pitchdetection(buffer_size*4, 
[4c67dc8]305        overlap_size, channels, samplerate, type_pitch, mode_pitch);
306    aubio_pitchdetection_set_yinthresh(pitchdet, 0.7);
307
308    if (median) {
309      note_buffer = new_fvec(median, 1);
310      note_buffer2= new_fvec(median, 1);
311    }
[bd2f2ab]312  }
313  /* phase vocoder */
314  pv = new_aubio_pvoc(buffer_size, overlap_size, channels);
[7c6c806d]315 
[bd2f2ab]316  /* onsets */
317  parms = new_aubio_peakpicker(threshold);
318  o = new_aubio_onsetdetection(type_onset,buffer_size,channels);
319  onset = new_fvec(1, channels);
320  if (usedoubled)    {
321    o2 = new_aubio_onsetdetection(type_onset2,buffer_size,channels);
322    onset2 = new_fvec(1 , channels);
323  }
324
325}
326
327
328void examples_common_del(void){
329  if (usepitch) {
330          send_noteon(curnote,0);
331          del_aubio_pitchdetection(pitchdet);
332          if (median) {
333                  del_fvec(note_buffer);
334                  del_fvec(note_buffer2);
335          }
336  }
[b91fe6e]337  if (usedoubled)    {
338    del_aubio_onsetdetection(o2);
339    del_fvec(onset2);
340  }
341  del_aubio_onsetdetection(o);
342  del_aubio_peakpicker(parms);
[bd2f2ab]343  del_aubio_pvoc(pv);
344  del_fvec(obuf);
345  del_fvec(ibuf);
346  del_cvec(fftgrain);
347  del_fvec(onset);
[b91fe6e]348  del_fvec(woodblock);
[7c6c806d]349 
[b91fe6e]350  aubio_cleanup();
[bd2f2ab]351}
352
353void examples_common_process(aubio_process_func_t process_func, aubio_print_func_t print ){
354  if(usejack) {
[5a1ff62]355#if JACK_SUPPORT
[bd2f2ab]356    aubio_jack_t * jack_setup;
357    debug("Jack init ...\n");
358    jack_setup = new_aubio_jack(channels, channels,
359          (aubio_process_func_t)process_func);
360    if (usepitch) {
361            debug("Midi init ...\n");
362            mplay = new_aubio_midi_player();
363            mdriver = new_aubio_midi_driver("alsa_seq",
364                            (handle_midi_event_func_t)aubio_midi_send_event, mplay);
365            event = new_aubio_midi_event();
366    }
367    debug("Jack activation ...\n");
368    aubio_jack_activate(jack_setup);
369    debug("Processing (Ctrl+C to quit) ...\n");
370    pause();
371    aubio_jack_close(jack_setup);
372    if (usepitch) {
373            send_noteon(curnote,0);
374            del_aubio_midi_driver(mdriver);
375    }
376#else
377    usage(stderr, 1);
378    outmsg("Compiled without jack output, exiting.\n");
379#endif
380
381  } else {
382    /* phasevoc */
383    debug("Processing ...\n");
384
385    frames = 0;
386
[af35ed0]387    while ((signed)overlap_size == aubio_sndfile_read(file, overlap_size, ibuf))
[bd2f2ab]388    {
389      isonset=0;
390      process_func(ibuf->data, obuf->data, overlap_size);
391      print(); 
392      if (output_filename != NULL) {
[5e9c68a]393        aubio_sndfile_write(fileout,overlap_size,obuf);
[bd2f2ab]394      }
395      frames++;
396    }
397
398    debug("Processed %d frames of %d samples.\n", frames, buffer_size);
[5e9c68a]399    del_aubio_sndfile(file);
[bd2f2ab]400
401    if (output_filename != NULL)
[5e9c68a]402      del_aubio_sndfile(fileout);
[bd2f2ab]403
404  }
405}
406
407
408
409void send_noteon(int pitch, int velo)
410{
[144aff7]411    smpl_t mpitch = floor(aubio_freqtomidi(pitch)+.5);
[bd2f2ab]412    /* we should check if we use midi here, not jack */
413#if ALSA_SUPPORT
414    if (usejack) {
415        if (velo==0) {
416            aubio_midi_event_set_type(event,NOTE_OFF);
417        } else {
418            aubio_midi_event_set_type(event,NOTE_ON);
419        }
420        aubio_midi_event_set_channel(event,0);
421        aubio_midi_event_set_pitch(event,mpitch);
422        aubio_midi_event_set_velocity(event,velo);
423        aubio_midi_direct_output(mdriver,event);
424    } else 
425#endif
426    if (!verbose)
427    {
428        if (velo==0) {
429            outmsg("%f\n",frames*overlap_size/(float)samplerate);
430        } else {
431            outmsg("%f\t%f\t", mpitch,
432                        frames*overlap_size/(float)samplerate);
433        }
434    }
435}
436
437
438void note_append(fvec_t * note_buffer, smpl_t curnote) {
439  uint_t i = 0;
440  for (i = 0; i < note_buffer->length - 1; i++) { 
441      note_buffer->data[0][i] = note_buffer->data[0][i+1];
442  }
443  note_buffer->data[0][note_buffer->length - 1] = curnote;
444  return;
445}
446
447uint_t get_note(fvec_t *note_buffer, fvec_t *note_buffer2){
448  uint_t i = 0;
449  for (i = 0; i < note_buffer->length; i++) { 
450      note_buffer2->data[0][i] = note_buffer->data[0][i];
451  }
452  return vec_median(note_buffer2);
453}
454
[71482a9]455#if LASH_SUPPORT
456
[633fb32]457void * lash_thread_main(void *data __attribute__((unused)))
[71482a9]458{
459        printf("LASH thread running\n");
460
461        while (!lash_main())
462                usleep(1000);
463
464        printf("LASH thread finished\n");
465        return NULL;
466}
467
468int lash_main(void) {
[55c6da4]469        lash_event_t *lash_event;
470        lash_config_t *lash_config;
[71482a9]471
[55c6da4]472        while ((lash_event = lash_get_event(aubio_lash_client))) {
473                switch (lash_event_get_type(lash_event)) {
[71482a9]474                case LASH_Quit:
[55c6da4]475                        lash_event_destroy(lash_event);
[71482a9]476      exit(1);
477      return 1;
478                case LASH_Restore_Data_Set:
[55c6da4]479                        lash_send_event(aubio_lash_client, lash_event);
[71482a9]480                        break;
481                case LASH_Save_Data_Set:
482                        save_data();
[55c6da4]483                        lash_send_event(aubio_lash_client, lash_event);
[71482a9]484                        break;
485                case LASH_Server_Lost:
486                        return 1;
487                default:
488                        printf("%s: received unknown LASH event of type %d",
[55c6da4]489                                   __FUNCTION__, lash_event_get_type(lash_event));
490                        lash_event_destroy(lash_event);
[71482a9]491      break;
492                }
493        }
494
[55c6da4]495        while ((lash_config = lash_get_config(aubio_lash_client))) {
496                restore_data(lash_config);
497                lash_config_destroy(lash_config);
[71482a9]498        }
499
500        return 0;
501}
502
503void save_data() {
[55c6da4]504        lash_config_t *lash_config;
[71482a9]505
[55c6da4]506        lash_config = lash_config_new_with_key("threshold");
507        lash_config_set_value_double(lash_config, threshold);
508        lash_send_config(aubio_lash_client, lash_config);
[71482a9]509
510}
511
[55c6da4]512void restore_data(lash_config_t * lash_config) {
513        const char *lash_key;
[71482a9]514
[55c6da4]515        lash_key = lash_config_get_key(lash_config);
[71482a9]516
[55c6da4]517        if (strcmp(lash_key, "threshold") == 0) {
518                threshold = lash_config_get_value_double(lash_config);
[71482a9]519                return;
520        }
521
522}
523
524#endif /* LASH_SUPPORT */
525
Note: See TracBrowser for help on using the repository browser.