I need create an application desktop in Java that can read the desktop and microphone and create a stream of audio/video to export in rtmp or other format.
Asked
Active
Viewed 201 times
-1
-
What research have you done so far? – dbmitch Jun 16 '16 at 18:19
-
I want create a video conference in java :) – Carlos Herrera Jun 17 '16 at 13:46
1 Answers
0
Use this for capturing the Screen:
Robot r = null;
try {
r = new Robot();
} catch (AWTException e) {
e.printStackTrace();
}
BufferedImage img = r.createScreenCapture(GraphicsEnvironment.getLocalGraphicsEnvironment().getMaximumWindowBounds());
This will help you to record the audio.