Alsa Equalizer HOWTO #308
Replies: 1 comment 1 reply
-
I've been exploring using the dsp project as an equalizer: https://github.com/bmc0/dsp It's more powerful, but slightly more complex to configure. Quick tutorial: Install the required packages
Clone the dsp project:
Compile and install dsp: Edit
Now create a config file for this EQ. If label in the above section corresponds to
Now we can store the EQ settings in
The same can be done for ch1, ch2 and ch3 When done, run |
Beta Was this translation helpful? Give feedback.
-
This is a quick tutorial that explains how to equalize the 4 channels in software using an ALSA equalizer plugin.
It works by renaming the alsa outputs
ch0..ch3
intoch0noeq..ch3noeq
, then we add four equalizers which inputs are againch0..ch3
, so none of the Amplipi software has to be adjusted.Connect to your Amplipi device over SSH.
Install the plugin:
/etc/asound.conf
:I'm still looking in alternative ways to equalize. The above approach won't allow equalization of individual rooms if the same source is played in multiple rooms. A hardware equalizer for all of the output channels would be nice, but so far, with the current hardware, there is no easy way to inject an external equalizer.
edit: There is still something wrong with the above config. It doesn't work for ch0, but works fine for ch1..ch3.
Beta Was this translation helpful? Give feedback.
All reactions