FFmpeg 1.2.12
Since* 0.9
#

Suppress a TV station logo by a simple interpolation of the surrounding pixels. Just set a rectangle covering the logo and watch it disappear (and sometimes something even uglier appear - your mileage may vary).

The filter accepts parameters as a string of the form "x:y:w:h:band", or as a list of key=value pairs, separated by ":".

The description of the accepted parameters follows.

x, y

Specify the top left corner coordinates of the logo. They must be specified.

w, h

Specify the width and height of the logo to clear. They must be specified.

band, t

Specify the thickness of the fuzzy edge of the rectangle (added to w and h). The default value is 4.

show

When set to 1, a green rectangle is drawn on the screen to simplify finding the right x, y, w, h parameters, and band is set to 4. The default value is 0.

#

Examples

  • Set a rectangle covering the area with top left corner coordinates 0,0 and size 100x77, setting a band of size 10:

    delogo=0:0:100:77:10
  • As the previous example, but use named options:

    delogo=x=0:y=0:w=100:h=77:band=10