Skip to content

Unsharp

Video Single output Transform

Sharpen or blur the input video.

FFmpeg filter: unsharp — the official reference.

Add it to a graph. The explicit form works for every filter — bind it to its input and read the result from outputs():

$node = $video->addFilter(new Unsharp(…));
$result = $node->outputs()[0];

Shorthand. Single-output filters can skip the node — apply() returns the result stream directly:

$result = $video->apply(new Unsharp(…));

TODO — when this filter shines: what it’s the right tool for, what to reach for instead when it isn’t, and how it composes with neighbouring filters.

TODO — prose: how the filter actually works and what its key parameters mean (the explanation FFmpeg’s terse option help omits).

TODO — runnable PHP, with the equivalent ffmpeg CLI alongside.

TODO

TODO

ParameterTypeDefaultRange / valuesDescription
luma_msize_xint53–23set luma matrix horizontal size
luma_msize_yint53–23set luma matrix vertical size
luma_amountfloat1-2–5set luma effect strength
chroma_msize_xint53–23set chroma matrix horizontal size
chroma_msize_yint53–23set chroma matrix vertical size
chroma_amountfloat0-2–5set chroma effect strength
alpha_msize_xint53–23set alpha matrix horizontal size
alpha_msize_yint53–23set alpha matrix vertical size
alpha_amountfloat0-2–5set alpha effect strength

FFmpeg also names these options (use the parameter shown above): lx → luma_msize_x, ly → luma_msize_y, la → luma_amount, cx → chroma_msize_x, cy → chroma_msize_y, ca → chroma_amount, ax → alpha_msize_x, ay → alpha_msize_y, aa → alpha_amount.


Maps to FFmpeg’s unsharp filter. Verified against ffmpeg n7.1.1.

An Artisan Build project.

Built on FFmpeg — an independent binding, not affiliated with or endorsed by the FFmpeg project. Support FFmpeg.