User Tools

Site Tools


ffmpeg

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
ffmpeg [2024-11-17 19:21:37]
mi [Delay track]
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:
Line 317: Line 325:
  
 <code bash>​t=$(exiftool -api largefilesupport=1 -CreateDate "​$f"​ | awk '​{print $NF}'​);</​code>​ <code bash>​t=$(exiftool -api largefilesupport=1 -CreateDate "​$f"​ | awk '​{print $NF}'​);</​code>​
 +
 +For .wav files from a Zoom, instead of ''​-CreateDate'',​ use ''​-DateTimeOriginal''​ :
 +<code bash>​t=$(exiftool -DateTimeOriginal "​$f"​ | awk '​{print $NF}'​);​ tc="​$t:​00";</​code>​
  
 ==Diff ==Diff
/docs/dokuwiki/data/attic/ffmpeg.1731867697.txt.gz · Last modified: 2024-11-17 19:21:37 by mi