excute ffmpeg command from java class
i write this code to run ffmpeg from a java class but i obtain no result. how can i resolve it ?
command="ffmpeg.exe -i C:/Documents and Settings/Andrea/Desktop/Conversione/Temp/"+a+".avi -b 90 C:/Documents and Settings/Andrea/Desktop/Conversione/Temp/"+a+".mp4";
System.out.println(command);
try{
Runtime.getRuntime().exec("ffmpeg.exe -i C:/Documents and Settings/Andrea/Desktop/Conversione/Temp/"+a+".avi -b 90 C:/Documents and Settings/Andrea/Desktop/Conversione/Temp/"+a+".mp4");
}catch(Exception e){System.out.println(e);}
}

