我有一个Java swing GUI程序,每秒可以渲染1到25帧.
它只有一个窗口,只有一个面板可以完成所有渲染,例如没有其他Swing组件.
我需要能够在运行时生成我的程序的测试运行视频.问题是常规屏幕投射工具(例如我在运行我的代码之前启动的第三方应用程序)经常会错过我的一些框架,我需要一个准确的视频.
我知道如何使用Robot类来捕获我的Java窗口的屏幕截图,但是当我运行时,我不可能将它们保存到磁盘,它会使所有内容减慢太多.有没有办法让我在运行程序的同时使用Robot类(或者其他一些代码)来动态创建窗口的视频?
谢谢!
最佳答案
您可以在Java-Xuggler和内置Java Robot类中使用ffmpeg包装器.以下是Xuggler的示例代码.
原文链接:https://www.f2er.com/java/437626.htmlfinal Robot robot = new Robot();
final Toolkit toolkit = Toolkit.getDefaultToolkit();
final Rectangle screenBounds = new Rectangle(toolkit.getScreenSize());
// First,let's make a IMediaWriter to write the file.
final IMediaWriter writer = ToolFactory.makeWriter("output.mp4");
// We tell it we're going to add one video stream,with id 0,// at position 0,and that it will have a fixed frame rate of
// FRAME_RATE.
writer.addVideoStream(0,FRAME_RATE,screenBounds.width,screenBounds.height);
// Now,we're going to loop
long startTime = System.nanoTime();
for (int index = 0; index < SECONDS_TO_RUN_FOR*FRAME_RATE.getDouble(); index++)
{
// take the screen shot
BufferedImage screen = robot.createScreenCapture(screenBounds);
// convert to the right image type
BufferedImage bgrScreen = convertToType(screen,BufferedImage.TYPE_3BYTE_BGR);
// encode the image to stream #0
writer.encodeVideo(0,bgrScreen,System.nanoTime()-startTime,TimeUnit.NANOSECONDS);
System.out.println("encoded image: " +index);
// sleep for framerate milliseconds
Thread.sleep((long) (1000 / FRAME_RATE.getDouble()));
}
// Finally we tell the writer to close and write the trailer if
// needed
writer.close();
另一种选择是Screentoaster网站 – 但我要注意它提供的帧速率.