[gelöst] MPD mit alsa plugin-equal

Alle weiteren Dienste, die nicht in die drei oberen Foren gehören.
Antworten
dippes
Beiträge: 4
Registriert: 14.01.2018 18:54:37

[gelöst] MPD mit alsa plugin-equal

Beitrag von dippes » 16.01.2018 12:06:54

Hallo
ich habe ein minimalisiertes stretch " Debian-4.4.54-oxnas-tld-1-rootfs-bodhi.tar.bz2" auf meinem Pogoplug Classic v3 installiert.Auf welchem der Mpd läuft.

Ich wollte das equalizer plugin einbinden.Aber so wie es noch mit wheezy funktioniert hat so will es mit stretch leider nicht.

Hier mal dieKkonfiguration wie es mit wheezy fuktioniert.

/etc/asound.conf
ctl.equal {
type equal;
}

pcm.plugequal {
type equal;
slave.pcm "plug:dmix";
}

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;
}
/etc/mpd.conf
audio_output {
type "alsa"
name "equal"
device "plug:plugequal"
}
Was muss unter stretch geändert werden?
Zuletzt geändert von dippes am 16.01.2018 14:41:51, insgesamt 1-mal geändert.

Benutzeravatar
MSfree
Beiträge: 10686
Registriert: 25.09.2007 19:59:30

Re: MPD mit alsa plugin-equal

Beitrag von MSfree » 16.01.2018 14:02:18

Bei meinem Raspberry unter Jessie habe ich folgende /etc/asound.conf

Code: Alles auswählen

ctl.equal {
   type equal;
}

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

pcm.!default {
  type plug;
  slave.pcm plugequal;
}

defaults.ctl.card     1
defaults.pcm.card     1
defaults.timer.card   1
und mpd.conf

Code: Alles auswählen

audio_output {
  type          "alsa"
  name          "My ALSA Device"
  device        "plug:plugequal"
  mixer_device  "hw:1"
  mixer_control "Digital"
}
Vielleicht hilft dir das ja weiter.

Ich habe allerdings ein Hifiberry kompatibles Board auf dem Raspberry sitzen, und dadurch auch hw:1.0 im Einsatz. Das mußt du bei die ggfls. noch anpassen.

Bei mir mußte ich auch noch die ~/.alsaequal.bin löschen. Die paß nach eine Umkonfiguration ggfls. nicht mehr zu den Einstellungen.

dippes
Beiträge: 4
Registriert: 14.01.2018 18:54:37

Re: MPD mit alsa plugin-equal

Beitrag von dippes » 16.01.2018 14:40:34

Danke hat mir sehr geholfen.

MfG

dippes

Antworten