Author Topic: [solved replaced] USB microphone  (Read 2283 times)

Offline stealth

  • Hero Member
  • *****
  • Posts: 655
[solved replaced] USB microphone
« on: February 01, 2010, 11:56:11 PM »
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.
« Last Edit: February 03, 2010, 12:51:27 PM by stealth »

Offline scoundrel

  • Administrator
  • Hero Member
  • *****
  • Posts: 4577
  • Philosophy= Bigger Hammer
Re: any one with experience using a USB microphone
« Reply #1 on: February 02, 2010, 12:40:06 AM »
have you checked for it in Kmix and picked it as the mic to use ?
Please Donate Today..Or I Will Make You Wish You Had

Offline stealth

  • Hero Member
  • *****
  • Posts: 655
Re: any one with experience using a USB microphone
« Reply #2 on: February 02, 2010, 12:52:52 AM »
sorry, yes that was the very first thing I did and that lead me to the search and steps I did share. There appears to be nothing available via usb and no way to access the usb mic in kmix. I probably have to install a library but I don't know enough about doing what I am trying to do. I chose to stay away from all of this sound stuff until now. doing searches in synaptic doesn't reveal anything (probably because my search words are no good). Doing searches with Goggle doesn't turn anything up initially until I start finding small chunks that give me a little education. Then I can do better searches and sometimes find answers. This is not one of those times yet.

Online Old-Polack

  • Administrator
  • Super Villain
  • *****
  • Posts: 11681
  • ----IOFLU----
Re: any one with experience using a USB microphone
« Reply #3 on: February 02, 2010, 01:20:51 AM »
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 ~]#
lsusb
Bus 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 usb
Code: [Select]
snd_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_audio

Then again try;

[root@fatman ~]# lsmod |grep usb

Also 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 line
remove 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 usb
install 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
Old-Polack

Of what use be there for joy, if not for the sharing thereof?



Lest we forget...

Offline Jaws

  • Sr. Member
  • ****
  • Posts: 445
Re: any one with experience using a USB microphone
« Reply #4 on: February 02, 2010, 08:41:54 AM »
I have the same mic. This is the command I use when I do screencasts:

Code: [Select]
recordmydesktop -windowid $(xwininfo |grep "Window id:"|sed -e "s/xwininfo\:\ Window id:\ // ;s/\ .*//") -fps 15 -device hw:1,0
-device hw:1,0

is for the mic.

More info here:

http://linuxgraphicsusers.com/forum/index.php?topic=626.0

Cheers

Offline stealth

  • Hero Member
  • *****
  • Posts: 655
Re: any one with experience using a USB microphone
« Reply #5 on: February 02, 2010, 09:11:17 AM »
[root@fatman ~]# cat /etc/modprobe.conf |grep usb
install usb-interface /sbin/modprobe ohci_hcd; /sbin/modprobe ehci_hcd; /bin/true
#blacklist snd-usb-audio

yours show blacklist commented out

cat /etc/modprobe.conf |grep usb
install usb-interface /sbin/modprobe ehci_hcd; /sbin/modprobe uhci_hcd; /bin/true
blacklist snd-usb-audio

lsusb
Bus 003 Device 004: ID 0556:0001 Asahi Kasei Microsystems Co., Ltd AK5370 I/F A/D Converter

I changed modprobe.conf so that blacklist was commented out and I am going to reboot to see what happens.

Offline stealth

  • Hero Member
  • *****
  • Posts: 655
Re: any one with experience using a USB microphone
« Reply #6 on: February 02, 2010, 11:30:05 AM »
The mic is showing up in kmix now, but still not working. In kmix capture mic is checked. Commenting and un-commenting the blacklist snd-usb-audio had the same results.

Online Old-Polack

  • Administrator
  • Super Villain
  • *****
  • Posts: 11681
  • ----IOFLU----
Re: any one with experience using a USB microphone
« Reply #7 on: February 02, 2010, 11:37:34 AM »
The mic is showing up in kmix now, but still not working. In kmix capture mic is checked. Commenting and un-commenting the blacklist snd-usb-audio had the same results.

Did you modprobe snd_usb_audio to load the module?
Old-Polack

Of what use be there for joy, if not for the sharing thereof?



Lest we forget...

Offline stealth

  • Hero Member
  • *****
  • Posts: 655
Re: any one with experience using a USB microphone
« Reply #8 on: February 02, 2010, 11:45:46 AM »
I did if it gets done during a reboot.

Online Old-Polack

  • Administrator
  • Super Villain
  • *****
  • Posts: 11681
  • ----IOFLU----
Re: any one with experience using a USB microphone
« Reply #9 on: February 02, 2010, 01:10:13 PM »
I did if it gets done during a reboot.

It's a command you enter, as root, in a terminal. To have it done at boot, add snd_usb_audio on it's own line in /etc/modprobe.preload.
Old-Polack

Of what use be there for joy, if not for the sharing thereof?



Lest we forget...

Offline stealth

  • Hero Member
  • *****
  • Posts: 655
Re: any one with experience using a USB microphone
« Reply #10 on: February 02, 2010, 11:40:39 PM »
Did this modprobe snd_usb_audio no joy and then added the snd_usb_audio line to /etc/modprobe.preload and then rebooted

Still nothing.

Online Old-Polack

  • Administrator
  • Super Villain
  • *****
  • Posts: 11681
  • ----IOFLU----
Re: any one with experience using a USB microphone
« Reply #11 on: February 02, 2010, 11:55:43 PM »
Did this modprobe snd_usb_audio no joy and then added the snd_usb_audio line to /etc/modprobe.preload and then rebooted

Still nothing.

How about the rest of the modules I showed in the other reply? Are they currently loaded? At least the ones that pertain to the usb sound? The items in the right column show the other modules that are interacting with the ones listed in the left column. All the ones that interact need to be present at the same time.
Old-Polack

Of what use be there for joy, if not for the sharing thereof?



Lest we forget...

Offline stealth

  • Hero Member
  • *****
  • Posts: 655
Re: any one with experience using a USB microphone
« Reply #12 on: February 03, 2010, 12:19:09 AM »
yes here is the out put of:
$ lsmod |grep usb
snd_usb_audio          82816  1
snd_usb_lib            19328  1 snd_usb_audio
snd_rawmidi            23072  1 snd_usb_lib
snd_hwdep              10756  2 snd_usb_audio,snd_hda_intel
snd_pcm                71428  3 snd_usb_audio,snd_hda_intel,snd_pcm_oss
snd                    51620  19 snd_usb_audio,snd_rawmidi,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
usbcore               135152  7 snd_usb_audio,snd_usb_lib,uhci_hcd,ohci_hcd,ehci_hcd,usbhid
ff_memless              8840  1 usbhid

All of the ones on the left are in /etc/modprobe.preload a reboot results in still no mic working.

Offline stealth

  • Hero Member
  • *****
  • Posts: 655
Re: any one with experience using a USB microphone
« Reply #13 on: February 03, 2010, 12:26:09 AM »
What does the blacklist mean in /etc/modprobe.conf:
blacklist audio
blacklist snd-usb-audio

Offline stealth

  • Hero Member
  • *****
  • Posts: 655
Re: any one with experience using a USB microphone
« Reply #14 on: February 03, 2010, 12:29:22 AM »
$ cat /etc/modprobe.conf |grep snd
blacklist snd-usb-audio
alias sound-slot-1 snd_hda_intel
options snd-ac97-codec power_save=1
alias sound-slot-0 snd_hda_intel

$ cat /etc/modprobe.conf |grep usb
install usb-interface /sbin/modprobe ehci_hcd; /sbin/modprobe uhci_hcd; /bin/true
blacklist snd-usb-audio