Beats per minute from real-time audio input - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T23:38:56Zhttp://stackoverflow.com/feeds/question/79445http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/79445/beats-per-minute-from-real-time-audio-input8Beats per minute from real-time audio inputKarl2008-09-17T02:51:13Z2009-05-31T00:17:18Z
<p>I'd like to write a simple C# application to monitor the line-in audio and give me the current (well, the rolling average) beats per minute.</p>
<p>I've seen <a href="http://www.gamedev.net/reference/programming/features/beatdetection/" rel="nofollow">this gamedev article</a>, and that was absolutely no help. I went through and tried to implement what he was doing but it just wasn't working.</p>
<p>I know there have to be tons of solutions for this, because lots of DJ software does it, but I'm not having any luck in finding any open-source library or instructions on doing it myself.</p>
http://stackoverflow.com/questions/79445/beats-per-minute-from-real-time-audio-input/79480#794803Answer by Thomas for Beats per minute from real-time audio inputThomas2008-09-17T02:57:55Z2008-09-17T02:57:55Z<p>This is by no means an easy problem. I'll try to give you an overview only.</p>
<p>What you could do is something like the following:</p>
<ol>
<li>Compute the average (root-mean-square) loudness of the signal over blocks of, say, 5 milliseconds. (Having never done this before, I don't know what a good block size would be.)</li>
<li>Take the Fourier transform of the "blocked" signal, using the FFT algorithm.</li>
<li>Find the component in the transformed signal that has the largest magnitude.</li>
</ol>
<p>A Fourier transform is basically a way of computing the strength of all frequencies present in the signal. If you do that over the "blocked" signal, the frequency of the beat will hopefully be the strongest one.</p>
<p>Maybe you need to apply a filter first, to focus on specific frequencies (like the bass) that usually contain the most information about the BPM.</p>
http://stackoverflow.com/questions/79445/beats-per-minute-from-real-time-audio-input/79504#795040Answer by Karl for Beats per minute from real-time audio inputKarl2008-09-17T03:00:42Z2008-09-17T03:00:42Z<p>And that's the problem... that's what the article went over. But changing that into working code is where I have the problems. I was using an FFT and what was supposed to have been an energy-finding algorithm, but I wasn't getting results that made any sense at all.</p>
http://stackoverflow.com/questions/79445/beats-per-minute-from-real-time-audio-input/79532#795323Answer by Dan Harper - Leopard CRM for Beats per minute from real-time audio inputDan Harper - Leopard CRM2008-09-17T03:04:18Z2008-09-17T03:04:18Z<p>Not that I have a clue how to implement this, but from an audio engineering perspective you'd need to filter first. Bass drum hits would be the first to check. A low pass filter that gives you anything under about 200Hz should give you a pretty clear picture of the bass drum. A gate might also be necessary to cleanup any clutter from other instruments with harmonics that low.</p>
<p>The next to check would be snare hits. You'd have to EQ this one. The "crack" from a snare is around 1.5kHz from memory, but you'd need to definitely gate this one.</p>
<p>The next challenge would be to work out an algorithm for funky beats. How would you programatically find beat 1? I guess you'd keep track of previous beats and use a pattern matching something-or-other. So, you'd probably need a few bars to accurately find the beat. Then there's timing issues like 4/4, 3/4, 6/8, wow, I can't imagine what would be required to do this accurately! I'm sure it'd be worth some serious money to audio hardware/software companies.</p>
http://stackoverflow.com/questions/79445/beats-per-minute-from-real-time-audio-input/79544#795441Answer by Karl for Beats per minute from real-time audio inputKarl2008-09-17T03:07:13Z2008-09-17T03:07:13Z<p>This is the article I had been reading: <a href="http://www.gamedev.net/reference/programming/features/beatdetection/" rel="nofollow">http://www.gamedev.net/reference/programming/features/beatdetection/</a></p>
http://stackoverflow.com/questions/79445/beats-per-minute-from-real-time-audio-input/81355#813550Answer by andy for Beats per minute from real-time audio inputandy2008-09-17T09:11:32Z2008-09-17T09:11:32Z<p>@<a href="#79480" rel="nofollow">Thomas</a>:</p>
<ol>
<li>Compute the average (root-mean-square) loudness of the signal over blocks of, say, 5 milliseconds. (Having never done this before, I don't know what a good block size would be.)</li>
<li>Take the Fourier transform of the "blocked" signal, using the FFT algorithm.</li>
<li>Find the component in the transformed signal that has the largest magnitude.</li>
</ol>
<p>I can't really see why you rms signal first, and why it is done on blocks (as FFT usually works on windows of the signal anyway). Further more the FFT would give you the signal shifted into an energy-time domain so that is really the same as the first step.</p>
<p>Disclaimer is that I haven't done this either and haven't really thought this through properly yet, but depending on how advanced you'd want this algorithm to be. The lowest level implementation that might work (depending on type of music) is just looking at RMS and timing the signal peak-to-peak. For music with typical heavy beats (ie. most "modern" music) this could potentially work. As other people wrote, passing it through a low-pass filter first might improve the results.</p>
http://stackoverflow.com/questions/79445/beats-per-minute-from-real-time-audio-input/81462#814625Answer by Nick Johnson for Beats per minute from real-time audio inputNick Johnson2008-09-17T09:30:33Z2008-09-17T09:30:33Z<p>There's an excellent project called Dancing Monkeys, which procedurally generates DDR dance steps from music. A large part of what it does is based on (necessarily very accurate) beat analysis, and their project paper goes into much detail describing the various beat detection algorithms and their suitability to the task. They include references to the original papers for each of the algorithms. They've also published the matlab code for their solution. I'm sure that between those you can find what you need.</p>
<p>It's all available here: <a href="http://monket.net/dancing-monkeys-v2/Main_Page" rel="nofollow">http://monket.net/dancing-monkeys-v2/Main_Page</a></p>
http://stackoverflow.com/questions/79445/beats-per-minute-from-real-time-audio-input/81666#8166611Answer by Hallgrim for Beats per minute from real-time audio inputHallgrim2008-09-17T10:06:17Z2008-09-17T10:06:17Z<p>Calculate a powerspectrum with a sliding window FFT:
Take 1024 samples: </p>
<pre><code>double[] signal = stream.Take(1024);
</code></pre>
<p>Feed it to an FFT algorithm: </p>
<pre><code>double[] real = new double[signal.Length];
double[] imag = new double[signal.Length);
FFT(signal, out real, out imag);
</code></pre>
<p>You will get a real part and an imaginary part. Throw away the imaginary part. It is the phase and you do not need it.</p>
<p>Calculate the power as opposed to the amplitude so that you have a high number when it is loud and close to zero when it is quiet:</p>
<pre><code>for (i=0; i < real.Length; i++) real[i] = real[i] * real[i];
</code></pre>
<p>Now you have a power spectrum for the last 1024 samples. Where the first part of the spectrum is the low frequencies and the last part of the spectrum is the high
frequencies. </p>
<p>If you want to find BPM in popular music you should probably focus on the bass. You can pick up the bass intensity by summing the lower part of the power spectrum. Which numbers to use depends on the sampling frequency:</p>
<pre><code>double bassIntensity = 0;
for (i=8; i < 96; i++) bassIntensity += real[i];
</code></pre>
<p>Now do the same again but move the window 256 samples before you calculate a new spectrum. Now you end up with calculating the bassIntensity for every 256 samples. </p>
<p>This is a good input for your BPM analysis. When the bass is quiet you do not have a beat and when it is loud you have a beat. </p>
<p>Good luck!</p>
http://stackoverflow.com/questions/79445/beats-per-minute-from-real-time-audio-input/87607#876070Answer by roesslerj for Beats per minute from real-time audio inputroesslerj2008-09-17T20:58:43Z2008-09-17T20:58:43Z<p>I agree with Thomas, that this is absolutly no easy question. As far as I know there is no API for this yet. </p>
<p>But the <a href="http://www.music-ir.org/mirex/2006/index.php/Audio_Beat_Tracking" rel="nofollow">Mirex 2006</a> has pretty much solved that problem, at least from a scientific point of view. Maybe you find something interesting there?</p>
http://stackoverflow.com/questions/79445/beats-per-minute-from-real-time-audio-input/108931#1089311Answer by Sacha for Beats per minute from real-time audio inputSacha2008-09-20T18:31:01Z2008-09-20T18:31:01Z<p>Another article that might be interesting for you...</p>
<p><a href="http://werner.yellowcouch.org/Papers/bpm04/" rel="nofollow">http://werner.yellowcouch.org/Papers/bpm04/</a></p>
<p>You can find existing BPM detection libraries here:</p>
<p><a href="http://www.mmartins.com/mmartins/bpmdetection/bpmdetection.asp" rel="nofollow">http://www.mmartins.com/mmartins/bpmdetection/bpmdetection.asp</a></p>
<p>...and a C# BPM detection library here: </p>
<p><a href="http://adionsoft.net/bpm/" rel="nofollow">http://adionsoft.net/bpm/</a></p>
http://stackoverflow.com/questions/79445/beats-per-minute-from-real-time-audio-input/668127#6681271Answer by Lucius Kwok for Beats per minute from real-time audio inputLucius Kwok2009-03-20T21:44:14Z2009-03-20T21:44:14Z<p>The easy way to do it is to have the user tap a button in rhythm with the beat, and count the number of taps divided by the time.</p>
http://stackoverflow.com/questions/79445/beats-per-minute-from-real-time-audio-input/930898#9308981Answer by Led for Beats per minute from real-time audio inputLed2009-05-30T23:58:41Z2009-05-30T23:58:41Z<p>2 names :</p>
<p>Eric D. Scheirer<br />
Masataka Goto</p>
<p>Google them, they have written about beat detection (realtime and offline) in great length.
Very interesting material.</p>
<p>Also as a sidenote, I think besides beat-detection you might be interested in beat-<em>prediction</em>.</p>