ffmpeg executed from Java#39;s processbuilder does not return under windows 7(从 Java 的 processbuilder 执行的 ffmpeg 在 windows 7 下不返回)
问题描述
我试图构建一个调用 ffmpeg 二进制文件的 ProcessBuilder.我的问题是调用它,它在 MacOs、Ubuntu 和 WindowsXp 下完美返回,但在 Windows7 下,waitFor() 永远不会返回.
I was trying to build up a ProcessBuilder calling the ffmpeg binary. My problem is that calling it, it returns perfectly under MacOs, Ubuntu and WindowsXp, but under Windows7 the waitFor() never returns.
有没有人在windows 7下有类似的经历?任何帮助将不胜感激!
Has anyone similar experience under windows 7? Any help would be appreciated!
我的命令:
ProcessBuilder pb = new ProcessBuilder( );
pb.command( "C:\Windows\System32\cmd.exe", "/c", "c:\ffmpeg\bin\ffmpeg.exe", "-version" );
也试过这些:
pb.command( "c:\ffmpeg\bin\ffmpeg.exe", "-version" );
pb.command( "C:\Windows\System32\cmd.exe", "/c", "start c:\ffmpeg\bin\ffmpeg.exe -version" );
结果是一样的.:(
推荐答案
看起来您的进程在其输出和/或错误流中写入了一些内容.他们的缓冲区溢出和进程阻塞.您应该读出并错误处理您的流程以避免这种情况.
Looks like your process writes something in its out and/or err streams. Their buffer overflow and process blocks. You should read out and err streams of your process to avoid this.
请参阅当 Runtime.exec() 获胜时"t"了解更多信息
这篇关于从 Java 的 processbuilder 执行的 ffmpeg 在 windows 7 下不返回的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:从 Java 的 processbuilder 执行的 ffmpeg 在 windows 7 下不返回
基础教程推荐
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- 降序排序:Java Map 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01