Skip to content

Atadenoise

Video Single output Transform

Apply an Adaptive Temporal Averaging Denoiser.

FFmpeg filter: atadenoise — 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 Atadenoise());
$result = $node->outputs()[0];

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

$result = $video->apply(new Atadenoise());

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
_0afloat0.0200.3set threshold A for 1st plane
_0bfloat0.0405set threshold B for 1st plane
_1afloat0.0200.3set threshold A for 2nd plane
_1bfloat0.0405set threshold B for 2nd plane
_2afloat0.0200.3set threshold A for 3rd plane
_2bfloat0.0405set threshold B for 3rd plane
sint95129set how many frames to use
pint|string7set what planes to filter
aAtadenoiseApp, sset variant of algorithm
_0sfloat32767032767set sigma for 1st plane
_1sfloat32767032767set sigma for 2nd plane
_2sfloat32767032767set sigma for 3rd plane

Maps to FFmpeg’s atadenoise 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.