source: examples/utils.c @ d389e23

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since d389e23 was d389e23, checked in by Paul Brossier <piem@piem.org>, 10 years ago

examples/: build with -Wmissing-declarations

  • Property mode set to 100644
File size: 5.1 KB
Line 
1/*
2  Copyright (C) 2003-2013 Paul Brossier <piem@aubio.org>
3
4  This file is part of aubio.
5
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*/
20
21/**
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
29#include "utils.h"
30#ifdef HAVE_JACK
31#include "jackio.h"
32#endif /* HAVE_JACK */
33
34int verbose = 0;
35int usejack = 0;
36// input / output
37char_t *sink_uri = NULL;
38char_t *source_uri = NULL;
39// general stuff
40uint_t samplerate = 0;
41uint_t buffer_size = 512;
42uint_t hop_size = 256;
43// onset stuff
44char_t * onset_method = "default";
45smpl_t onset_threshold = 0.0; // will be set if != 0.
46// pitch stuff
47char_t * pitch_unit = "default";
48char_t * pitch_method = "default";
49smpl_t pitch_tolerance = 0.0; // will be set if != 0.
50// tempo stuff
51char_t * tempo_method = "default";
52// more general stuff
53smpl_t silence_threshold = -90.;
54uint_t mix_input = 0;
55
56uint_t force_overwrite = 0;
57
58//
59// internal memory stuff
60aubio_source_t *this_source = NULL;
61aubio_sink_t *this_sink = NULL;
62fvec_t *ibuf;
63fvec_t *obuf;
64
65/* settings */
66int blocks = 0;
67
68extern void usage (FILE * stream, int exit_code);
69extern int parse_args (int argc, char **argv);
70
71#if HAVE_JACK
72aubio_jack_t *jack_setup;
73#endif
74
75void examples_common_init (int argc, char **argv);
76void examples_common_del (void);
77void examples_common_process (aubio_process_func_t process_func,
78    aubio_print_func_t print);
79
80void examples_common_init (int argc, char **argv)
81{
82
83  /* parse command line arguments */
84  parse_args (argc, argv);
85
86  if (!usejack) {
87    debug ("Opening files ...\n");
88    this_source = new_aubio_source ((char_t*)source_uri, samplerate, hop_size);
89    if (this_source == NULL) {
90      errmsg ("Error: could not open input file %s\n", source_uri);
91      exit (1);
92    }
93    if (samplerate == 0) {
94      samplerate = aubio_source_get_samplerate(this_source);
95    }
96    if (sink_uri != NULL) {
97      uint_t sink_exists = (access(sink_uri, F_OK) == 0 );
98      if (!force_overwrite && sink_exists) {
99        errmsg ("Error: output file %s already exists, use -f to overwrite.\n",
100            sink_uri);
101        exit (1);
102      }
103      this_sink = new_aubio_sink ((char_t*)sink_uri, samplerate);
104      if (this_sink == NULL) {
105        errmsg ("Error: could not create output file %s\n", sink_uri);
106        exit (1);
107      }
108    }
109#ifdef HAVE_JACK
110  } else {
111    debug ("Jack init ...\n");
112    jack_setup = new_aubio_jack (hop_size, 1, 1, 0, 1);
113    samplerate = aubio_jack_get_samplerate (jack_setup);
114    source_uri = "jack";
115#endif
116  }
117  ibuf = new_fvec (hop_size);
118  obuf = new_fvec (hop_size);
119
120}
121
122void examples_common_del (void)
123{
124  del_fvec (ibuf);
125  del_fvec (obuf);
126  aubio_cleanup ();
127  fflush(stderr);
128  fflush(stdout);
129}
130
131void examples_common_process (aubio_process_func_t process_func,
132    aubio_print_func_t print)
133{
134
135  uint_t read = 0;
136  if (usejack) {
137
138#if HAVE_JACK
139    debug ("Jack activation ...\n");
140    aubio_jack_activate (jack_setup, process_func);
141    debug ("Processing (Ctrl+C to quit) ...\n");
142    pause ();
143    aubio_jack_close (jack_setup);
144#else
145    usage (stderr, 1);
146    outmsg ("Compiled without jack output, exiting.\n");
147#endif
148
149  } else {
150    /* phasevoc */
151    blocks = 0;
152    uint_t total_read = 0;
153
154    do {
155      aubio_source_do (this_source, ibuf, &read);
156      process_func (ibuf, obuf);
157      // print to console if verbose or no output given
158      if (verbose || sink_uri == NULL) {
159        print();
160      }
161      if (this_sink) {
162        aubio_sink_do (this_sink, obuf, hop_size);
163      }
164      blocks++;
165      total_read += read;
166    } while (read == hop_size);
167
168    verbmsg ("read %.2fs (%d samples in %d blocks of %d) from %s at %dHz\n",
169        total_read * 1. / samplerate,
170        total_read, blocks, hop_size, source_uri, samplerate);
171
172    del_aubio_source (this_source);
173    del_aubio_sink   (this_sink);
174
175  }
176}
177
178void
179send_noteon (int pitch, int velo)
180{
181  smpl_t mpitch = floor (aubio_freqtomidi (pitch) + .5);
182#if HAVE_JACK
183  jack_midi_event_t ev;
184  ev.size = 3;
185  ev.buffer = malloc (3 * sizeof (jack_midi_data_t)); // FIXME
186  ev.time = 0;
187  if (usejack) {
188    ev.buffer[2] = velo;
189    ev.buffer[1] = mpitch;
190    if (velo == 0) {
191      ev.buffer[0] = 0x80;      /* note off */
192    } else {
193      ev.buffer[0] = 0x90;      /* note on */
194    }
195    aubio_jack_midi_event_write (jack_setup, (jack_midi_event_t *) & ev);
196  } else
197#endif
198  if (velo == 0) {
199    verbmsg ("%f\n", blocks * hop_size / (float) samplerate);
200  } else {
201    verbmsg ("%f\t%f\t", mpitch, blocks * hop_size / (float) samplerate);
202  }
203}
204
Note: See TracBrowser for help on using the repository browser.