You are not logged in.

#1 2010-09-01 05:20:15

matkam
Member
From: California, USA
Registered: 2010-03-19
Posts: 28

[SOLVED] Setting default audio capture device

I have a USB webcam with a microphone that is recognized by ALSA after the on-board line-in. This is fine in Skype because I can set the capture device to the USB microphone, but Flash seems to only use the first capture device (listing only "Linux Microphone") recognized by ALSA. Is there any way to set the default (presumably, the first) audio capture device, or get Flash to see my USB microhone?

Last edited by matkam (2010-09-10 22:01:53)

Offline

#2 2010-09-10 22:01:26

matkam
Member
From: California, USA
Registered: 2010-03-19
Posts: 28

Re: [SOLVED] Setting default audio capture device

Solved by creating ~/.asoundrc file containing the following:

pcm.usb
{
    type hw
    card U0x46d0x81d
}

pcm.!default
{
    type asym
    playback.pcm
    {
        type plug
        slave.pcm "dmix"
    }
    capture.pcm 
    {
        type plug
        slave.pcm "usb"
    }
}

Offline

Board footer

Powered by FluxBB