From owner-freebsd-questions@FreeBSD.ORG Tue Jan 28 17:14:07 2014 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A5AB0CD5 for ; Tue, 28 Jan 2014 17:14:07 +0000 (UTC) Received: from plane.gmane.org (plane.gmane.org [80.91.229.3]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 60A9C12A6 for ; Tue, 28 Jan 2014 17:14:07 +0000 (UTC) Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1W8CEd-0007f4-KC for freebsd-questions@freebsd.org; Tue, 28 Jan 2014 18:14:03 +0100 Received: from kontrol.kode5.net ([80.229.5.32]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 28 Jan 2014 18:14:03 +0100 Received: from jmzgriffin by kontrol.kode5.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 28 Jan 2014 18:14:03 +0100 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-questions@freebsd.org From: James Griffin Subject: Re: Webcam in-built microphone problem Date: Tue, 28 Jan 2014 17:13:40 +0000 (UTC) Lines: 31 Message-ID: References: <20140128113403.GA31364@sh4-5.1blu.de> <20140128132722.GA11532@sh4-5.1blu.de> <20140128141956.GA2429@tiny-r255948> X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: kontrol.kode5.net User-Agent: slrn/1.0.1 (FreeBSD) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 28 Jan 2014 17:14:07 -0000 On 2014-01-28, Matthias Apitz wrote: > If you have /dev/dsp and /dev/mixer the default file > /compat/linux/etc/alsa/pcm/pcm-oss.conf will work; > > matthias > Ok, got Skype with microphone working. Had to edit the file /compat/linux/etc/alsa/pcm/pcm-oss.conf pcm.oss2 { ... device /dev/dsp2 ... Description " ... Webcam" } ctl.oss2 { ... device /dev/mixer2 ... Description " ... Webcam" } ... added to the file. So essentially adding a second copy of the text in there with a second device number; in my case, I chose 2 because that's what dmesg | grep uaudio showed the camera had been attached to. Hope that makes sense???