Skip to content

Superequalizer

Audio Single output Transform

Apply 18 band equalization filter.

FFmpeg filter: superequalizer — 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 = $audio->addFilter(new Superequalizer());
$result = $node->outputs()[0];

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

$result = $audio->apply(new Superequalizer());

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
_1bfloat1020set 65Hz band gain
_2bfloat1020set 92Hz band gain
_3bfloat1020set 131Hz band gain
_4bfloat1020set 185Hz band gain
_5bfloat1020set 262Hz band gain
_6bfloat1020set 370Hz band gain
_7bfloat1020set 523Hz band gain
_8bfloat1020set 740Hz band gain
_9bfloat1020set 1047Hz band gain
_10bfloat1020set 1480Hz band gain
_11bfloat1020set 2093Hz band gain
_12bfloat1020set 2960Hz band gain
_13bfloat1020set 4186Hz band gain
_14bfloat1020set 5920Hz band gain
_15bfloat1020set 8372Hz band gain
_16bfloat1020set 11840Hz band gain
_17bfloat1020set 16744Hz band gain
_18bfloat1020set 20000Hz band gain

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