#include "utils.h"
#define PROG_HAS_TEMPO 1
#define PROG_HAS_ONSET 1
#define PROG_HAS_SILENCE 1
#define PROG_HAS_OUTPUT 1
#define PROG_HAS_JACK 1
#include "parse_args.h"
if (silence_threshold != -90.)
if ( !usejack && ! sink_uri ) return;
if ( is_beat && !is_silence ) {
if (usejack) send_noteon(miditap_note, miditap_velo);
} else {
}
if (mix_input) {
} else {
}
}
void process_print (void) {
if ( is_beat && !is_silence ) {
outmsg ("\n");
}
}
int main(int argc, char **argv) {
int ret = 0;
buffer_size = 1024;
hop_size = 512;
examples_common_init(argc,argv);
verbmsg ("using source: %s at %dHz\n", source_uri, samplerate);
verbmsg ("tempo method: %s, ", tempo_method);
verbmsg ("buffer_size: %d, ", buffer_size);
verbmsg ("hop_size: %d, ", hop_size);
verbmsg ("threshold: %f\n", onset_threshold);
if (tempo == NULL) { ret = 1; goto beach; }
if (onset_minioi != 0.) errmsg ("warning: minioio not supported yet\n");
examples_common_process(process_block, process_print);
if (usejack) {
send_noteon (miditap_note, 0);
}
beach:
examples_common_del();
return ret;
}
fvec_t * new_fvec(uint_t length)
fvec_t buffer creation function
void del_fvec(fvec_t *s)
fvec_t buffer deletion function
void fvec_zeros(fvec_t *s)
set all elements to zero
smpl_t fvec_get_sample(const fvec_t *s, uint_t position)
read sample value in a buffer
uint_t aubio_silence_detection(const fvec_t *v, smpl_t threshold)
check if buffer level in dB SPL is under a given threshold
aubio_tempo_t * new_aubio_tempo(const char_t *method, uint_t buf_size, uint_t hop_size, uint_t samplerate)
create tempo detection object
void del_aubio_tempo(aubio_tempo_t *o)
delete tempo detection object
struct _aubio_tempo_t aubio_tempo_t
tempo detection structure
uint_t aubio_tempo_set_threshold(aubio_tempo_t *o, smpl_t threshold)
set tempo detection peak picking threshold
uint_t aubio_tempo_get_last(aubio_tempo_t *o)
get the time of the latest beat detected, in samples
void aubio_tempo_do(aubio_tempo_t *o, const fvec_t *input, fvec_t *tempo)
execute tempo detection
unsigned int uint_t
unsigned integer
float smpl_t
short sample format (32 or 64 bits)
aubio_wavetable_t * new_aubio_wavetable(uint_t samplerate, uint_t hop_size)
create new wavetable object
uint_t aubio_wavetable_set_freq(aubio_wavetable_t *o, smpl_t freq)
set wavetable frequency
void aubio_wavetable_do(aubio_wavetable_t *o, const fvec_t *input, fvec_t *output)
process wavetable function
uint_t aubio_wavetable_stop(aubio_wavetable_t *o)
stop wavetable
struct _aubio_wavetable_t aubio_wavetable_t
wavetable object
uint_t aubio_wavetable_play(aubio_wavetable_t *o)
play sample from start
void del_aubio_wavetable(aubio_wavetable_t *o)
destroy aubio_wavetable_t object