Using Java is it possible to capture the speaker output? This output is not being generated by my program but rather by other running applications. Can this be done with Java or will I need to resort to C/C++?

link|improve this question

Regardless of what language you're using, you'll have to first find a library that can do this for you. Then it's just a matter of finding/generating the right language bindings for this library. – casablanca Jul 10 '11 at 23:17
I believe you can only do this with certain hardware. I know some soundblaster live cards support this, but other basic ones do not (particularly the crappier onboard cards). – Steven Jul 10 '11 at 23:40
@casablanca: "you'll have to first find a library that can do this for you." Not Java. Java has had the Java Sound API since the 1.3 release. And if Java Sound fails to do the job (see my answer), it is unlikely that any (Java based) library would succeed, since it would logically be based on the Java Sound API. – Andrew Thompson Jul 10 '11 at 23:45
@Andrew Thompson: I was hinting along the lines of JNI, since there obviously isn't a purely Java-based way to do this. Of course, that would break portability, but that's the only way of doing it in Java. – casablanca Jul 14 '11 at 1:53
feedback

2 Answers

up vote 1 down vote accepted

I had a Java based app. that used Java Sound to tap into the sound flowing through the system to make a trace of it. It worked well on my own (Windows based) machine, but failed completely on some others.

It was determined that in order to get it working on those machines, would take nothing short of an audio loop-back in either software or hardware (e.g. connect a lead from the speaker 'out' jack to the microphone 'in' jack).

Since all I really wanted to do was plot the trace for music, and I figured how to play the target format (MP3) in Java, it became unnecessary to pursue the other option further.

(And I also heard that Java Sound on Mac. was horribly broken, but I never looked closely into it.)

link|improve this answer
feedback

Java is not the best tool when dealing with the OS. If you need/want to use it for this task, probably you will end using Java Native Interface (JNI), linking to libraries compiled in other languages (probably c/c++).

link|improve this answer
Why is Java not the best tool when dealing with OS? – Logan Jul 11 '11 at 4:53
Because the VM is a limit to what can be accessed, and as it is designed to allow compatibility among platforms it does not get into much detail: you cannot edit Windows registry, or use shared memory, send code to run at a GPU... not that you can't do this, but you need to add an external library written in other language using JNI. – SJuan76 Jul 11 '11 at 9:18
feedback

Your Answer

 
or
required, but never shown

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