Ignore:
Timestamp:
Aug 12, 2015, 7:21:38 PM (9 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
Children:
60fc05b
Parents:
3a1a5d6 (diff), 7b2d740 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'develop' into notes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • examples/aubiotrack.c

    r3a1a5d6 rb257b60  
    5151void process_print (void) {
    5252  if ( is_beat && !is_silence ) {
    53     outmsg("%f\n", aubio_tempo_get_last_s(tempo) );
     53    print_time (aubio_tempo_get_last (tempo));
     54    outmsg ("\n");
    5455  }
    5556}
     
    7172  tempo_out = new_fvec(2);
    7273  tempo = new_aubio_tempo(tempo_method, buffer_size, hop_size, samplerate);
     74  // set silence threshold very low to output beats even during silence
     75  // aubio_tempo_set_silence(tempo, -1000.);
    7376  if (onset_threshold != 0.) aubio_tempo_set_threshold (tempo, onset_threshold);
    7477
Note: See TracChangeset for help on using the changeset viewer.