public
class
MergeVideoMp3 {
private
String ffmpegEXE;
private
String tempAudioPath =
"E:\\tool\\tempAudio.m4a"
;
private
String tempBgmPath =
"E:\\tool\\tempBgm.mp3"
;
private
String tempCoverPath =
"E:\\tool\\tempCover.jpg"
;
public
MergeVideoMp3(String ffmpegEXE) {
super
();
this
.ffmpegEXE = ffmpegEXE;
}
/**
* 视频添加背景音乐
* @param videoInputPath
* @param mp3InputPath
* @param seconds
* @param videoOutputPath
* @throws Exception
*/
public
String convertor(String videoInputPath, String mp3InputPath,
double
seconds, String videoOutputPath)
throws
Exception {
this
.getBgmByVideo(videoInputPath);
this
.mergeBgm(mp3InputPath);
this
.getCover(videoInputPath);
List<String> command =
new
ArrayList<>();
command.add(ffmpegEXE);
command.add(
"-i"
);
command.add(videoInputPath);
command.add(
"-i"
);
command.add(tempBgmPath);
command.add(
"-t"
);
command.add(String.valueOf(seconds));
command.add(
"-y"
);
command.add(
"-map"
);
command.add(
"0:v:0"
);
command.add(
"-map"
);
command.add(
"1:a:0"
);
command.add(videoOutputPath);
this
.processed(command);
return
tempCoverPath;
}
/**
* 获取视频中的音频
* @param videoPath
* @return
*/
public
boolean
getBgmByVideo(String videoPath){
try
{
List<String> command =
new
ArrayList<>();
command.add(ffmpegEXE);
command.add(
"-i"
);
command.add(videoPath);
command.add(
"-vn"
);
command.add(
"-y"
);
command.add(
"-acodec"
);
command.add(
"copy"
);
command.add(tempAudioPath);
this
.processed(command);
return
true
;
}
catch
(Exception e){
e.printStackTrace();
return
false
;
}
}
/**
* 合并bgm与视频中的音频
* @param bgmPath
* @return
*/
public
boolean
mergeBgm(String bgmPath){
try
{
List<String> command =
new
ArrayList<>();
command.add(ffmpegEXE);
command.add(
"-i"
);
command.add(tempAudioPath);
command.add(
"-i"
);
command.add(bgmPath);
command.add(
"-filter_complex"
);
command.add(
"amerge"
);
command.add(
"-ac"
);
command.add(
"2"
);
command.add(
"-c:a"
);
command.add(
"libmp3lame"
);
command.add(
"-q:a"
);
command.add(
"4"
);
command.add(
"-y"
);
command.add(tempBgmPath);
this
.processed(command);
return
true
;
}
catch
(Exception e){
e.printStackTrace();
return
false
;
}
}
/**
* 获取视频封面截图
* @param videoInputPath
* @return
*/
public
String getCover(String videoInputPath) {
try
{
List<String> command =
new
ArrayList<>();
command.add(ffmpegEXE);
command.add(
"-ss"
);
command.add(
"00:00:01"
);
command.add(
"-y"
);
command.add(
"-i"
);
command.add(videoInputPath);
command.add(
"-vframes"
);
command.add(
"1"
);
command.add(tempCoverPath);
this
.processed(command);
return
tempCoverPath;
}
catch
(Exception e){
e.printStackTrace();
return
null
;
}
}
/**
* 执行FFmpeg命令
* @param command
* @throws IOException
*/
private
void
processed(List<String> command)
throws
IOException {
ProcessBuilder builder =
new
ProcessBuilder(command);
Process process = builder.start();
InputStream errorStream = process.getErrorStream();
InputStreamReader inputStreamReader =
new
InputStreamReader(errorStream);
BufferedReader br =
new
BufferedReader(inputStreamReader);
String line =
""
;
while
( (line = br.readLine()) !=
null
) {
}
if
(br !=
null
) {
br.close();
}
if
(inputStreamReader !=
null
) {
inputStreamReader.close();
}
if
(errorStream !=
null
) {
errorStream.close();
}
}
}