视频文件合并
/**
* 合并视频文件
* @param videoPath 视频集合
* @return
*/
public Object mergeVideo(){
String files[] = {"E:/video/1.mp4","E:/video/2.mp4"};
String outfile = "E:/video/merger/";
Timestamp timestamp = new Timestamp((new Date()).getTime());
DateFormat dft = new SimpleDateFormat("yyyyMM");
outfile = outfile + File.separator + dft.format(timestamp);
File file = new File(outfile);
if(!file.exists()){
file.mkdirs();
}
outfile = outfile + File.separator;
String result = mergeVideo("E:\\ffmpeg-20170425-b4330a0-win32-static\\ffmpeg-20170425-b4330a0-win32-static\\bin\\ffmpeg.exe"
, files, outfile);
result = result.split("web")[result.split("web").length-1];
model.add("result", result);
return "result.json";
}
/**
* 合并多个视频,以选中的先后顺序排序
* @param files
*/
public static String mergeVideo(String osNames, String [] files, String outPutPath){
String newFiles[] = new String[files.length];
int i = 0;
if(null != files && files.length>0){
/**
* 如果需要将整合的文件统一格式,使用cutFile()方法可能会导致转义ts文件失败
* 所以需要上传来的视频已经格式相同,否则会出现未知的问题
*/
//将文件转化成ts格式
for(String file : files){
List<String> changeTs = changeTs(osNames, file, "video.ts", outPutPath);
newFiles[i] = changeTs.get(changeTs.size()-1);
runClip(changeTs);
i++;
}
}
i = 0;
List<String> commend = integrateParameter(osNames, newFiles, ".mp4", outPutPath);
String runClip = runClip(commend);
//删除ts文件
for(String filePath : newFiles){
delFile(filePath);
}
return runClip;
}
/**
* 转化为ts文件
* @param oldFilePath
* @param newFilePath
* @return
*/
private static List<String> changeTs(String osNames, String oldFilePath,String newFilePath, String outPutPath){
List<String> commend = new ArrayList<String>();
commend.add(osNames);
commend.add("-i");
commend.add(oldFilePath);
commend.add("-vcodec");
commend.add("copy");
commend.add("-vbsf");
commend.add("h264_mp4toannexb");
commend.add(outPutPath + getRandomName() + newFilePath);
return commend;
}
/**
* 整合文件
* @param files
* @param newFileName
* @return
*/
private static List<String> integrateParameter(String osNames, String oldFilesPath[], String newFilePath, String outPutPath){
String list = "\"concat:"+oldFilesPath[0];
if(oldFilesPath.length>1){
for(int i = 1;i<oldFilesPath.length;i++){
list =list+"|"+oldFilesPath[i];
}
}
list = list+"\"";
List<String> commend = new ArrayList<String>();
commend.add(osNames);
commend.add("-i");
commend.add(list);
commend.add("-vcodec"); //强制使用codec编解码方式。如果用copy表示原始编解码数据必须被拷贝。
commend.add("copy");
commend.add("-vbsf");
commend.add("h264_mp4toannexb"); //流过滤器,提取h264数据
commend.add(outPutPath + getRandomName() + newFilePath);
return commend;
}
/**
* 运行程序
* @param commend
* @return
*/
private static String runClip(List<String> commend){
try {
ProcessBuilder builder = new ProcessBuilder(commend);
builder.command(commend);
Process pro = builder.start();
doWaitFor(pro);
String newFileName = commend.get(commend.size()-1);
return newFileName;
} catch (Exception e) {
e.printStackTrace();
return null;
}
}
/**
* 删除文件
* @param filePath
* @return
*/
private static boolean delFile(String filePath){
File file = new File(filePath);
if(!file.exists()){
System.out.println("删除失败:" + filePath + "不存在!");
return false;
}else{
if(file.isFile()){
return file.delete();
}else{
return false;
}
}
}