Changeset ec45138
- Timestamp:
- Dec 11, 2016, 4:49:47 PM (8 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, sampler, yinfft+
- Children:
- c1333cd
- Parents:
- ab7212f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
examples/aubionotes.c
rab7212f rec45138 70 70 if (notes == NULL) { ret = 1; goto beach; } 71 71 72 if (onset_minioi != 0.) errmsg ("warning: minioio not supported yet\n"); 72 if (onset_minioi != 0.) { 73 errmsg ("warning: onset minioio not supported yet\n"); 74 //aubio_onset_set_minioi_ms(aubio_notes_get_aubio_onset(o), onset_minioi); 75 } 76 if (onset_threshold != 0.) { 77 errmsg ("warning: onset threshold not supported yet\n"); 78 //aubio_onset_set_threshold(aubio_notes_get_aubio_onset(o), onset_threshold); 79 } 80 if (silence_threshold != -90.) { 81 if (aubio_notes_set_silence (notes, silence_threshold) != 0) { 82 errmsg ("failed setting notes silence threshold to %.2f\n", 83 silence_threshold); 84 } 85 } 73 86 74 87 examples_common_process((aubio_process_func_t)process_block, process_print);
Note: See TracChangeset
for help on using the changeset viewer.