javawavencoderdecoderflac

How to convert a FLAC file to WAV file using java?


I want to convert a given flac file to a wav file. Most of the questions on StackOverflow are the opposite of my question. Have anyone an idea how to solve this problem ? I heard something about JavaFlacEncoder link but I could not find a method to convert flac to wave.


Solution

  • Use flac -d to (from the man page)

    Decode (the default behavior is to encode)
    

    Another option would be the JustFLAC library, again you need to decode from FLAC. WAV is uncompressed audio.