joint a series of videos together

joint a series of  videos together
pull/166/head
xufulong 5 years ago
parent 52d648811e
commit 98142a2fd3
  1. 34
      app/src/main/java/com/frank/ffmpeg/util/FFmpegUtil.java

@ -146,7 +146,18 @@ public class FFmpegUtil {
}
/**
* Using FFmpeg to transform video, include the resolution
* Using FFmpeg to transform video, with re-encode
*
* @param srcFile the source file
* @param targetFile target file
* @return transform video success or not
*/
public static String[] transformVideoWithEncode(String srcFile, String targetFile) {
return transformVideoWithEncode(srcFile, 0, 0, targetFile);
}
/**
* Using FFmpeg to transform video, with re-encode and specific resolution
*
* @param srcFile the source file
* @param width the width of video
@ -154,13 +165,30 @@ public class FFmpegUtil {
* @param targetFile target file
* @return transform video success or not
*/
public static String[] transformVideo(String srcFile, int width, int height, String targetFile) {
public static String[] transformVideoWithEncode(String srcFile, int width, int height, String targetFile) {
String transformVideoCmd;
if (width > 0 && height > 0) {
String scale = "-vf scale=" + width + ":" + height;
String transformVideoCmd = "ffmpeg -i %s -vcodec copy -acodec copy " + scale + " %s";
transformVideoCmd = "ffmpeg -i %s -vcodec libx264 -acodec aac " + scale + " %s";
} else {
transformVideoCmd = "ffmpeg -i %s -vcodec libx264 -acodec aac " + "%s";
}
transformVideoCmd = String.format(transformVideoCmd, srcFile, targetFile);
return transformVideoCmd.split(" ");
}
/**
* joint every single video together
* @param fileListPath the path file list
* @param targetPath output path
* @return joint video success or not
*/
public static String[] jointVideo(String fileListPath, String targetPath) {
String jointVideoCmd = "ffmpeg -f concat -safe 0 -i %s -c copy %s";
jointVideoCmd = String.format(jointVideoCmd, fileListPath, targetPath);
return jointVideoCmd.split(" ");
}
/**
* cut video, you could assign the startTime and duration which you want to
*

Loading…
Cancel
Save