When using ffmpeg to output a series of frames as images, the only format I can find documentation for is frame_%d.jpg. The %d identif
ffmpeg
frame_%d.jpg
%d
Another option you'd have would be to run ffprobe -show_packets on it, and use that data to "infer" the timestamp of each generated jpg file (assuming you generate one per incoming video frame). Yikes!