Hi all,
I’m using DietPi as a snapclient on a Pi Zero W with a Hifiberry MiniAMP or AMP2.
Output works great, however I can’t implement equalizer and mono downmix at the same time.
I have two working asound.confs: one for equalizer and one for mono downmix on left channel.
Working equalizer as generated by dietpi-config:
pcm.!default {
type plug
slave.pcm {
type equal
slave.pcm {
type plug
slave.pcm {
type hw
card 0
device 0
}
}
controls "/var/lib/dietpi/dietpi-config/.alsaequal.bin"
}
}
ctl.eq {
type equal
controls "/var/lib/dietpi/dietpi-config/.alsaequal.bin"
}
ctl.!default {
type hw
card 0
}
and a working Mono downmix as a reuse from a Picoreplayer installation:
pcm.!default {
type route
slave.pcm "hw:0,0"
ttable {
0.1 1
0.0 1
1.0 1
1.1 1
}
}
Both configs work but I can not combine them into a single solution for equalizer and mono downmix. Where do I have to put the ttable information?