Can we use mp3 files for the voice recognition process without using wav files? or can we generate a wav file from a mp3 and then do the voice recognition without a serious impact on the accuracy? The problem is I need to minimize the load transferred through the network in my application. Will the information which is lost in the conversion be a huge factor for accuracy?

link|improve this question

71% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Can we use mp3 files for the voice recognition process without using wav files?

Yes. To be able to recognize mp3 streams, you need to install java plugin to read mp3 (tritonus-mp3)

or can we generate a wav file from a mp3 and then do the voice recognition without a serious impact on the accuracy?

Accuracy is affected in both cases, no matter where you decode mp3 file.

The problem is I need to minimize the load transferred through the network in my application. Will the information which is lost in the conversion be a huge factor for accuracy?

It's better to use losseless codec like flac for transfer. mp3 conversion degrades ASR accuracy. Another approach would be to calculate features on the client and transfer them to the server.

link|improve this answer
thank you. :) Is there a java plugin for flac also? – user1152047 Jan 28 at 19:55
1  
yes, for example jflac.sourceforge.net – Nikolay Shmyrev Jan 28 at 20:33
feedback

Your Answer

 
or
required, but never shown

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