我正在使用Java monte屏幕录像机 jar 文件来在执行Java代码时记录我的屏幕
这是我的代码:
import static org.monte.media.FormatKeys.EncodingKey;
import static org.monte.media.FormatKeys.FrameRateKey;
import static org.monte.media.FormatKeys.KeyFrameIntervalKey;
import static org.monte.media.FormatKeys.MIME_AVI;
import static org.monte.media.FormatKeys.MediaTypeKey;
import static org.monte.media.FormatKeys.MimeTypeKey;
import static org.monte.media.VideoFormatKeys.CompressorNameKey;
import static org.monte.media.VideoFormatKeys.DepthKey;
import static org.monte.media.VideoFormatKeys.ENCODING_AVI_TECHSMITH_SCREEN_CAPTURE;
import static org.monte.media.VideoFormatKeys.QualityKey;
import java.awt.AWTException;
import java.awt.GraphicsEnvironment;
import java.io.File;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.Date;
import org.monte.media.Format;
import org.monte.media.Registry;
import org.monte.media.FormatKeys.MediaType;
import org.monte.media.math.Rational;
import org.monte.screenrecorder.ScreenRecorder;
public class MonteRecorder extends ScreenRecorder {
private File movieFolder;
private String name;
public MonteRecorder(String name, File movieFolder) throws IOException, AWTException {
super(GraphicsEnvironment.getLocalGraphicsEnvironment().getDefaultScreenDevice()
.getDefaultConfiguration(),
new Format(MediaTypeKey, MediaType.FILE, MimeTypeKey, MIME_AVI),
new Format(MediaTypeKey, MediaType.VIDEO, EncodingKey, ENCODING_AVI_TECHSMITH_SCREEN_CAPTURE,
CompressorNameKey, ENCODING_AVI_TECHSMITH_SCREEN_CAPTURE, DepthKey, 24, FrameRateKey,
Rational.valueOf(15), QualityKey, 1.0f, KeyFrameIntervalKey, 15 * 60),
new Format(MediaTypeKey, MediaType.VIDEO, EncodingKey, "black", FrameRateKey, Rational.valueOf(30)),
null);
/* output format for audio - null == no audio */
this.movieFolder = movieFolder;
this.name = name;
}
@Override
protected File createMovieFile(Format fileFormat) throws IOException {
if (!movieFolder.exists()) {
movieFolder.mkdirs();
} else if (!movieFolder.isDirectory()) {
throw new IOException("\"" + movieFolder + "\" is not a directory.");
}
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd 'at' HH.mm.ss");
File f = new File(movieFolder, //
"Scenario - " + name + " - " +dateFormat.format(new Date()) + "."
+ Registry.getInstance().getExtension(fileFormat));
return f;
}
}
文件类型为.avi,创建成功。 但是当尝试使用VLC媒体播放器打开它时,出现以下错误消息:
该文件无法播放。这可能是因为文件类型不受支持,文件扩展名不正确或文件已损坏。 0xc00d36c4
注意:该代码在几周前已成功运行,但我并未对其进行持续的测试。
为了修复它,我试图将格式参数更改为MP4或quicktime(.mov)文件,但都无法打开。
如果有人知道另一个可以记录屏幕的Maven库,这将是有帮助的(带有代码示例)。
答案 0 :(得分:0)
发生此问题是因为o在屏幕记录结束时确实注意到调用了stop方法。 使用以下代码开始之前的屏幕录像:
ScreenRecorder screenRecorder = new MonteRecorder(videoName, new File(path));
this.screenRecorder.start();
为解决此问题,我应该添加
this.screenRecorder.stop();
在方案末尾。
添加后,使用VLC媒体播放器按预期开始创建的视频。