Improved export system

This commit is contained in:
2018-09-11 23:12:36 +01:00
parent 04e4447b39
commit 3f42a13afd
2 changed files with 20 additions and 9 deletions

View File

@@ -100,11 +100,6 @@ class FFMPEGExecutor {
cmd[i + 1] = (String) args.get(i);
}
for (int i = 0; i < argsSize+1; i++) {
System.err.print(cmd[i] + " ");
}
System.err.println();
Runtime runtime = Runtime.getRuntime();
ffmpeg = runtime.exec(cmd);
ffmpegKiller = new ProcessKiller(ffmpeg);