user1722669
user1722669

Reputation: 508

FFmpeg Video First Frame Time Code value

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

Upvotes: 1

Views: 2203

Answers (1)

Gyan
Gyan

Reputation: 93181

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

Upvotes: 1

Related Questions