I have folder with many videos: ABOUT_00001.mp4, ABOUT_00002.mp4, ABOUT_00003.mp4, ... I want to decompose those videos into frames, so for doing that, I execute: ffmpeg.exe -i ABOUT_00001.mp4 ABOUT_00001-%d.jpg But I would like to take automatically all the videos in the folder and execute that command. Something like:
ffmpeg.exe -i ABOUT_00001.mp4 ABOUT_00001-%d.jpg
ffmpeg.exe -i ABOUT_00002.mp4 ABOUT_00002-%d.jpg
...
ffmpeg.exe -i ABOUT_0000X.mp4 ABOUT_0000X-%d.jpg
And so on. Does anyone know how can I do that? Thanks in advace