| New Reply |
Finding the strongest beat in a sound wave using autocorrelation |
Share Thread | Thread Tools |
| Nov26-12, 07:01 AM | #1 |
|
|
Finding the strongest beat in a sound wave using autocorrelation
Hi everyone,
I have a sound wave representing a piano piece played at a steady tempo, and would like to get a graph of the saliency of each beat (essentially, a probability distribution for how strong each possible tempo is). I understand that this is done by plotting the autocorrelation function, however I don't quite understand why a graph of r coefficients against each possible lag value (which is, as far as I understand, the deffinition of an autocorrelogram) would have anything to do with beats. The following Matlab code produces a graph that doesn't in any way suggest anything to do with the actual steady beat of the piece (60 BPM): Code:
[y,Fs] = wavread('d:\bach.wav');
[r,lags]=xcorr(y,'coeff');
plot(lags,r)
The MIR toolbox for Matlab has a function specifically for finding the tempo of a waveform - however what I'm after now is understanding these things at a theoretical level. Anticipated thanks for any clarifications!! |
| Nov26-12, 08:24 AM | #2 |
Mentor
|
Alternatively, search for steps in the autocorrelation function, this could help as well. |
| Nov26-12, 09:13 AM | #3 |
|
|
Problem with music is that it can be very subtle. However, to find an 'obvious beat', why not find the short term RMS values (Energy with time) of a long passage and FFT that to find low frequency (sub Hz) energy variations. Some pre-filtering could identify components like cymbal strikes or bass drum beats. (Sound to light 'disco' boxes do this quite well)
|
| Nov26-12, 11:22 AM | #4 |
|
|
Finding the strongest beat in a sound wave using autocorrelation
Thanks for your replies! I'm afraid I still don't fully understand, though, the link between a time signal's (waveform's) periodicity and its autocorrelation function; and, I could also add, the link between the signal's autocorrelation function and its Fourier transform (the latter of which I understand how it relates to pitch but not to rhythm)
|
| Nov26-12, 01:11 PM | #5 |
|
|
I am not sure that the ACF would necessarily reveal the rythm unless there were rhythmic repeats of the same instrument producing a note that was somehow phase consistent? It could be worth while trying with some actual examples of music. |
| Nov26-12, 01:59 PM | #6 |
|
|
Thanks, that's quite helpful, I'll play around with it in Matlab on my own a bit to facilitate intuition :)
|
| Nov26-12, 02:24 PM | #7 |
Recognitions:
|
The autocorrelation for the audio of a complete piano piece probably won't show anything useful.
If you calculate autocorrelations for short "windows" of the data, you might be able to see the CHANGES in frequency content at the start of each new note. But even a single note on a piano is far from being a simple sine wave, and most piano music has several notes at different pitches sounding at the same time, so this isn't going to be easy to see. There are a few commercial computer programs that claim to be able to convert an audio recording into music notation, for example http://www.neuratron.com/audioscore.htm, but they don't work very well for anything except very simple audio, like a single instrument that can only play one note at a time. But it is possible ... http://www.ted.com/talks/john_walker...formances.html |
| Nov26-12, 03:03 PM | #8 |
|
|
If your task is to find a reliable method using DSP and not a brain, it will fall over for some examples, I'm sure. It would depend on how good it needs to be. Good luck and have fun.
|
| Nov27-12, 10:37 PM | #9 |
|
|
better look up "beat detection" which is a similar problem to pitch detection. i would suggest googling jean larouche beat detection without quotes and reading any number of documents this guy wrote.
it ain't an easy problem. |
| Nov28-12, 10:25 AM | #10 |
|
|
|
| New Reply |
| Thread Tools | |
Similar Threads for: Finding the strongest beat in a sound wave using autocorrelation
|
||||
| Thread | Forum | Replies | ||
| Finding the beat frequency | Introductory Physics Homework | 1 | ||
| Beat of sound | General Physics | 2 | ||
| Question on finding the frequency of a sound wave | Introductory Physics Homework | 1 | ||
| Sound Wave Intensity/Sound Level | Introductory Physics Homework | 1 | ||
| Sound problem: Beat frequency | Introductory Physics Homework | 2 | ||