I have a .mp3 file. How can I seperate the human voice from the rest of the sound in C?

Lazer picture Lazer · Oct 15, 2009 · Viewed 7.4k times · Source

Is it even possible in C [I know it is possible in general -GOM player does it]? just let me get started... What do you say?

How exactly do you identify human voice distinguished from other sounds?

Answer

sharptooth picture sharptooth · Oct 15, 2009

Filters in mp3 players usually rely on the fact that the voice source (the performer) in a stereo recording studio is positioned at the center. So they just compute the difference between the channels. If you give them a recording where the performer is not positioned like that they fail - the voice is not extracted.

The reliable way is employing a voice detector. This is a very complex problem that involves hardcore math and thorough tuning of the algorithms for your specific task. if you go this way you start with reading on voice coding (vocoders).