Hallo liebe Forengemeinde,
ich bin gerade am Bau eines zweiten Newtron-Radios, diesmal mit externer USB-Soundkarte. Leider spielt die Soundkarte nicht mit dem Equalizer zusammen bzw. die Klangregler erscheinen nur bei der Onbord-"Soundkarte" vom Raspi. Kann bitte jemand mal über meine Konfigurationsdateien drüberblicken?
Oder ist eine Equalizer-Funktion bei externen USB-Soundkarten nicht möglich. (ich habe bei googl*.de nichts gefunden)
Ich bin für jeden Tipp dankbar.
asound.conf
ctl.equal {
type equal;
}
pcm.plugequal {
type equal;
slave.pcm "plughw:1,0";
#this is where you have to input the number of your soundcard, so card0 = plughw:0,0$
}
pcm.equal {
# Or if you want the equalizer to be your
# default soundcard uncomment the following
# line and comment the above line.
# pcm.!default {
type plug;
slave.pcm plugequal;
}
Display More
mpd.conf
# An example of an ALSA output:
#
audio_output {
type "alsa"
# name "My ALSA Device"
name "equal"
# device "hw:1,0" # optional
device "plug:plugequal"
format "44100:16:2" # optional
mixer_control "Master"
# mixer_device "default" # optional
mixer_type "software" # optional
mixer_devicee "hw:1"
mixer_index "0" # optional
dop "no"
}
#
Display More
Und zu guter letzt die Ausgabe von aplay -l
pi@raspberrypi ~ $ aplay -l
**** Liste der Hardware-Geräte (PLAYBACK) ****
Karte 0: ALSA [bcm2835 ALSA], Gerät 0: bcm2835 ALSA [bcm2835 ALSA]
Sub-Geräte: 8/8
Sub-Gerät #0: subdevice #0
Sub-Gerät #1: subdevice #1
Sub-Gerät #2: subdevice #2
Sub-Gerät #3: subdevice #3
Sub-Gerät #4: subdevice #4
Sub-Gerät #5: subdevice #5
Sub-Gerät #6: subdevice #6
Sub-Gerät #7: subdevice #7
Karte 0: ALSA [bcm2835 ALSA], Gerät 1: bcm2835 ALSA [bcm2835 IEC958/HDMI]
Sub-Geräte: 1/1
Sub-Gerät #0: subdevice #0
Karte 1: Device [USB PnP Sound Device], Gerät 0: USB Audio [USB Audio]
Sub-Geräte: 0/1
Sub-Gerät #0: subdevice #0
Einen schönen Abend
wuchy