public static boolean getVideoImg(String videoRealPath, String imageRealPath) {
try {
// 调用批处理文件
Runtime.getRuntime().exec(
"cmd /c start E://ffmpeg//ffmpeg.bat " + videoRealPath + " "
+ imageRealPath);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
return false;
}
return true;
}
一只甜甜圈