Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have the following problem.

I record a wav file of my speech with my android device. I speak in: "1 2 3 4 5"

I can play the wav file on my pc.

I want to convert the wav file using the library javaFlacEncoder-0.2.3.jar (http://sourceforge.net/projects/javaflacencoder/)

Here is the code I used:

FLAC_FileEncoder ffe = new FLAC_FileEncoder();
ffe.encode(new File("test.wav"), new File("test.flac"));

The flac file is generated and I can open and hear it. The problem is, that the beginning of the audio is cut off somehow. It directly starts with "4 5" instead of "1 2 3 4 5".

So there is some audio from the beginning of the wav file missing.

When I convert the same wav file by using this service: http://audio.online-convert.com/convert-to-flac

I get a flac file back and it is converted correctly ( I hear "1 2 3 4 5", so the whole audio.)

Do you know where the problem could be? Or is there another easy to use library for wav2flac?

Greetings, Subby

share|improve this question
Maybe it's better to convert it in mp3. Read the answer here: stackoverflow.com/questions/3641920/… – rosco Nov 12 '12 at 16:09
Maybe it is better, but useless for me. – Subby Nov 12 '12 at 19:00
1  
javaFlacEncoder depends on javax.sound library, which is not supported in Android. How have you successfully encoded to a FLAC using it? – Calum Murray Mar 2 at 12:47

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.