I am on creating voice report. The user has to submit his voice report and it should simultaneously encode the audio data using Vorbis encoder. Its working fine but encoding will start after the recording is over.

But I should have to employ the Vorbis encoder on the fly. Please share any sample code it would be much helpful.

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

Be more specific about how you record the audio. Do you just get the wav file or you get chunks of data? If latter, why don't you just feed it to the encoder in real time?

link|improve this answer
i am getting the chunks of data – krishnakumar Sep 9 '09 at 5:10
Then, as I said before, just feed it to the encoder. If vorbis encoder that you use does not support that (the development stopped in 2007) then consider jspeex. It gives much better quality and compression rates for speech. – Denis Tulskiy Sep 9 '09 at 5:50
feedback

Your Answer

 
or
required, but never shown

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