Skip to main content

Compact PipeWire system-wide parametric equalizer for Linux desktops.

Project description

Mini EQ

CI PyPI GitHub release License

Get it on Flathub

Mini EQ is a small system-wide parametric equalizer for PipeWire desktops. It uses GTK/Libadwaita for the UI, pipewire-gobject for app-facing PipeWire routing, metadata, and monitor streams, and PipeWire filter-chain with builtin biquad filters for the equalizer. When libebur128 is available, the monitor can also show live LUFS loudness.

Mini EQ screenshot

Features

  • System-wide parametric EQ for PipeWire desktop playback.
  • GTK/Libadwaita interface with a compact 10-band fader workflow.
  • PipeWire routing and default-output tracking through pipewire-gobject.
  • PipeWire filter-chain DSP using builtin biquad filters.
  • Optional spectrum analyzer and LUFS loudness readout through a PipeWire monitor capture stream.
  • Per-output preset links for automatically using different saved presets with headphones, speakers, HDMI, and other outputs.
  • Optional background mode keeps the EQ active after closing the window, with a separate Start at Login preference and optional active-at-login routing.
  • Optional GNOME Shell extension for quick panel access to routing, EQ, analyzer status, presets, and output preset links.
  • Equalizer APO preset import from the UI or --import-apo, including compatible presets exported by AutoEq.

AutoEq And APO Presets

Mini EQ can import Equalizer APO-style parametric EQ text presets. This makes it usable with headphone correction presets exported by AutoEq: export an Equalizer APO/parametric EQ preset from AutoEq, then use Import Equalizer APO... in Mini EQ or start the app with mini-eq --import-apo path/to/ParametricEQ.txt. The AutoEq project provides the source, headphone measurement data, targets, and optimizer behind the web app.

Install

Recommended install paths:

  1. Flathub, the preferred desktop install path.
  2. PyPI, after the system desktop/audio dependencies below are installed.
  3. Source checkout, for development or testing unreleased changes.

Install from Flathub:

flatpak install flathub io.github.bhack.mini-eq
flatpak run io.github.bhack.mini-eq

Mini EQ depends on system desktop/audio packages that Python packaging cannot fully install: GTK 4.12+ and Libadwaita 1.7+ GI bindings, PyGObject, PipeWire, WirePlumber as the session manager, and the native libraries required by pipewire-gobject. Install PyGObject from your distro, such as python3-gi or python3-gobject, rather than adding a PyPI PyGObject dependency to Mini EQ.

If your distro ships older GTK or Libadwaita builds, prefer the Flatpak build.

Package names vary by distro release. If pip builds pipewire-gobject from its source distribution, install the GLib, GObject-Introspection, and PipeWire development packages first. Virtual environments that need distro GI bindings should use --system-site-packages; on Ubuntu/Debian, build the pipewire-gobject wheel in a plain venv first, then install that wheel into the system-site Mini EQ venv.

These are good starting points:

# Ubuntu / Debian
sudo apt install \
  gir1.2-adw-1 \
  gir1.2-gtk-4.0 \
  gobject-introspection \
  libgirepository1.0-dev \
  libglib2.0-dev \
  libpipewire-0.3-dev \
  meson \
  ninja-build \
  pkg-config \
  pipewire \
  python3-cairo \
  python3-pip \
  python3-gi \
  python3-setuptools \
  python3-venv \
  wireplumber \
  libebur128-1

# Fedora
sudo dnf install \
  gtk4 \
  libadwaita \
  gobject-introspection-devel \
  glib2-devel \
  meson \
  ninja-build \
  pkgconf-pkg-config \
  pipewire \
  pipewire-devel \
  python3-cairo \
  python3-gobject \
  python3-pip \
  wireplumber \
  libebur128

# Arch Linux
sudo pacman -S \
  gtk4 \
  libadwaita \
  gobject-introspection \
  glib2 \
  meson \
  ninja \
  pkgconf \
  pipewire \
  python-cairo \
  python-gobject \
  python-pip \
  wireplumber \
  libebur128

Install the Python package after the system packages are present:

python3 -m venv /tmp/mini-eq-pwg-build
/tmp/mini-eq-pwg-build/bin/python -m pip install --upgrade pip
/tmp/mini-eq-pwg-build/bin/python -m pip wheel 'pipewire-gobject>=0.3.4,<0.4' -w /tmp/mini-eq-wheelhouse

python3 -m venv --system-site-packages ~/.local/share/mini-eq/venv
~/.local/share/mini-eq/venv/bin/python -m pip install --upgrade pip
~/.local/share/mini-eq/venv/bin/python -m pip install --no-index --find-links /tmp/mini-eq-wheelhouse 'pipewire-gobject>=0.3.4,<0.4'
~/.local/share/mini-eq/venv/bin/python -m pip install mini-eq
~/.local/share/mini-eq/venv/bin/mini-eq --check-deps
~/.local/share/mini-eq/venv/bin/mini-eq

For a source checkout:

python3 -m pip install -e .
mini-eq --check-deps
mini-eq

For a source checkout without installing the package:

PYTHONPATH=src python3 -m mini_eq --check-deps
PYTHONPATH=src python3 -m mini_eq

Install the desktop launcher and icon for the current user:

mini-eq --install-desktop

GNOME Shell Extension

Mini EQ also has an optional GNOME Shell extension for quick panel access to routing, EQ, analyzer status, presets, and output preset links.

Install it from GNOME Shell Extensions: https://extensions.gnome.org/extension/9803/mini-eq-controls/

Test

python3 -m pip install -e '.[dev]'
python3 -m ruff check .
python3 -m ruff format --check .
python3 -m pytest -q

Some integration tests are skipped automatically when optional PipeWire runtime tools are not installed.

Check the pipewire-gobject GI compatibility surface:

PYTHONPATH=src python3 tools/check_pipewire_gobject.py

Flatpak

The Flatpak manifest uses the GNOME runtime. It does not ship a full PipeWire daemon or session manager; it builds only the local PipeWire filter-chain module and SPA builtin filter-graph support that Mini EQ loads inside the app process. It also builds pipewire-gobject for Mini EQ's app-facing PipeWire access and bundles NumPy and libebur128 for analyzer and live LUFS support.

Install the local build tools:

flatpak --user install flathub org.flatpak.Builder org.gnome.Sdk//50

Build and install the local Flatpak:

flatpak run org.flatpak.Builder --user --install --force-clean --install-deps-from=flathub \
  flatpak-build io.github.bhack.mini-eq.yaml
flatpak run io.github.bhack.mini-eq --check-deps
flatpak run io.github.bhack.mini-eq

Notes

Runtime data is stored under ~/.config/mini-eq.

pip install mini-eq installs only the Python package. The system packages above are still required for the app to connect to GTK, PipeWire, and the host WirePlumber-managed session.

Acknowledgements

Mini EQ is inspired in part by EasyEffects and the broader PipeWire audio tooling ecosystem. Mini EQ is a separate project focused on a compact system-wide parametric EQ workflow.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mini_eq-0.6.0.tar.gz (649.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mini_eq-0.6.0-py3-none-any.whl (116.7 kB view details)

Uploaded Python 3

File details

Details for the file mini_eq-0.6.0.tar.gz.

File metadata

  • Download URL: mini_eq-0.6.0.tar.gz
  • Upload date:
  • Size: 649.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for mini_eq-0.6.0.tar.gz
Algorithm Hash digest
SHA256 6dcd90fbe532a911ae9599cb7bcf9d5483971eb50e1bf16a72fc875eb8cbba15
MD5 6d981271feef45e2b46193dad4e97987
BLAKE2b-256 8041430eaa0940ed1dbeea30f0fd54b4f66b56f5424625ef3ce53b3cca76979d

See more details on using hashes here.

Provenance

The following attestation bundles were made for mini_eq-0.6.0.tar.gz:

Publisher: release.yml on bhack/mini-eq

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mini_eq-0.6.0-py3-none-any.whl.

File metadata

  • Download URL: mini_eq-0.6.0-py3-none-any.whl
  • Upload date:
  • Size: 116.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for mini_eq-0.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 b7835f0ced595882184ec0dc947b6728c23ec5dea0ba521b7c00b25a4179f9c2
MD5 a6bd39ca1bf36309db0cc88c62a44a2f
BLAKE2b-256 2f1712191be33a6af4bc2f1bac50afe66ada1527aa362f82a84f3bf7b7b67486

See more details on using hashes here.

Provenance

The following attestation bundles were made for mini_eq-0.6.0-py3-none-any.whl:

Publisher: release.yml on bhack/mini-eq

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page