Is it possible to capture playback sound using Java?

I was wondering if it is possible to capture audio playback on audio output hardware using a simple Java program and then write it to the output stream, for example.

It?

+2
source share
1 answer

If you want to write the output of all programs to this audio device using a java application, for example audiohijackpro, the short answer is no, this is not possible without built-in code. This is actually quite difficult to do in any language. As far as I know, no platform makes this easy.

In some environments, there is a workaround, for example http://cycling74.com/soundflower-landing-page/ , but this requires your end user to collaborate.

0
source

All Articles