|
@@ -439,12 +439,11 @@ ffmpeg -i "concat:1.ts|2.ts" -c copy output.mp4
|
|
|
if (!videoFile.exists()) {
|
|
|
return;
|
|
|
}
|
|
|
- validFileList.add(filePath);
|
|
|
log.info("file:{}", filePath);
|
|
|
+
|
|
|
+ validFileList.add(filePath);
|
|
|
|
|
|
- argFileTxt.append("file ")
|
|
|
- .append("'").append(filePath).append(".").append(System.lineSeparator());
|
|
|
-
|
|
|
+ argFileTxt.append("file '").append(filePath).append("'").append(System.lineSeparator());
|
|
|
});
|
|
|
|
|
|
if (!flay) {
|
|
@@ -467,8 +466,8 @@ ffmpeg -i "concat:1.ts|2.ts" -c copy output.mp4
|
|
|
}
|
|
|
|
|
|
StringBuilder cmd = new StringBuilder(ffmpegPath);
|
|
|
- cmd.append(" concat -i")
|
|
|
- .append(argFileName)
|
|
|
+ cmd.append(" -f concat -i ")
|
|
|
+ .append(argFile.getAbsolutePath())
|
|
|
.append(" -c copy ")
|
|
|
.append(newfilePath);
|
|
|
|