我的程序正在将屏幕捕获视频转换为AVI文件,同时还将麦克风的声音录制到WAV文件中。完成后,我想将两者合并为一个文件(所以基本上将WAV文件作为音频添加到视频中)。
我使用以下代码进行屏幕捕获(ScreenRecorder类来自org.monte.screenrecorder):
GraphicsConfiguration gc = GraphicsEnvironment.getLocalGraphicsEnvironment().
getDefaultScreenDevice().getDefaultConfiguration();
Format fileFormat = new Format(MediaTypeKey, MediaType.FILE, MimeTypeKey, MIME_AVI);
Format screenFormat = new Format(MediaTypeKey, MediaType.VIDEO,
EncodingKey, ENCODING_AVI_MJPG,
CompressorNameKey, ENCODING_AVI_MJPG,
DepthKey, (int)24,
FrameRateKey, Rational.valueOf(15),
QualityKey, 1.0f,
KeyFrameIntervalKey, (int) (15 * 60));
Format mouseFormat = new Format(MediaTypeKey, MediaType.VIDEO, EncodingKey,"black",
FrameRateKey, Rational.valueOf(30));
screenRecorder = new ScreenRecorder(gc, fileFormat, screenFormat, mouseFormat, null);
对于录音我是这样做的(所以你可以看到所有的格式,参数等):
float sampleRate = 44100;
int sampleSizeInBits = 16;
int channels = 2;
boolean signed = true;
boolean bigEndian = true;
AudioFormat format new AudioFormat(sampleRate, sampleSizeInBits, channels, signed, bigEndian);
DataLine.Info info = new DataLine.Info(TargetDataLine.class, format);
// checks if system supports the data line
if (!AudioSystem.isLineSupported(info)) {
System.out.println("Line not supported");
System.exit(0);
}
line = (TargetDataLine) AudioSystem.getLine(info);
line.open(format);
line.start(); // start capturing
System.out.println("Start capturing...");
AudioInputStream ais = new AudioInputStream(line);
System.out.println("Start recording...");
// start recording
AudioSystem.write(ais, fileType, wavFile);
我尝试了以下解决方案,但无济于事: JMF(javax.media.Manager,它在createRealizedProcessor死掉) Xuggle(com.xuggle.mediatool和com.xuggle.xuggler)
我很确定它们不起作用,因为它们不喜欢输入格式。
是的,我可以轻松地从命令行或服务器上与FFMPEG合并,但这对我不利,我需要一个客户端JAVA解决方案(不能真的要求用户安装FFMPEG所以我可以用Runtime.getRuntime()。exec或者其他东西来调用它。
答案 0 :(得分:1)
我建议您尝试vlcj
,用于与您类似的目的库。
http://caprica.github.io/vlcj/
您可以尝试同时单独阅读和播放其中两个,或尝试此库为您提供的其他方法。您也可以使用此库执行录制部分。