FFmpeg 4.1.11
Since* 4.1
#

Mix successive video frames.

A description of the accepted options follows.

frames

The number of successive frames to mix. If unspecified, it defaults to 3.

weights

Specify weight of each input video frame. Each weight is separated by space. If number of weights is smaller than number of frames last specified weight will be used for all remaining unset weights.

scale

Specify scale, if it is set it will be multiplied with sum of each weight multiplied with pixel values to give final destination pixel value. By default scale is auto scaled to sum of weights.

#

Examples

  • Average 7 successive frames:

    tmix=frames=7:weights="1 1 1 1 1 1 1"
  • Apply simple temporal convolution:

    tmix=frames=3:weights="-1 3 -1"
  • Similar as above but only showing temporal differences:

    tmix=frames=3:weights="-1 2 -1":scale=1