I'm trying to get a single frame from a video at every 50 seconds with ffmpeg including the subtitles
The code I know of that will output a frame every 50 seconds is
ffmpeg -i “movie.mkv” -vf fps=1/50 img%03d.bmp
and the only code I know of that will take a snapshot of the frame with the subtitles is
ffmpeg -ss 00:09:18 -copyts -i “movie.mkv” -vf subtitles=subtitles.srt -vframes 1 001.png
But I dont know how to incorporate them together so it will take a snapshot with the subtitles at every 50 seconds or if this is even possible
I am new to all of this so if anyone could help me, that would be amazing, thank you