-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbpm.c
319 lines (250 loc) · 6.24 KB
/
bpm.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
/*
* Copyright (C) 2013 Mark Hills <mark@xwax.org>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* version 2, as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License version 2 for more details.
*
* You should have received a copy of the GNU General Public License
* version 2 along with this program; if not, write to the Free
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
*
*/
#include <assert.h>
#include <math.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <sysexits.h>
#include <unistd.h>
#define BANNER "bpm (C) Copyright 2013 Mark Hills <mark@xwax.org>"
#define NAME "bpm"
#define RATE 44100 /* of input data */
#define LOWER 84.0
#define UPPER 146.0
#define BLOCK 4096
#define INTERVAL 128
#define ARRAY_SIZE(x) (sizeof(x) / sizeof(*(x)))
/*
* Sample from the metered energy
*
* No need to interpolate and it makes a tiny amount of difference; we
* take a random sample of samples, any errors are averaged out.
*/
static double sample(float nrg[], size_t len, double offset)
{
double n;
size_t i;
n = floor(offset);
i = (size_t)n;
return (n >= 0.0 && n < (double)len) ? nrg[i] : 0.0;
}
/*
* Test an autodifference for the given interval
*/
double autodifference(float nrg[], size_t len, double interval)
{
size_t n;
double mid, v, diff, total;
static const double beats[] = { -32, -16, -8, -4, -2, -1,
1, 2, 4, 8, 16, 32 },
nobeats[] = { -0.5, -0.25, 0.25, 0.5 };
mid = drand48() * len;
v = sample(nrg, len, mid);
diff = 0.0;
total = 0.0;
for (n = 0; n < ARRAY_SIZE(beats); n++) {
double y, w;
y = sample(nrg, len, mid + beats[n] * interval);
w = 1.0 / fabs(beats[n]);
diff += w * fabs(y - v);
total += w;
}
for (n = 0; n < ARRAY_SIZE(nobeats); n++) {
double y, w;
y = sample(nrg, len, mid + nobeats[n] * interval);
w = fabs(nobeats[n]);
diff -= w * fabs(y - v);
total += w;
}
return diff / total;
}
/*
* Beats-per-minute to a sampling interval in energy space
*/
double bpm_to_interval(double bpm)
{
double beats_per_second, samples_per_beat;
beats_per_second = bpm / 60;
samples_per_beat = RATE / beats_per_second;
return samples_per_beat / INTERVAL;
}
/*
* Sampling interval in enery space to beats-per-minute
*/
double interval_to_bpm(double interval)
{
double samples_per_beat, beats_per_second;
samples_per_beat = interval * INTERVAL;
beats_per_second = (double)RATE / samples_per_beat;
return beats_per_second * 60;
}
/*
* Scan a range of BPM values for the one with the
* minimum autodifference
*/
double scan_for_bpm(float nrg[], size_t len,
double slowest, double fastest,
unsigned int steps,
unsigned int samples,
FILE *file)
{
double step, interval, trough, height;
unsigned int s;
slowest = bpm_to_interval(slowest);
fastest = bpm_to_interval(fastest);
step = (slowest - fastest) / steps;
height = INFINITY;
trough = NAN;
for (interval = fastest; interval <= slowest; interval += step) {
double t;
t = 0.0;
for (s = 0; s < samples; s++)
t += autodifference(nrg, len, interval);
if (file != NULL) {
fprintf(file, "%lf\t%lf\n",
interval_to_bpm(interval),
t / samples);
}
/* Track the lowest value */
if (t < height) {
trough = interval;
height = t;
}
}
return interval_to_bpm(trough);
}
void usage(FILE *f)
{
fputs(BANNER "\n\n", f);
fprintf(f, "Usage: " NAME " [options]\n"
"Analyse the tempo (in beats-per-minute, BPM) of incoming audio\n\n"
" -g <path> Output autodifference data to file\n"
" -e <path> Output energy data to file\n"
" -f Print format for final BPM value (default \"%%0.1f\")\n"
" -m <f> Minimum detected BPM (default %0.0f)\n"
" -x <f> Maximum detected BPM (default %0.0f)\n"
" -v Print progress information to stderr\n"
" -h Display this help message and exit\n\n",
LOWER, UPPER);
fprintf(f, "Incoming audio is raw audio on stdin at %dHz, mono, 32-bit float; eg.\n"
" $ sox file.mp3 -t raw -r %d -e float -c 1 - | ./" NAME "\n\n",
RATE, RATE);
fprintf(f, "To view autodifference or energy data:\n"
" $ sox [...] | " NAME " -g file.dat\n"
" $ gnuplot\n"
" gnuplot> plot \"file.dat\"\n\n");
}
int main(int argc, char *argv[])
{
float *nrg = NULL;
size_t len = 0, buf = 0;
off_t n = 0;
double bpm, min = LOWER, max = UPPER, v = 0.0;
const char *format = "%0.3f";
FILE *fdiff = NULL, *fnrg = NULL;
for (;;) {
int c;
c = getopt(argc, argv, "vf:g:e:m:x:h");
if (c == -1)
break;
switch (c) {
case 'f':
format = optarg;
break;
case 'g':
fdiff = fopen(optarg, "w");
if (fdiff == NULL) {
perror(optarg);
return -1;
}
break;
case 'e':
fnrg = fopen(optarg, "w");
if (fnrg == NULL) {
perror(optarg);
return -1;
}
break;
case 'm':
min = atof(optarg);
break;
case 'x':
max = atof(optarg);
break;
case 'h':
usage(stdout);
return 0;
default:
return EX_USAGE;
}
}
argv += optind;
argc -= optind;
if (argc > 0) {
fprintf(stderr, "%s: Too many arguments\n", NAME);
return EX_USAGE;
}
for (;;) {
float z;
if (fread(&z, sizeof z, 1, stdin) != 1)
break;
/* Maintain an energy meter (similar to PPM) */
z = fabsf(z);
if (z > v) {
v += (z - v) / 8;
} else {
v -= (v - z) / 512;
}
/* At regular intervals, sample the energy to give a
* low-resolution overview of the track */
n++;
if (n != INTERVAL)
continue;
n = 0;
if (len == buf) {
size_t n;
n = buf + BLOCK;
nrg = realloc(nrg, n * sizeof(*nrg));
if (nrg == NULL) {
perror("realloc");
return -1;
}
buf = n;
}
if (fnrg != NULL) {
fprintf(fnrg, "%lf\t%lf\n",
(double)len * INTERVAL / RATE, v);
}
nrg[len++] = v;
}
bpm = scan_for_bpm(nrg, len, min, max, 1024, 1024, fdiff);
printf(format, bpm);
putc('\n', stdout);
free(nrg);
if (fdiff != NULL) {
if (fclose(fdiff) != 0)
perror("fclose");
}
if (fnrg != NULL) {
if (fclose(fnrg) != 0)
perror("fclose");
}
return 0;
}