[50bc5f2] | 1 | /* |
---|
[466dff3] | 2 | Copyright (C) 2003-2013 Paul Brossier <piem@aubio.org> |
---|
[96fb8ad] | 3 | |
---|
[50bc5f2] | 4 | This file is part of aubio. |
---|
[96fb8ad] | 5 | |
---|
[50bc5f2] | 6 | aubio is free software: you can redistribute it and/or modify |
---|
| 7 | it under the terms of the GNU General Public License as published by |
---|
| 8 | the Free Software Foundation, either version 3 of the License, or |
---|
| 9 | (at your option) any later version. |
---|
| 10 | |
---|
| 11 | aubio is distributed in the hope that it will be useful, |
---|
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 14 | GNU General Public License for more details. |
---|
| 15 | |
---|
| 16 | You should have received a copy of the GNU General Public License |
---|
| 17 | along with aubio. If not, see <http://www.gnu.org/licenses/>. |
---|
| 18 | |
---|
| 19 | */ |
---|
[96fb8ad] | 20 | |
---|
[9430dfd] | 21 | /** |
---|
[d4c5de7] | 22 | |
---|
| 23 | This file includes some tools common to all examples. Code specific to the |
---|
| 24 | algorithm performed by each program should go in the source file of that |
---|
| 25 | program instead. |
---|
| 26 | |
---|
| 27 | */ |
---|
| 28 | |
---|
[96fb8ad] | 29 | #include "utils.h" |
---|
[1b25a70] | 30 | #ifdef HAVE_JACK |
---|
| 31 | #include "jackio.h" |
---|
| 32 | #endif /* HAVE_JACK */ |
---|
[96fb8ad] | 33 | |
---|
[bd2f2ab] | 34 | int verbose = 0; |
---|
[466dff3] | 35 | int usejack = 0; |
---|
[1b25a70] | 36 | // input / output |
---|
| 37 | char_t *sink_uri = NULL; |
---|
| 38 | char_t *source_uri = NULL; |
---|
| 39 | // general stuff |
---|
| 40 | uint_t samplerate = 0; |
---|
| 41 | uint_t buffer_size = 512; |
---|
[466dff3] | 42 | uint_t hop_size = 256; |
---|
[1b25a70] | 43 | // onset stuff |
---|
| 44 | char_t * onset_method = "default"; |
---|
| 45 | smpl_t onset_threshold = 0.0; // will be set if != 0. |
---|
[ab7212f] | 46 | smpl_t onset_minioi = 0.0; // will be set if != 0. |
---|
[1b25a70] | 47 | // pitch stuff |
---|
[d4c5de7] | 48 | char_t * pitch_unit = "default"; |
---|
[1b25a70] | 49 | char_t * pitch_method = "default"; |
---|
| 50 | smpl_t pitch_tolerance = 0.0; // will be set if != 0. |
---|
[340cb93] | 51 | // time stuff |
---|
[df7be43] | 52 | uint_t time_format = 0; // for "seconds", 1 for "ms", 2 for "samples" |
---|
[1b25a70] | 53 | // tempo stuff |
---|
[a559796] | 54 | char_t * tempo_method = "default"; |
---|
[1b25a70] | 55 | // more general stuff |
---|
[ce6186a] | 56 | smpl_t silence_threshold = -90.; |
---|
[a07fdb4] | 57 | smpl_t release_drop = 10.; |
---|
[1b25a70] | 58 | uint_t mix_input = 0; |
---|
[50bc5f2] | 59 | |
---|
[0a509c6] | 60 | uint_t force_overwrite = 0; |
---|
| 61 | |
---|
[1b25a70] | 62 | // |
---|
| 63 | // internal memory stuff |
---|
[5a66677] | 64 | aubio_source_t *this_source = NULL; |
---|
| 65 | aubio_sink_t *this_sink = NULL; |
---|
[faf2702] | 66 | fvec_t *input_buffer; |
---|
| 67 | fvec_t *output_buffer; |
---|
[96fb8ad] | 68 | |
---|
[2293d6a] | 69 | smpl_t miditap_note = 69.; |
---|
| 70 | smpl_t miditap_velo = 65.; |
---|
| 71 | |
---|
[1b25a70] | 72 | /* settings */ |
---|
[466dff3] | 73 | int blocks = 0; |
---|
[50bc5f2] | 74 | |
---|
[1b25a70] | 75 | extern void usage (FILE * stream, int exit_code); |
---|
| 76 | extern int parse_args (int argc, char **argv); |
---|
[96fb8ad] | 77 | |
---|
[466dff3] | 78 | #if HAVE_JACK |
---|
[f7771c6] | 79 | #define MAX_MIDI_EVENTS 128 |
---|
[8ba682a] | 80 | #define MAX_MIDI_EVENT_SIZE 3 |
---|
[466dff3] | 81 | aubio_jack_t *jack_setup; |
---|
[8f0db97] | 82 | jack_midi_event_t ev; |
---|
[8ba682a] | 83 | jack_midi_data_t midi_data[MAX_MIDI_EVENTS * MAX_MIDI_EVENT_SIZE]; |
---|
[f7771c6] | 84 | size_t midi_event_count = 0; |
---|
[7585822] | 85 | #endif /* HAVE_JACK */ |
---|
[466dff3] | 86 | |
---|
[d389e23] | 87 | void examples_common_init (int argc, char **argv); |
---|
| 88 | void examples_common_del (void); |
---|
| 89 | void examples_common_process (aubio_process_func_t process_func, |
---|
| 90 | aubio_print_func_t print); |
---|
| 91 | |
---|
| 92 | void examples_common_init (int argc, char **argv) |
---|
[50bc5f2] | 93 | { |
---|
[bd2f2ab] | 94 | |
---|
| 95 | /* parse command line arguments */ |
---|
[50bc5f2] | 96 | parse_args (argc, argv); |
---|
[bd2f2ab] | 97 | |
---|
[50bc5f2] | 98 | if (!usejack) { |
---|
| 99 | debug ("Opening files ...\n"); |
---|
[466dff3] | 100 | this_source = new_aubio_source ((char_t*)source_uri, samplerate, hop_size); |
---|
[5a66677] | 101 | if (this_source == NULL) { |
---|
[4d733b5] | 102 | errmsg ("Error: could not open input file %s\n", source_uri); |
---|
[50bc5f2] | 103 | exit (1); |
---|
[9af07aa] | 104 | } |
---|
[466dff3] | 105 | if (samplerate == 0) { |
---|
| 106 | samplerate = aubio_source_get_samplerate(this_source); |
---|
| 107 | } |
---|
[5a66677] | 108 | if (sink_uri != NULL) { |
---|
[0a509c6] | 109 | uint_t sink_exists = (access(sink_uri, F_OK) == 0 ); |
---|
| 110 | if (!force_overwrite && sink_exists) { |
---|
[4d733b5] | 111 | errmsg ("Error: output file %s already exists, use -f to overwrite.\n", |
---|
[0a509c6] | 112 | sink_uri); |
---|
| 113 | exit (1); |
---|
| 114 | } |
---|
[5a66677] | 115 | this_sink = new_aubio_sink ((char_t*)sink_uri, samplerate); |
---|
[88fc249] | 116 | if (this_sink == NULL) { |
---|
[4d733b5] | 117 | errmsg ("Error: could not create output file %s\n", sink_uri); |
---|
[88fc249] | 118 | exit (1); |
---|
| 119 | } |
---|
[5a66677] | 120 | } |
---|
[466dff3] | 121 | #ifdef HAVE_JACK |
---|
| 122 | } else { |
---|
| 123 | debug ("Jack init ...\n"); |
---|
| 124 | jack_setup = new_aubio_jack (hop_size, 1, 1, 0, 1); |
---|
| 125 | samplerate = aubio_jack_get_samplerate (jack_setup); |
---|
| 126 | source_uri = "jack"; |
---|
[7585822] | 127 | #endif /* HAVE_JACK */ |
---|
[bd2f2ab] | 128 | } |
---|
[faf2702] | 129 | input_buffer = new_fvec (hop_size); |
---|
| 130 | output_buffer = new_fvec (hop_size); |
---|
[bd2f2ab] | 131 | |
---|
| 132 | } |
---|
| 133 | |
---|
[d389e23] | 134 | void examples_common_del (void) |
---|
[50bc5f2] | 135 | { |
---|
[faf2702] | 136 | del_fvec (input_buffer); |
---|
| 137 | del_fvec (output_buffer); |
---|
[50bc5f2] | 138 | aubio_cleanup (); |
---|
[466dff3] | 139 | fflush(stderr); |
---|
| 140 | fflush(stdout); |
---|
[bd2f2ab] | 141 | } |
---|
| 142 | |
---|
[d389e23] | 143 | void examples_common_process (aubio_process_func_t process_func, |
---|
[50bc5f2] | 144 | aubio_print_func_t print) |
---|
| 145 | { |
---|
[5a66677] | 146 | |
---|
| 147 | uint_t read = 0; |
---|
[50bc5f2] | 148 | if (usejack) { |
---|
[ebbf5a0] | 149 | |
---|
[7585822] | 150 | #ifdef HAVE_JACK |
---|
[8ba682a] | 151 | ev.size = MAX_MIDI_EVENT_SIZE; |
---|
[8f0db97] | 152 | ev.time = 0; // send it now |
---|
[50bc5f2] | 153 | debug ("Jack activation ...\n"); |
---|
[466dff3] | 154 | aubio_jack_activate (jack_setup, process_func); |
---|
[50bc5f2] | 155 | debug ("Processing (Ctrl+C to quit) ...\n"); |
---|
| 156 | pause (); |
---|
| 157 | aubio_jack_close (jack_setup); |
---|
[7585822] | 158 | #else /* HAVE_JACK */ |
---|
[50bc5f2] | 159 | usage (stderr, 1); |
---|
| 160 | outmsg ("Compiled without jack output, exiting.\n"); |
---|
[7585822] | 161 | #endif /* HAVE_JACK */ |
---|
[bd2f2ab] | 162 | |
---|
| 163 | } else { |
---|
[5cc88f7] | 164 | |
---|
[466dff3] | 165 | uint_t total_read = 0; |
---|
[fe87823] | 166 | blocks = 0; |
---|
[bd2f2ab] | 167 | |
---|
[5a66677] | 168 | do { |
---|
[faf2702] | 169 | aubio_source_do (this_source, input_buffer, &read); |
---|
| 170 | process_func (input_buffer, output_buffer); |
---|
[466dff3] | 171 | // print to console if verbose or no output given |
---|
| 172 | if (verbose || sink_uri == NULL) { |
---|
| 173 | print(); |
---|
| 174 | } |
---|
[5a66677] | 175 | if (this_sink) { |
---|
[faf2702] | 176 | aubio_sink_do (this_sink, output_buffer, hop_size); |
---|
[bd2f2ab] | 177 | } |
---|
[466dff3] | 178 | blocks++; |
---|
| 179 | total_read += read; |
---|
| 180 | } while (read == hop_size); |
---|
[bd2f2ab] | 181 | |
---|
[2c31bb6] | 182 | verbmsg ("read %.2fs (%d samples in %d blocks of %d) from %s at %dHz\n", |
---|
| 183 | total_read * 1. / samplerate, |
---|
[466dff3] | 184 | total_read, blocks, hop_size, source_uri, samplerate); |
---|
[e24378a] | 185 | |
---|
[5a66677] | 186 | del_aubio_source (this_source); |
---|
| 187 | del_aubio_sink (this_sink); |
---|
[bd2f2ab] | 188 | |
---|
| 189 | } |
---|
| 190 | } |
---|
| 191 | |
---|
[50bc5f2] | 192 | void |
---|
[9562f08] | 193 | send_noteon (smpl_t pitch, smpl_t velo) |
---|
[bd2f2ab] | 194 | { |
---|
[7585822] | 195 | #ifdef HAVE_JACK |
---|
[50bc5f2] | 196 | if (usejack) { |
---|
[8ba682a] | 197 | ev.buffer = midi_data + midi_event_count++ * MAX_MIDI_EVENT_SIZE; |
---|
[f7771c6] | 198 | if (midi_event_count >= MAX_MIDI_EVENTS) { |
---|
| 199 | midi_event_count = 0; |
---|
| 200 | } |
---|
[ebbf5a0] | 201 | ev.buffer[2] = velo; |
---|
[9562f08] | 202 | ev.buffer[1] = pitch; |
---|
[50bc5f2] | 203 | if (velo == 0) { |
---|
[ebbf5a0] | 204 | ev.buffer[0] = 0x80; /* note off */ |
---|
[50bc5f2] | 205 | } else { |
---|
[ebbf5a0] | 206 | ev.buffer[0] = 0x90; /* note on */ |
---|
[50bc5f2] | 207 | } |
---|
[ebbf5a0] | 208 | aubio_jack_midi_event_write (jack_setup, (jack_midi_event_t *) & ev); |
---|
[50bc5f2] | 209 | } else |
---|
[bd2f2ab] | 210 | #endif |
---|
[466dff3] | 211 | if (velo == 0) { |
---|
[340cb93] | 212 | print_time (blocks * hop_size); |
---|
| 213 | outmsg ("\n"); |
---|
[466dff3] | 214 | } else { |
---|
[9562f08] | 215 | outmsg ("%f\t", pitch); |
---|
[340cb93] | 216 | print_time (blocks * hop_size); |
---|
| 217 | outmsg ("\t"); |
---|
[50bc5f2] | 218 | } |
---|
[bd2f2ab] | 219 | } |
---|
| 220 | |
---|
[340cb93] | 221 | void print_time (uint_t time_in_samples) { |
---|
| 222 | /* output times in selected format */ |
---|
[df7be43] | 223 | if (time_format == 2) { |
---|
[340cb93] | 224 | outmsg ("%d", time_in_samples); |
---|
[df7be43] | 225 | } else if (time_format == 1) { |
---|
[340cb93] | 226 | outmsg ("%f", 1000. * time_in_samples / (float) samplerate); |
---|
| 227 | } else { |
---|
| 228 | outmsg ("%f", time_in_samples / (float) samplerate); |
---|
| 229 | } |
---|
| 230 | } |
---|