creating video from set of images on windows with java language [on hold]
- by Atif
I am stuck in making video from set of images, i am using ffmpeg tool on windows platform with java language, for single image it is converting into mp4 but for the set of images it gets failed, i have converted single % to double % with doube quotes but unsuccessful
ffmpeg -r 1/5 -i "D:\novoworkspace\MGram\src\biz\novosol\mgram\main\img%%04d.jpg" -c:v libx264 -r 30 -pix_fmt yuv420p D:\novoworkspace\MGram\src\biz\novosol\mgram\main\video.mp4
Above is the exact command i tried from the command line as well from the java language with getRuntime() method.
Environment is widows
please suggest is it possibe under windows or I have to use some alternative
Thanks
Atif