[CM] snd-gtk-alsa "alsa_audio_open: could not set rate to exactly 44100, set to 3200 instead"

Jonathan Murphy typetosmurky@yahoo.com.au
Thu, 02 Feb 2006 08:34:34 -0500


I think that you should probably remove the plugins from your
~/.asoundrc. Keep it to a simple list of the cards on your
machine. Then put the environment variable in ~/.bashrc or
/etc/profile, whichever is more appropriate for your setup. Your
~/.asoundrc should look something like this:

        pcm.yourmotherboardcard {
           type hw
           card 0
        }

        ctl.yourmotherboardcard {
           type hw
           card 0
        }

        pcm.usb-audio {
           type hw
           card 1
        }

        ctl.usb-audio {
           type hw
           card 1
        }

The environment variable should be:

        export SNDLIB_ALSA_DEVICE="hw:1,0"

Then make sure that you've set advanced mode to off (on the back of
your device). With a recent kernel and current alsa drivers this
should give you 16/44100. Have you read the quirks file?

Jonathan.