1

Is there any way to extract still images from video based on video "own SMPTE" timecode? (hour:minute:second:frame) as seen in the "Timecode Handler" recognized by ffmpeg.

I would like to create screenshots. (exactly the same frames) from different sources. Soureces length is not the same,(sometimes small segments), but the smpte timecode always is.

I'm looking for something like this, with the difference that instead of hh:mm:ss it uses the Timecode Handler TimeCode?

ffmpeg -ss 00:00:04 -i input.mp4 -frames:v 1 %04d.png

Thanks.

2
  • Read the timecode on one line of the script and store it in a variable, then use that variable in way you want. This is dependent on the scripting tool you use, not on features that are probably not built in to ffmpeg. Commented Oct 24, 2023 at 20:29
  • Did you find a solution? I have this question, too.
    – Aubrie
    Commented Jul 17 at 21:11

0

You must log in to answer this question.

Browse other questions tagged .