gpt4 book ai didi

java.io.IOException : Cannot run program "usr/bin/ffmpeg ": error=2, 没有那个文件或目录

转载 作者:太空狗 更新时间:2023-10-29 11:13:39 29 4
gpt4 key购买 nike

我在 Ubuntu 服务器中从 java 程序执行 ffmpeg 命令时遇到错误。当我在 putty 中执行时,它执行成功但从 java 中它给了我

的异常
java.io.IOException: Cannot run program "/usr/bin/ffmpeg ": 
error=2, No such file or directory

我的代码如下:

public String convert3gpTomp4(File contentFile, String filename) {
String[] cmd = new String[6];
filename = StringUtils.substringBefore(filename, ".");
cmd[0] = "/usr/bin/ffmpeg ";
cmd[1] = "-y ";
cmd[2] = "-i ";
cmd[3] = contentFile.getPath();
cmd[4] = " -acodec copy ";
String myfilename = filename +"eg.mp4";
cmd[5] = contentFile.getParent() + "/" + myfilename;

if (execute(cmd)){
return myfilename;
}else{
return null;
}

}
}

public boolean execute(String[] cmd){
try{
Runtime rt= Runtime.getRuntime();

Process proc = rt.exec(cmd);

StreamGobbler errorGobbler = new StreamGobbler(proc.getErrorStream(), "ERROR");
StreamGobbler outputGobbler = new StreamGobbler(proc.getInputStream(), "OUTPUT");
errorGobbler.start();
outputGobbler.start();

int exitVal = proc.waitFor();
String sb = outputGobbler.sb.toString();
String eb = errorGobbler.sb.toString();

System.out.println("Command Exceute Exit value: " + exitVal);

proc.destroy();

return true;
}
catch(java.io.IOException e ){System.out.println("IOException "+e);e.printStackTrace();}
catch(java.lang.InterruptedException e){}

return false;

}

ffmpeg命令的输出:

/usr/bin/ffmpeg -y -i /mydata/clip1.3gp -acodec copy /mydata/clip1eg.mp4

当我在 putty 中运行上面的命令时,它成功执行但来自 Java 程序。

在程序中,我也尝试了以下但没有成功。

usr/bin/ffmpeg
/bin/ffmpeg
ffmpeg
/root/usr/bin/ffmpeg

请告诉我哪里做错了。

谢谢,

最佳答案

要找到 ffmpeg 的完整路径,请从您的 putty 运行以下命令:

  which ffmpeg

如果通过 rpm 包安装,默认路径是 /usr/bin/ffmpeg

关于java.io.IOException : Cannot run program "usr/bin/ffmpeg ": error=2, 没有那个文件或目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28632100/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com