So, I tried a few lines of code in a Windows batch file to extract frames from MP4-files.
ffmpeg -i "filename.mp4" "frames/out-%%06d.jpg"
works on just one file.
ffmpeg -i "*.mp4" "frames/out-%%06d.jpg"
does not work at all.
How do I get it to play nice with multiple inputfiles?