2

As you can see in the attached picture, there are two different timecodes in my file, according to MediaInfo. Is there a way to set them to different values?

Thank you.

MediaInfo information

Gyan
  • 85,394
  • 9
  • 169
  • 201
user1722669
  • 488
  • 2
  • 6
  • 22

1 Answers1

1

You can use the -timecode option with ffmpeg.

I have a similar file and I was able to alter the SMPTE TC and the MXF TC with the following command:

ffmpeg -i input.mxf -c copy -map 0 -timecode 11:34:56:01 output.mxf 
Tandy Freeman
  • 528
  • 5
  • 15
  • The OP wants to set different values for SMPTE and MXF timecodes. – Gyan Apr 02 '16 at 13:29
  • I see what you mean, but I'm not certain if that's what OP wanted. I would be curious to know how different starting timecode values per format would be beneficial to anyone? – Tandy Freeman Apr 02 '16 at 13:36
  • The main question was how to set different values for SMPTE and MXF timecodes if it's possible if for some reasons it wouldn't possible, please explain why it is so. – user1722669 Apr 03 '16 at 23:47