FFmpeg 1.0.10
Since* 0.7
#

Sharpen or blur the input video.

It accepts the following parameters: luma_msize_x:luma_msize_y:luma_amount:chroma_msize_x:chroma_msize_y:chroma_amount

Negative values for the amount will blur the input video, while positive values will sharpen. All parameters are optional and default to the equivalent of the string ’5:5:1.0:5:5:0.0’.

luma_msize_x

Set the luma matrix horizontal size. It can be an integer between 3 and 13, default value is 5.

luma_msize_y

Set the luma matrix vertical size. It can be an integer between 3 and 13, default value is 5.

luma_amount

Set the luma effect strength. It can be a float number between -2.0 and 5.0, default value is 1.0.

chroma_msize_x

Set the chroma matrix horizontal size. It can be an integer between 3 and 13, default value is 5.

chroma_msize_y

Set the chroma matrix vertical size. It can be an integer between 3 and 13, default value is 5.

chroma_amount

Set the chroma effect strength. It can be a float number between -2.0 and 5.0, default value is 0.0.

# Strong luma sharpen effect parameters
unsharp=7:7:2.5

# Strong blur of both luma and chroma parameters
unsharp=7:7:-2:7:7:-2

# Use the default values with ffmpeg
ffmpeg -i in.avi -vf "unsharp" out.mp4