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
_1bfloat10–20set 65Hz band gain
_2bfloat10–20set 92Hz band gain
_3bfloat10–20set 131Hz band gain
_4bfloat10–20set 185Hz band gain
_5bfloat10–20set 262Hz band gain
_6bfloat10–20set 370Hz band gain
_7bfloat10–20set 523Hz band gain
_8bfloat10–20set 740Hz band gain
_9bfloat10–20set 1047Hz band gain
_10bfloat10–20set 1480Hz band gain
_11bfloat10–20set 2093Hz band gain
_12bfloat10–20set 2960Hz band gain
_13bfloat10–20set 4186Hz band gain
_14bfloat10–20set 5920Hz band gain
_15bfloat10–20set 8372Hz band gain
_16bfloat10–20set 11840Hz band gain
_17bfloat10–20set 16744Hz band gain
_18bfloat10–20set 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.