问题
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.
回答1:
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.
来源:https://stackoverflow.com/questions/31552314/how-to-convert-a-flac-file-to-wav-file-using-java