I have a new (as in just bought today) Logitech USB microphone the actual information identified for the device is:
Asahi Kasei Microsystems Co., Ltd AK5370 I/F A/D Converter
According to lsusb
I found through Google the Audacity wiki had instructions but I was not able to find the last thing it said to find.
http://wiki.audacityteam.org/index.php?title=USB_mic_on_Linux
lsmod | grep snd
and look for the modules usbcore, snd_usb_audio, snd_usb_lib. If they are loaded, the USB sound should work
nothing USB showed up in my output
Does any one have experience getting one of these USB microphones to work?
I know my microphone plugin on the sound part of my mother board works because I have an old microphone pluged in there, it works but the sound quality is awful. I need a newer microphone that will produce good quality sound for recording tutorials using RecordMyDesktop. If I can't get it to work i will just find a new microphone that plugs in where the old is so I can record.
From a
root terminal;
[root@fatman ~]# lsusbBus 001 Device 005: ID 046d:0990 Logitech, Inc. QuickCam Pro 9000 <-- This is my cam with mic.Bus 001 Device 004: ID 152d:2336 JMicron Technology Corp. / JMicron USA Technology Corp. Hard Disk Drive
Bus 001 Device 003: ID 04b8:0821 Seiko Epson Corp. MFP Composite Device
Bus 001 Device 002: ID 152d:2336 JMicron Technology Corp. / JMicron USA Technology Corp. Hard Disk Drive
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 002 Device 002: ID 045e:0029 Microsoft Corp. IntelliMouse Optical
Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
In Skype, that's the sound device I choose for the microphone. You should also see it in your Kmix settings.
[root@fatman ~]# lsmod |grep usbsnd_usb_audio 82816 2
snd_usb_lib 19328 1 snd_usb_audio
snd_rawmidi 23072 1 snd_usb_lib
usblp 15872 0
snd_hwdep 10756 2 snd_usb_audio,snd_hda_intel
snd_pcm 71428 6 snd_usb_audio,snd_intel8x0,snd_ac97_codec,snd_hda_intel,snd_pcm_oss
snd 51620 23 snd_usb_audio,snd_rawmidi,snd_intel8x0,snd_ac97_codec,snd_hda_intel,snd_hwdep,snd_seq_oss,snd_seq,snd_seq_device,snd_pcm_oss,snd_pcm,snd_timer,snd_mixer_oss
usbhid 48448 0
ff_memless 8840 1 usbhid
usb_storage 105924 9
scsi_mod 136524 4 sg,usb_storage,libata,sd_mod
usbcore 135152 11 snd_usb_audio,snd_usb_lib,uvcvideo,usblp,usbhid,wacom,usb_storage,uhci_hcd,ohci_hcd,ehci_hcd
If you don't see something like above, try;
[root@fatman ~]# modprobe snd_usb_audioThen again try;
[root@fatman ~]# lsmod |grep usbAlso see if there's anything in
/etc/modprobe.conf about the usb sound, with this;
[root@fatman ~]# cat /etc/modprobe.conf |grep snd#blacklist snd-usb-audio <-- I had to comment out this lineremove
snd_hda_intel /sbin/modprobe --first-time -r --ignore-remove
snd_hda_intel
install
snd_hda_intel /sbin/modprobe --first-time --ignore-install
snd_hda_intel
options
snd_hda_intel model=6stack-dig
alias
snd-0
snd-hda-intel
[root@fatman ~]# cat /etc/modprobe.conf |grep usbinstall
usb-interface /sbin/modprobe ohci_hcd; /sbin/modprobe ehci_hcd; /bin/true
#blacklist snd-
usb-audio
install scsi_hostadapter /sbin/modprobe pata_atiixp; /sbin/modprobe ahci; /sbin/modprobe ata_piix; /sbin/modprobe
usb_storage; /bin/true