直接上代码,pom参考上一篇,
直接上代码
import org.bytedeco.javacv.FFmpegFrameGrabber;
import org.bytedeco.javacv.FFmpegFrameRecorder;
public class VideoConcatenationExample {
public static void main(String[] args) {
String outputFile = "output.mp4"; // 输出文件名
String[] inputVideos = {"video1.mp4", "video2.mp4"}; // 输入视频文件列表
String[] inputAudios = {"audio1.mp3", "audio2.mp3"}; // 输入音频文件列表
try {
// 创建视频帧录制器
FFmpegFrameRecorder recorder = new FFmpegFrameRecorder(outputFile, 0);
recorder.setVideoCodecName("libx264");
recorder.setAudioCodecName("aac");
// 设置视频输入源
FFmpegFrameGrabber videoGrabber = new FFmpegFrameGrabber(inputVideos[0]);
videoGrabber.start();
recorder.setImageWidth(videoGrabber.getImageWidth());
recorder.setImageHeight(videoGrabber.getImageHeight());
// 设置音频输入源
FFmpegFrameGrabber audioGrabber = new FFmpegFrameGrabber(inputAudios[0]);
audioGrabber.start();
recorder.setSampleRate(audioGrabber.getSampleRate());
recorder.setAudioChannels(audioGrabber.getAudioChannels());
// 开始合并视频和音频
recorder.start();
// 合并视频
for (String videoFile : inputVideos) {
videoGrabber = new FFmpegFrameGrabber(videoFile);
videoGrabber.start();
int numFrames;
while ((numFrames = videoGrabber.getLengthInFrames()) > 0) {
recorder.record(videoGrabber.grabFrame());
}
videoGrabber.stop();
}
// 合并音频
for (String audioFile : inputAudios) {
audioGrabber = new FFmpegFrameGrabber(audioFile);
audioGrabber.start();
int numSamples;
while ((numSamples = audioGrabber.getAudioFrameLength()) > 0) {
recorder.recordSamples(audioGrabber.grabSamples());
}
audioGrabber.stop();
}
// 结束合并
recorder.stop();
recorder.release();
System.out.println("视频和音频拼接完成!");
} catch (Exception e) {
e.printStackTrace();
}
}
}
补充说明:
FFmpegFrameRecorder看成录像机,不仅能录视频还能录音频,两者不干扰。
也就是我们可以先写入音频,然后再写入视频,两者都有自己的时间线。
采集和写入音频都是sample字样,写入视频是frame
?????????recorder.record(videoGrabber.grabFrame());//抓取视频帧并写入到录像
????????recorder.recordSamples(audioGrabber.grabSamples());//抓取音频写入到录像
我们在处理合并时会遇到各种问题,下一篇介绍常见的错误,会不断完善
下一篇:视频编辑遇到的各种错误分析