I need to make a simple app in java, that capture some audio from microphone, and save it in file, using FLAC. I found tutorial : http://www.developer.com/java/other/article.php/2105421/Java-Sound-Capturing-Microphone-Data-into-an-Audio-File.htm , but I need save file in flac audio, so I added jFLAC library, and I'm simply doing:
AudioSystem.write(new AudioInputStream(targetDataLine), FlacFileFormatType.FLAC, new File("junk.flac"));
but I get an exception :
java.lang.IllegalArgumentException: could not write audio file: file type not supported: FLAC
at javax.sound.sampled.AudioSystem.write(AudioSystem.java:1346)
at pl.com.stream.snippet.concurentmap_test.AudioRecorder02$CaptureThread.run(AudioRecorder02.java:211)
Is there any example or tutorial, that shows, how to save audio file in flac format in Java?