Actually, we need to convert a WMA audio file into FLAC. But there's a lack of ways to convert WMA into more convenient formats. Can you recommend us a library, that can help us, or something like that?
Asked
Active
Viewed 1,838 times
2 Answers
1
What you need is JAVE:
The JAVE (Java Audio Video Encoder) library is Java wrapper on the ffmpeg project. Developers can take take advantage of JAVE to transcode audio and video files from a format to another. In example you can transcode an AVI file to a MPEG one, you can change a DivX video stream into a (youtube like) Flash FLV one, you can convert a WAV audio file to a MP3 or a Ogg Vorbis one, you can separate and transcode audio and video tracks, you can resize videos, changing their sizes and proportions and so on. Many other formats, containers and operations are supported by JAVE.

Eng.Fouad
- 115,165
- 71
- 313
- 417
-
Thanks a lot! That's exactly what we were looking for! – user1531851 Jul 25 '12 at 05:01
-
@user1531851 You're welcome! and I am glad that I could help :) – Eng.Fouad Jul 25 '12 at 05:03