This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision | |||
| ffmpeg [2025-01-22 11:25:29] mi [Add pseudo-timecode] | ffmpeg [2025-03-20 19:39:18] (current) mi [Add pseudo-timecode] | ||
|---|---|---|---|
| Line 286: | Line 286: | ||
| - | == Add pseudo-timecode | + | == Timecode | 
| + | === Change existing timecode | ||
| + | |||
| + | f=OriginalFile.mxf | ||
| + | newtc="00:00:00:00" | ||
| + | out=NewTC_File.mxf | ||
| + | ffmpeg -i "$f" -map 0:v -map 0:a -codec copy -movflags use_metadata_tags -timecode "$newtc" "$out" | ||
| + | |||
| + | === Add pseudo-timecode | ||
| Example with Fuji .MOV files, to add the "Create Date" time as a timecode: | Example with Fuji .MOV files, to add the "Create Date" time as a timecode: | ||