i'm trying to capture/play audio with java in linux with pulseaudio server.

there's no problem with playing. i can open capture device (microphone) but when calling micro.available returns 0 forever.

any tip ?

audioFormat = new AudioFormat(44100, 16, 2, true, false);
targetInfo = new DataLine.Info(TargetDataLine.class, audioFormat);
sourceInfo = new DataLine.Info(SourceDataLine.class, audioFormat);

targetDataLine = (TargetDataLine) AudioSystem.getTargetDataLine(audioFormat);
targetDataLine.open();
targetDataLine.start();    

sourceDataLine = (SourceDataLine) AudioSystem.getLine(sourceInfo);
sourceDataLine.open(audioFormat);
link|improve this question
The problem is in sun jdk. With openjdk is works nice – Jose Jan 16 at 18:39
1  
You should then note this as an answer and accept it. – Edward Thomson Jan 16 at 19:34
feedback

1 Answer

up vote 0 down vote accepted

The problem is in the sun jdk. With openjdk it works.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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