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-04-01 13:33:44]
mi [Add pseudo-timecode]
ffmpeg [2025-03-20 19:39:18] (current)
mi [Add pseudo-timecode]
Line 135: Line 135:
  
 ==Images to video ==Images to video
 +
 +With numbered frames, the numbering must start at 0: "​frame0000.png",​ "​frame0001.png",​ "​frame0002.png",​ ...
 ===Animated webp ===Animated webp
  
Line 158: Line 160:
 out="​image-to-video.mp4"​ out="​image-to-video.mp4"​
 ffmpeg -framerate 25 -i "​$in"​ -c:v libx264 -crf 18 -pix_fmt yuv420p "​$out"​ ffmpeg -framerate 25 -i "​$in"​ -c:v libx264 -crf 18 -pix_fmt yuv420p "​$out"​
 +</​code>​
 +
 +To start on a specific numbered frame, use ''​-start_number''​. Example staring at "​image150.jpg":​
 +
 +<code bash>
 +in="​image%03d.jpg"​ # image000.jpg to image999.jpg
 +out="​image-to-video.mp4"​
 +ffmpeg -start_number 150 framerate 25 -i "​$in"​ -c:v libx264 -crf 18 -pix_fmt yuv420p "​$out"​
 </​code>​ </​code>​
  
Line 245: Line 255:
  
   for t in {0..11}; do ffmpeg -nostats -i "​$in"​ -map 0:a:$t -filter_complex ebur128 -f null - > $(printf "​ebur-$in-a%02d.txt"​ $t) 2>&1 ; done   for t in {0..11}; do ffmpeg -nostats -i "​$in"​ -map 0:a:$t -filter_complex ebur128 -f null - > $(printf "​ebur-$in-a%02d.txt"​ $t) 2>&1 ; done
 +
 +
 +==Delay track
 +To add a delay to the start of an input, use ''​-itsoffset offset''​ before the input file.
 +
 +See [[https://​superuser.com/​a/​983153/​53547|this answer]] for [[https://​superuser.com/​questions/​982342/​|In ffmpeg, how to delay only the audio of a .mp4 video without converting the audio?]]
 +
 +For example, to merge an audio and a video file, but having the audio start 440 ms. later (11 frames at 25 fps):
 +
 +  ffmpeg -i "​$video_file"​ -itsoffset 0.440 -i "​$audio_file"​ -map 0:v -map 1:a -c copy "​ff-resync-video_audio.mp4"​
 +===Syntax for time duration
 +''​[-][HH:​]MM:​SS[.m...]''​ or ''​[-]S+[.m...][s|ms|us]''​
 +See https://​ffmpeg.org/​ffmpeg-utils.html#​time-duration-syntax
  
  
Line 263: 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 294: 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.1711971224.txt.gz · Last modified: 2024-04-01 13:33:44 by mi