我想通过使用ffmpeg将图像序列转换为android sdcard中的视频...如何在android中使用该波纹管... ffmpeg -f image2 -i img%4d.png video.mp4。
我试试这一行 File dir = new File("/mnt/sdcard");
// create a process and execute notepad.exe and currect environment
try {
Process p = Runtime.getRuntime().exec("ffmpeg -f image2 -i img%4d.png video_test.mp4",null,dir);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
但我得到 java.io.ioexception environment null,directory null error....