我正在编写一个小工具,可以在java中自动创建一些缩略图。
因此我在for
循环中执行Runtime.getRuntime().exec(command);
。现在我的问题是,只有第一个缩略图被创建。
我的代码:
public static void testFFMpeg(File videoFile) throws IOException {
FFMpegWrapper wraper = new FFMpegWrapper(videoFile);
int length = (int) wraper.getInputDuration() / 1000;
String absolutePath = videoFile.getAbsolutePath();
String path = absolutePath.substring(0, absolutePath.lastIndexOf('/') + 1);
int c = 1;
System.out.println(path + "thumb_" + c + ".png");
for (int i = 1; i <= length; i = i + 10) {
int h = i / 3600;
int m = i / 60;
int s = i % 60;
String command = "ffmpeg -i " + absolutePath + " -ss " + h + ":" + m + ":" + s + " -vframes 1 " + path
+ "thumb_" + c + "_" + videoFile.getName() + ".png";
System.out.println(command);
Runtime.getRuntime().exec(command);
c++;
}
}
输出为:
ffmpeg -i /mnt/Speicherschwein/workspace/testVideos/Roentgen_A_VisarioG2_005.avi -ss 0:0:1 -vframes 1 /mnt/Speicherschwein/workspace/testVideos/thumb_1_Roentgen_A_VisarioG2_005.avi.png
ffmpeg -i /mnt/Speicherschwein/workspace/testVideos/Roentgen_A_VisarioG2_005.avi -ss 0:0:11 -vframes 1 /mnt/Speicherschwein/workspace/testVideos/thumb_2_Roentgen_A_VisarioG2_005.avi.png
ffmpeg -i /mnt/Speicherschwein/workspace/testVideos/Roentgen_A_VisarioG2_005.avi -ss 0:0:21 -vframes 1 /mnt/Speicherschwein/workspace/testVideos/thumb_3_Roentgen_A_VisarioG2_005.avi.png
所以循环运行得很好,命令也很好,如果我从命令行手动运行它,它会创建每个缩略图,所以似乎有一个问题,在2。Runtime.getRuntime().exec(command);
的调用没有开始,因为第一次运行还没有完成。
S是否有可能暂停线程或类似的东西,直到Runtime.getRuntime().exec(command);
运行的命令完成?
Runtime.exec
返回一个Process
实例,您可以使用它来监视状态。
Process process = Runtime.getRuntime().exec(command);
boolean finished = process.waitFor(3, TimeUnit.SECONDS);
最后一行可以放入循环中,或者设置一个合理的超时。
因为当前在一个线程中运行它,所以每次执行命令时都尝试打开一个新线程。并在完成过程后加入线程创建缩略图。