“ffmpeg”:java.io.IOException:error = 24,打开的文件过多

时间:2010-08-04 09:39:14

标签: java file

我正在使用ffmpeg生成预览,但是在我的程序执行过程中出现了这个错误:

“ffmpeg”:java.io.IOException:error = 24,打开的文件太多

有人知道如何解决或如何避免吗? 我在我使用ffmpeg:

的地方添加了一段代码
    for (int j = 0; j < temp.length; j++) {
                                                if(j==2){
                                                    String preview = temp2[i] + temp[j] +".jpg";
                                                    Process p = Runtime.getRuntime().exec("ffmpeg -i anotados/" +temp2[i] + " -r 1 -ss 00:00:"+temp[j]+" -t 1 -s 158x116 imagenes/" + preview);

                                                    TextOut.write(preview+"\n");
                                                }
 }

4 个答案:

答案 0 :(得分:1)

检查ulimit -n输出,查看允许从该shell生成的打开文件进程数。历史Unix系统限制为20个文件,但我的Ubuntu桌面默认为1024个打开文件。

您可能需要在/etc/security/limits.conf文件中提高允许的打开文件数。或者,您可能需要修改应用程序以更积极地关闭打开的文件。

另一种可能性是对可能打开的文件数量的系统范围限制。我不知道哪些现代系统仍然有这样的限制,但首先要看的是sysctl -a输出。 (好吧,在系统文档之后可能第二个位置。)

答案 1 :(得分:1)

请注意,每次调用Runtime.exec都会产生一个并行运行的新进程。你确定要像循环一样快地生成进程吗?您可能希望int exitValue = p.waitFor()等待该过程完成。如果您需要一些并发性,我建议使用java.util.concurrent.ThreadPoolExecutor安排任务。

例如,没有太多错误检查,如下所示:

final ExecutorService executor = Executors.newFixedThreadPool(2);

for (int j = 0; j < temp.length; j++) {
    if(j==2) {
        final String preview = temp2[i] + temp[j] +".jpg";
        final String ffmpegPreviewCommand = "ffmpeg -i anotados/" +temp2[i] + " -r 1 -ss 00:00:"+temp[j]+" -t 1 -s 158x116 imagenes/" + preview;

        executor.submit(new Callable() {
            @Override
            public Object call() throws Exception {
                final Process p = Runtime.getRuntime().exec(ffmpegPreviewCommand);
                final int exitValue = p.waitFor();
                //TODO Check ffmpeg's exit value.

                TextOut.write(preview+"\n");
            }
        });
}

// This waits for all scheduled tasks to be executed and terminates the executor.
executor.shutdown();

}

java.util.concurrent.Executors选择一个符合您需求的执行者。

答案 2 :(得分:1)

流程有一个方法:destroy()
尝试在最后添加它。

答案 3 :(得分:0)

每次使用Runtime时,都会打开stdoutstderrstdin。确保在完成exec()后关闭这些流。 像

这样的东西
    if(j==2){
       String preview = temp2[i] + temp[j] +".jpg";
       Process p = Runtime.getRuntime().exec("ffmpeg -i anotados/" +temp2[i] + " -r 1 -ss      00:00:"+temp[j]+" -t 1 -s 158x116 imagenes/" + preview);
       TextOut.write(preview+"\n");

       //try this here 
       //add exception handling if necessary
       InputStream is = p.getInputStream();
       InputStream es = p.getErrorStream();
       OutputStream os = p.getOutputStream();
       is.close();
       es.close();
       os.close();
}