Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a tool which compares two audio wav files frame by frame and returns a grade which gives the level of similarity between the two files.

I have an original wav file and a recording of the wav file, since the two files are almost similar i should get a high score of similarity, yet i get a poor score, mainly due to a very slight delay in the recorded file-leading to frame mismatch

My question is- how do i go about aligning the two audio files exactly using MATLAB, so that a valid frame to frame comparison may be done.

share|improve this question

1 Answer

up vote 4 down vote accepted

You should run a series of comparisons, shifting one of the frame in time and calculating the correlation between two. Highest value of correlation will give you time shift between waves.

I think you can use xcorr to achieve this.

share|improve this answer
i read both the files using x=wavread(firstfile) and y=wavread(secondfile). xcorr(x,y) gave an out of memory error. how do i rectify that? – arbit Nov 22 '11 at 4:42
Try wavread(firstfile, N) and the same for second file. N is the number of samples from the beginning of the wave. This will reduce the amount of memory needed. Pick N according to wave file length. – anticyclope Nov 22 '11 at 4:54
ya, that makes sense, thanks a lot – arbit Nov 22 '11 at 8:31
If this is too slow, you can use an FFT method to calculate the cross-correlation. – endolith Nov 23 '11 at 15:29
AFAIR xcorr uses FFT internally, though I might be wrong. – anticyclope Nov 24 '11 at 4:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.