#include "utils.h"
#define PROG_HAS_PITCH 1
#define PROG_HAS_OUTPUT 1
#define PROG_HAS_SILENCE 1
#define PROG_HAS_JACK 1
#include "parse_args.h"
{
if ( !usejack && ! sink_uri ) return;
if (mix_input)
else
}
void process_print (void)
{
print_time(blocks * hop_size);
outmsg(" %f\n", pitch_found);
}
int main(int argc, char **argv) {
int ret = 0;
buffer_size = 2048;
examples_common_init(argc,argv);
verbmsg ("using source: %s at %dHz\n", source_uri, samplerate);
verbmsg ("pitch method: %s, ", pitch_method);
verbmsg ("pitch unit: %s, ", pitch_unit);
verbmsg ("buffer_size: %d, ", buffer_size);
verbmsg ("hop_size: %d, ", hop_size);
verbmsg ("tolerance: %f\n", pitch_tolerance);
if (o == NULL) { ret = 1; goto beach; }
if (pitch_tolerance != 0.)
if (silence_threshold != -90.)
if (pitch_unit != NULL)
examples_common_process(process_block, process_print);
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
smpl_t aubio_level_lin(const fvec_t *v)
compute sound level on a linear scale
uint_t aubio_pitch_set_unit(aubio_pitch_t *o, const char_t *mode)
set the output unit of the pitch detection object
void aubio_pitch_do(aubio_pitch_t *o, const fvec_t *in, fvec_t *out)
execute pitch detection on an input signal frame
void del_aubio_pitch(aubio_pitch_t *o)
deletion of the pitch detection object
aubio_pitch_t * new_aubio_pitch(const char_t *method, uint_t buf_size, uint_t hop_size, uint_t samplerate)
creation of the pitch detection object
uint_t aubio_pitch_set_tolerance(aubio_pitch_t *o, smpl_t tol)
change yin or yinfft tolerance threshold
struct _aubio_pitch_t aubio_pitch_t
pitch detection object
uint_t aubio_pitch_set_silence(aubio_pitch_t *o, smpl_t silence)
set the silence threshold of the pitch detection object
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
struct _aubio_wavetable_t aubio_wavetable_t
wavetable object
uint_t aubio_wavetable_set_amp(aubio_wavetable_t *o, smpl_t amp)
set wavetable amplitude
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