Open the terminal and type:
CODE
sudo mv /etc/asound.conf /etc/asound.conf.bak
sudo /etc/init.d/alsa-utils restart
sudo /etc/init.d/alsa-utils restart
Thanks to wawa at ubuntuforums.org for providing this solution. Here is the relevant thread.
Apparently some time ago I set up dmix in my Alsa configuration, and that was messing things up. Here is how my old /etc/asound.conf file looked:
CODE
pcm.card0 {
type hw
card 0
}
pcm.!default {
type plug
slave.pcm "dmixer"
}
pcm.dmixer {
type dmix
ipc_key 1025
slave {
pcm "hw:0,0"
period_time 0
period_size 2048#1024
buffer_size 32768#4096
#periods 128
rate 48000#44100
}
bindings {
0 0
1 1
}
}
type hw
card 0
}
pcm.!default {
type plug
slave.pcm "dmixer"
}
pcm.dmixer {
type dmix
ipc_key 1025
slave {
pcm "hw:0,0"
period_time 0
period_size 2048#1024
buffer_size 32768#4096
#periods 128
rate 48000#44100
}
bindings {
0 0
1 1
}
}
Best of luck to those with this problem! Skype audio works great for me now.