Search code examples
c#cpu-wordmp3extract

Read words from mp3 file with C#


I want to write a program that will take a mp3 file as a input and output will be the words that are available in that mp3 file. For example, I have a file name test.mp3, that contains some sentences (e.g. how are you? I am fine. What is your name?), now I want to parse the mp3 file so that I can get all words/sentence that are available in test.mp3 file. I prefer .NET(c#) code.

If file format is .wav, then It is okay for me.

Please help me about the issue.

-Thanks, Arefin


Solution

  • Have a look at http://msdn.microsoft.com/en-us/library/system.speech.recognition.aspx . Maybe you'll find something there.