Java Screen Capture Application

I wonder if there is any applet that I can use and configure to capture a user's screen (windows and mac) in java? I saw jxCapture, but it only requires screenshots. I want to use this tool to capture a screen (for a screencast) and then export it in FLV format.

I wonder what is the best solution for this? Is there any applet / sdk that I can and configure?

Thanks.

+3
source share
1 answer

I tried a similar thing, and the problem with java - the problem is that you cannot take screenshots fast enough, I could not even get 1 fps

Java Robot createScreenCapture

+2

Source: https://habr.com/ru/post/1706369/


All Articles