Go to the source code of this file.
Typedefs | |
| typedef struct _aubio_notes_t | aubio_notes_t |
| notes detection object | |
Functions | |
| aubio_notes_t * | new_aubio_notes (const char_t *method, uint_t buf_size, uint_t hop_size, uint_t samplerate) |
| create notes detection object | |
| void | del_aubio_notes (aubio_notes_t *o) |
| delete notes detection object | |
| void | aubio_notes_do (aubio_notes_t *o, const fvec_t *input, fvec_t *output) |
| execute note detection on an input signal frame | |
| uint_t | aubio_notes_set_silence (aubio_notes_t *o, smpl_t silence) |
| set notes detection silence threshold | |
| smpl_t | aubio_notes_get_silence (const aubio_notes_t *o) |
| get notes detection silence threshold | |
| smpl_t | aubio_notes_get_minioi_ms (const aubio_notes_t *o) |
| get notes detection minimum inter-onset interval, in millisecond | |
| uint_t | aubio_notes_set_minioi_ms (aubio_notes_t *o, smpl_t minioi_ms) |
| set notes detection minimum inter-onset interval, in millisecond | |
Definition in file notes.h.
| void aubio_notes_do | ( | aubio_notes_t * | o, | |
| const fvec_t * | input, | |||
| fvec_t * | output | |||
| ) |
execute note detection on an input signal frame
| o | note detection object as returned by new_aubio_notes() | |
| input | input signal of size [hop_size] | |
| output | output notes, fvec of length 3 |
| smpl_t aubio_notes_get_minioi_ms | ( | const aubio_notes_t * | o | ) |
get notes detection minimum inter-onset interval, in millisecond
| o | notes detection object as returned by new_aubio_notes() |
| smpl_t aubio_notes_get_silence | ( | const aubio_notes_t * | o | ) |
get notes detection silence threshold
| o | notes detection object as returned by new_aubio_notes() |
| uint_t aubio_notes_set_minioi_ms | ( | aubio_notes_t * | o, | |
| smpl_t | minioi_ms | |||
| ) |
set notes detection minimum inter-onset interval, in millisecond
| o | notes detection object as returned by new_aubio_notes() | |
| minioi_ms | new inter-onset interval |
| uint_t aubio_notes_set_silence | ( | aubio_notes_t * | o, | |
| smpl_t | silence | |||
| ) |
set notes detection silence threshold
| o | notes detection object as returned by new_aubio_notes() | |
| silence | new silence detection threshold |
| void del_aubio_notes | ( | aubio_notes_t * | o | ) |
delete notes detection object
| o | notes detection object to delete |
| aubio_notes_t* new_aubio_notes | ( | const char_t * | method, | |
| uint_t | buf_size, | |||
| uint_t | hop_size, | |||
| uint_t | samplerate | |||
| ) |
create notes detection object
| method | notes detection type as specified in specdesc.h | |
| buf_size | buffer size for phase vocoder | |
| hop_size | hop size for phase vocoder | |
| samplerate | sampling rate of the input signal |
1.5.6