Reply To: [SOLVED] Mono Output with Squeezelite and IQAudio Pi-DigiAMP+

Max2Play Home Forums Max2Play on Raspberry PI [SOLVED] Mono Output with Squeezelite and IQAudio Pi-DigiAMP+ Reply To: [SOLVED] Mono Output with Squeezelite and IQAudio Pi-DigiAMP+

29. November 2016 at 20:34 #24360

Hallo,

danke für die Infos und nach einigen Stunden testen und lesen von diversen Anleitung habe ich auch eine funktionierende Konfigurationder /etc/asound.conf

für Mono (als Soundkarte mono auswählen mit -o mono in den erweiterten Einstellungen von Squeezelite):

#Define the soundcard to use
pcm.snd_card {
    type hw
    card 0
    device 0
}

pcm.dshare {
 type dmix
 ipc_key 2048
 slave {
  pcm "snd_card"
  channels 2
 }
}
pcm.mono {
 type plug
 slave {
  pcm "dshare"
  channels 2
 }
 ttable.0.0 0.5
 ttable.1.0 0.5
 ttable.0.1 0.5
 ttable.1.1 0.5
}

für 2 Räume (für MultiSqueeze: als Soundkarte raum1 oder raum2 auswählen mit -o raum1 oder -o raum2 in den erweiterten Einstellungen von Squeezelite):

#Define the soundcard to use
pcm.snd_card {
    type hw
    card 0
    device 0
}

pcm.dshare {
 type dmix
 ipc_key 2048
 slave {
  pcm "snd_card"
  channels 2
 }
}
pcm.raum1 {
 type plug
 slave {
  pcm "dshare"
  channels 2
 }
 ttable.0.0 0.5
 ttable.1.0 0.5
}
pcm.raum2 {
 type plug
 slave {
  pcm "dshare"
  channels 2
 }
 ttable.0.1 0.5
 ttable.1.1 0.5
}

lg, Andy