1

I would like to ask someone how knows FFmpeg good

enter image description here

As you can see I already know how to set timecodes that contain in green borders, but I don't know is there any opportunity set the Video timecode. Thank you for you help

user1722669
  • 488
  • 2
  • 6
  • 22

1 Answers1

1

Only possible with ffmpeg if you are ready to re-encode the video stream as MPEG-2 e.g.

ffmpeg -i input -c:v mpeg2video -gop_timecode "03:04:05:06" output
Gyan
  • 85,394
  • 9
  • 169
  • 201