I'm using the java sound w/ some Tritonus and JavaFx too, for a college project, and I've searched high and low for an answer. Now maybe its so very simple I've been staring at it, but all I want to know is:

How can I intercept the data being sent to the speakers and record it as a file. For instance I want to mix some javafx media player audio streams (and/or java sound audio streams) into one "Wav" file as would be done in a recording studio environment.

Thanks

link|improve this question
feedback

1 Answer

There is Java Sound API. You should look into javax.sound.sampled package: http://docs.oracle.com/javase/1.5.0/docs/api/javax/sound/sampled/package-summary.html

Mixer class allows to find speakers and other devices and receive sound from them as byte array which you can use to achieve your "mix" functionality.

For a start look at the next article: http://www.developer.com/java/other/article.php/1565671/Java-Sound-An-Introduction.htm

link|improve this answer
Thanks I've got that far, but what I really wanted was some code for binary processing where the wav files are mixed (jsresourcess.org) before the sound card. Java sound lets the sound card mix the audio streams. – KEV Feb 18 at 16:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.