Browse Source

优化识别

suntianwu 3 years ago
parent
commit
69b8fcedd8
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/main/java/com/iden/common/videotool/VideoTool.java

+ 2 - 2
src/main/java/com/iden/common/videotool/VideoTool.java

@@ -79,9 +79,9 @@ public class VideoTool {
         String cmd = ffmpegPath + " -ss " + beginTime + " -i " + videoSrcPath
         String cmd = ffmpegPath + " -ss " + beginTime + " -i " + videoSrcPath
                 + " -t " + duration + " -c:v copy -c:a copy " + targetPath;
                 + " -t " + duration + " -c:v copy -c:a copy " + targetPath;
 
 
-        log.info("开始运行视频剪辑命令:" + cmd);
+        log.info("start video cut :" + cmd);
         Runtime.getRuntime().exec(cmd);
         Runtime.getRuntime().exec(cmd);
-        log.info("视频剪辑完成");
+        log.info("video en");
 
 
     }
     }