I have setup RPI for HiFi stereo system.
I have the following setup:
AudioQuest DragonFly USB DAC
MPD with UPMPD Client
I have following config in my /etc/mpd.conf using which I am able to play music lossless to my DAC.
Code: Select all
audio_output {
type "alsa"
name "Audioquest Dragonfly"
device "hw:1,0" # using card1
auto_format "no"
auto_resample "no"
auto_channels "no"
}
Now I want to use an equalizer in this setup. I tried the configuration mentioned in this post to configure alsaequal.
I configured /etc/asound.conf to have:
Code: Select all
ctl.equal {
type equal;
}
pcm.plugequal {
type equal;
slave {
pcm "plughw:1,0"; ## since I want to use card1
}
}
pcm.equal {
type plug;
slave.pcm plugequal;
}
And /etc/mpd.conf contains:
Code: Select all
audio_output {
type "alsa"
name "Audioquest Dragonfly"
# device "hw:1,0"
device "plug:plugequal"
auto_format "no"
auto_resample "no"
auto_channels "no"
mixer_device "hw:1,0"
mixer_control "PCM"
mixer_index "0"
dop "no"
}
If I use this config, I do not have any output to my DAC. I tried many combinations, but did not get any working.
What I notice is that I have to set
Code: Select all
audio_output {
....
device "hw:1,0"
....
}
I don't get anything on my DAC if I change this.
Any suggestions on how I can fix it would be helpful.
Thanks