I'm trying to get a single frame from a video at every 50 seconds with ffmpeg including the subtitles from multiple videos
The code I know of that will do this from a single video is
ffmpeg -i “video.mkv” -vf “subtitles=subtitles.srt, fps=1/50” img%03d.bmp
But I dont know to tell ffmpeg to do multiple videos with multiple subtitles (the second video being “video2.mkv” the second subtitle being “subtitles2.srt”, and the fps also being 1/50) so that it will do one right after the other
I am new to all of this so if anyone could help me, that would be amazing, thank you