Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

what would be the best way to detect where the vocals in a song start? I just need the start time for vocals. Extreme precision is not necessary. Speed is more important.

Any clues to papers or algorithms (if such exist) are greatly appreciated.. Also looking for recommendations on which framework / language fits best for this.

share|improve this question
it's human being singing. – Stpn Jun 3 '12 at 23:23
1  
you know human beings can do a vast range of things using their voice, including Beatboxing, Growling, "Normal" Singing, Throat Singing, and even animal voice imitation. All of these could occur during a song, thus potentially being vocals, or not. Of course, this is an interesting question, but please be specific in your question, and also state what your research effort has brought up so far. – moooeeeep Jun 4 '12 at 6:20
valid comment about research. I will definitely update once I get somewhere.. Before getting feedback from answers below, I was thinking of just doing the pitch detection of a human voice frequency (starts from around 85Hz - en.wikipedia.org/wiki/Voice_frequency ). But clearly the links from below can provide more insight into that. As far as vocals, I am interested in any kind of sounds produced by human voice. – Stpn Jun 7 '12 at 19:29

3 Answers

up vote 6 down vote accepted

* SPOILER: ANSWER IS NOT BELOW *

Since I plan to do something similar to this, I did a little research on my own on the subject, and found out that there are some exact numeric techniques that MIGHT be able to do that.

I'll list the references, and let you as the reader decide if that's a right way to go. It all has to do with vocal audio feature extraction, and finding there vocal features ARE in audio data.

You can start here, but it really doesn't lead anywhere, but could be useful to see what are you into :)

http://en.wikipedia.org/wiki/Voice_activity_detection

Then, some articles about speaker recognition:

Here, there is a primer that you need to know about mel frequency cepstral coefficients (MFCC) feature extraction.

http://www.speaker-recognition.org/navAlg.html

Then, for example, this:

http://www.iccce.co.in/Papers/ICCCECE358.pdf

I know that none of them lead directly to the solution to your problem, but at least you'll be able to grasp the size of the monster that you'll be dealing with.

EDIT: frameworks

I use c# for something related to that, and at first I used roll-my-own fft algorithm, then moved to ILNumerics library that uses Intel math library, and later on replaced all that with fftw.

http://ilnumerics.net/ (hm, it was free at a time)

http://software.intel.com/en-us/articles/intel-mkl/ Intel Math Kernel

http://www.fftw.org/ (a simple web page, but BRUTAL performance)

share|improve this answer

The easiest way is obviously having a shifting window and looking at the power of the signal inside the window at each time step with some threshold. If there is signal, the power should be large else it should be small. If you use a bigger window length you will lose precision and if you use a smaller window length, noise will start messing up your results. You may first need to filter the signal with a Wiener Filter in order to get rid of the noise. Another option is STFT. You may look for the human voice components in the STFT (i.e. 60-7000Hz).

share|improve this answer
It won't help. Anything that is in the song is in that frequency range also. – Daniel Mošmondor May 31 '12 at 19:54
just noticed that, I understood the question wrongly.I guess any instrumental voices in the song will lead to spiky components (exact harmonics) So maybe some heuristic analysis can work. – YBE May 31 '12 at 19:58
In fact, not really. Let me dig some materials I've been reading on the subject recently... – Daniel Mošmondor May 31 '12 at 20:02

Examining the signal power won't help for pop music. This is because contemporary pop music is highly compressed. That means that audio level compressors are applied in multiple stages of the production process to make the song appear louder. Refer to the term "loudness war" for more info. For example refer to the song "firework" by Caty Perry. The volume level is nearly constant all over the song.

share|improve this answer
This comment should not be an answer. – Pier-Alexandre Bouchard May 31 '12 at 20:27
@Pier-alexandreBouchard And for that very reason there's a down arrow right over there :) – AndyPerfect May 31 '12 at 20:33
How to downvote when he has no rep whatsoever :) – Daniel Mošmondor May 31 '12 at 20:45
Yes, I just wanted to give Olivier a chance to delete his answer before the downvote.. – Pier-Alexandre Bouchard May 31 '12 at 21:21

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.