You are not logged in.

#1 2019-07-27 23:43:16

hedonicflux~~
Member
Registered: 2019-07-19
Posts: 2

ALSA Pre-Amp not showing up in alsamixer

I'm trying to add a pre-amp to alsamixer as per these instructions. My /etc/asound.conf is as follows:

pcm.!default {
  type hw
  card 0
}
ctl.!default {
  type hw
  card 0
}
pcm.!default {
  type hw
  slave.pcm "softvol"
}
pcm.softvol {
  type softvol
  slave {
    pcm "dmix"
  }
  control {
    name "Pre-Amp"
    card 0
  }
  min_dB -5.0
  max_dB 20.0
  resolution 6
}

The control isn't showing up in alsamixer. alsamixer is showing the proper card, Intel HDA, which is set to card 0. Any idea what the problem is? I've tried both plug and hw as type. Much thanks.

Last edited by hedonicflux~~ (2019-07-27 23:44:47)

Offline

#2 2019-07-28 21:14:17

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 21,743

Re: ALSA Pre-Amp not showing up in alsamixer

You are overriding the default control device back to the non softvol control. Replace your file with

 pcm.!default {
    type plug
    slave.pcm "softvol"
    hint {
           show on
           description "Default device"
     }
}

pcm.softvol {
    type softvol
    slave {
        pcm "dmix"
    }
    control {
        name "Pre-Amp"
        card 0
    }
}

Retry, also post

aplay -lL
amixer

Preferably in [ code ] tags, not [ quote ] tags.

Last edited by V1del (2019-07-29 11:02:46)

Offline

Board footer

Powered by FluxBB