use avoid_negative_ts when cutting video

use avoid_negative_ts when cutting video
pull/166/head
xufulong 4 years ago
parent d7c961088f
commit ce2c2561e6
  1. 2
      app/src/main/java/com/frank/ffmpeg/util/FFmpegUtil.java

@ -200,7 +200,7 @@ public class FFmpegUtil {
* @return cut video success or not * @return cut video success or not
*/ */
public static String[] cutVideo(String inputPath, int startTime, int duration, String outputPath) { public static String[] cutVideo(String inputPath, int startTime, int duration, String outputPath) {
String cutVideoCmd = "ffmpeg -ss %d -accurate_seek -t %d -i %s -acodec copy -vcodec copy -no_negative_ts 1 %s"; String cutVideoCmd = "ffmpeg -ss %d -accurate_seek -t %d -i %s -acodec copy -vcodec copy -avoid_negative_ts 1 %s";
cutVideoCmd = String.format(Locale.getDefault(), cutVideoCmd, startTime, duration, inputPath, outputPath); cutVideoCmd = String.format(Locale.getDefault(), cutVideoCmd, startTime, duration, inputPath, outputPath);
return cutVideoCmd.split(" "); return cutVideoCmd.split(" ");
} }

Loading…
Cancel
Save