在执行转化的时候只能转化1分钟的影片超过1分钟影片的都不能转化。可是直接输入命令行又能全部转化。高分求解try{Runtimert=Runtime.getRuntime();Processproc=rt.exec("mencoder"+ol...
在执行转化的时候只能转化1分钟的影片超过1分钟影片的都不能转化。
可是直接输入命令行又能全部转化。
高分求解
try{
Runtime rt = Runtime.getRuntime();
Process proc = rt.exec("mencoder "+oldfilepath+" "
+"-oac lavc -lavcopts acodec=mp3:abitrate=64 -ovc xvid -xvidencopts "
+"bitrate=600 -of avi -o "+newfilepath);
System.out.println ("mencoder "+oldfilepath+" "
+"-oac lavc -lavcopts acodec=mp3:abitrate=64 -ovc xvid -xvidencopts "
+"bitrate=600 -of avi -o "+newfilepath);
InputStream stderr = proc.getErrorStream();
InputStreamReader isr = new InputStreamReader(stderr);
BufferedReader br = new BufferedReader(isr);
String line = null;
System.out.println("");
while ( (line = br.readLine()) != null)
System.out.println(line);
System.out.println("");
int exitVal = proc.waitFor();
System.out.println("Process exitValue: " + exitVal);
} catch (Throwable t)
{
t.printStackTrace();
}
return true;
展开