I would like to call on ffmpeg to split a video into frames, I used
Process p=Runtime.getRuntime().exec("ffmpeg -i /home/video.mp4 -t 100 -filter:v \"fps=fps=60\" /home/%d.jpeg");
p.waitFor();
But I don't get the desired result. Nothing happens to the video. How do invoke ffmpeg from java correctly
EDIT
Additionally when I invoke ffmpeg without any arguments that have quotes in them it works fine.
Why is this getting voted down??