[SOLVED] Whole system sound equalization

If it doesn't fit in another category, ask it here.
Post Reply
Jacob_Lavoie
Posts: 8
Joined: 2011/04/25 10:52:49

[SOLVED] Whole system sound equalization

Post by Jacob_Lavoie » 2011/04/25 18:23:40

I recently bilt and installed alsaequal which requires caps and ladspa for those of you who are interested in installing alsaequal. I got alsaequal to work with gstreamer, now I want it to work with all sound output, the author of alsaequal has included a configuration for ~/.asoundrc in the README but the system wide configuration that i would like to have isnt documented, and i couldnt find any how to's.

The ~/.asoundrc:

[code]
ctl.equal {
type equal;
}

pcm.plugequal {
type equal;
slave.pcm "plughw:0,0";
}

pcm.equal{
type plug;
slave.pcm plugequal;
}
[/code][Moderator edit: Fixed [i]code[/i] tags to preserve formatting. "[...]" not ""]

Jacob_Lavoie
Posts: 8
Joined: 2011/04/25 10:52:49

Re: Whole system sound equalization

Post by Jacob_Lavoie » 2011/04/25 23:21:15

SOLVED

[code]
pcm.!default {
type plug;
slave.pcm plugequal;
}
pcm.equal {
type plug;
slave.pcm plugequal;
}
ctl.equal {
type equal;
}
pcm.plugequal {
type equal;
slave.pcm "plughw:0,0";
}
[/code]

pschaff
Retired Moderator
Posts: 18276
Joined: 2006/12/13 20:15:34
Location: Tidewater, Virginia, North America
Contact:

[SOLVED] Whole system sound equalization

Post by pschaff » 2011/04/26 13:00:19

Welcome to the CentOS fora. Reading [url=https://www.centos.org/modules/newbb/viewforum.php?forum=47]FAQ & Readme First[/url] is recommended for new users.

Thanks for reporting your own solution. Marking this thread [SOLVED] for posterity on your behalf.

Post Reply