pulseaudio-equalizer-ladspa / equalizer

Pulseaudio LADSPA Equalizer
GNU General Public License v3.0
134 stars 15 forks source link

Can equalizer start on boot? #56

Open redbrain opened 3 years ago

redbrain commented 3 years ago

I've installed the equalizer from the Manjaro repos. I've created a curve for it that I'd like to always be on with my computer. Is there a way to load the equalization at boot or at user login, preferably silently? Thanks in advance.

FFY00 commented 3 years ago

It should already be loaded on boot as the scripts simply edit the pulseaudio config.

R33D3M33R commented 3 years ago

@redbrain: Try running pulseaudio-equalizer enable-config

tio-trom commented 1 year ago

How to have it enabled on boot then? It seems it is always disabled for me on boot. Is this normal? CHeers

sefernet commented 5 months ago

Two solutions:

1) Edit, for user ~/.config/pulse/default.pa , for system /etc/pulse/default.pa

load-module module-ladspa-sink sink_name=ladspa_output.equalized master=compressor-stereo plugin=mbeq_1197 label=mbeq control=0.0,-2.0,-2.0,-4.0,-4.0,-2.0,4.0,6.0,7.5,7.5,7.5,7.5,4.0,2.0,0.0

( 15 controls/bands)

Source : https://forums.linuxmint.com/viewtopic.php?t=296105


2) A script on autostart (/etc/xdg/autostart) , for example :

master=$(pactl get-default-sink)

mbeq_1197 = ladspa module eq

pacmd load-module module-ladspa-sink sink_name=ladspa_output.mbeq_1197.mbeq master=$master plugin=mbeq_1197 label=mbeq control=0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0

(same 15 controls/bands)

Source : https://askubuntu.com/questions/43950/how-can-i-apply-a-ladspa-plugin-to-a-pulseaudio-stream

Regards