Skip to content

Fftdnoiz

Video Single output Transform

Denoise frames using 3D FFT.

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

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

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

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
sigmafloat10–100set denoise strength
amountfloat10.01–1set amount of denoising
blockint328–256set block size
overlapfloat0.50.2–0.8set block overlap
methodFftdnoizMethodwienerwiener, hardset method of denoising
prevint00–1set number of previous frames for temporal denoising
nextint00–1set number of next frames for temporal denoising
planesint70–15set planes to filter
windowFftdnoizWinFunchanningrect, bartlett, hanning, hamming, blackman, welch, flattop, bharris, …set window function

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