From owner-freebsd-multimedia@FreeBSD.ORG Sun Oct 31 04:06:17 2004 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E853116A4CF for ; Sun, 31 Oct 2004 04:06:17 +0000 (GMT) Received: from sccimhc92.asp.att.net (sccimhc92.asp.att.net [63.240.76.166]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8EE6343D1D for ; Sun, 31 Oct 2004 04:06:17 +0000 (GMT) (envelope-from freebsd@nbritton.org) Received: from nbritton.org (12-223-129-46.client.insightbb.com[12.223.129.46]) by sccimhc92.asp.att.net (sccimhc92) with SMTP id <20041031040616i9200oo2ske>; Sun, 31 Oct 2004 04:06:17 +0000 Message-ID: <418464B8.6080601@nbritton.org> Date: Sat, 30 Oct 2004 23:06:16 -0500 From: Nikolas Britton User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.4) Gecko/20030624 X-Accept-Language: en-us, en MIME-Version: 1.0 To: wijs References: <4180E3E2.40707@quicknet.nl> In-Reply-To: <4180E3E2.40707@quicknet.nl> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit cc: freebsd-multimedia@freebsd.org Subject: Re: transport sound across a network X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Oct 2004 04:06:18 -0000 I think (and thats a big if) what your looking for is nas (Network Audio System) http://radscan.com/nas.html It's in ports under audio/nas and It can be automatically compiled into mpg123 using the make option WITH_NAS=YES wijs wrote: > Hi there, > > What is the sound demon for transfering sound over tcp/ip? > I'm quite new in FreeBSD. > I tried it with ESD: > > On my desktop computer I forwarded my sound from my FreeBSD with the > command: > esdplay -s 10.10.10.20 wned.wav > Where 10.10.10.20 is my windows machine and wned.wav is a wav file. > Then I listened on my desktop pc with the command: > esd -promiscuous -tcp -public > It worked, I heard the sound. Then I wanted to forward sound from > other programs. I did this wtih esddsp. I used the command: > esddsp -s 10.10.10.20 mpg123 *.mp3 > > I have got the error : bus error > > bash-2.05b$ esddsp -v -s 10.10.10.20 -m mpg123 U2_walk_on.mp3 > server: 10.10.10.20 > name: mpg123 > command line: mpg123 U2_walk_on.mp3 > High Performance MPEG 1.0/2.0/2.5 Audio Player for Layer 1, 2 and 3. > Version 0.59r (1999/Jun/15). Written and copyrights by Michael Hipp. > Uses code from various people. See 'README' for more! > THIS SOFTWARE COMES WITH ABSOLUTELY NO WARRANTY! USE AT YOUR OWN RISK! > Bus error > > It didn't work and nobody replied to my email. > Does anyone now another sound driver who can do the trick? > > Thanks Koen > _______________________________________________ > freebsd-multimedia@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-multimedia > To unsubscribe, send any mail to > "freebsd-multimedia-unsubscribe@freebsd.org" > From owner-freebsd-multimedia@FreeBSD.ORG Sun Oct 31 04:15:47 2004 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4395916A4CF for ; Sun, 31 Oct 2004 04:15:47 +0000 (GMT) Received: from sccimhc92.asp.att.net (sccimhc92.asp.att.net [63.240.76.166]) by mx1.FreeBSD.org (Postfix) with ESMTP id CDA5643D1D for ; Sun, 31 Oct 2004 04:15:46 +0000 (GMT) (envelope-from freebsd@nbritton.org) Received: from nbritton.org (12-223-129-46.client.insightbb.com[12.223.129.46]) by sccimhc92.asp.att.net (sccimhc92) with SMTP id <20041031041546i9200onr9se>; Sun, 31 Oct 2004 04:15:46 +0000 Message-ID: <418466F1.6000209@nbritton.org> Date: Sat, 30 Oct 2004 23:15:45 -0500 From: Nikolas Britton User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.4) Gecko/20030624 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Jan Stary References: <4180E3E2.40707@quicknet.nl> <20041029132119.GA90720@ns.stare.cz> In-Reply-To: <20041029132119.GA90720@ns.stare.cz> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: freebsd-multimedia@freebsd.org Subject: Re: transport sound across a network X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Oct 2004 04:15:47 -0000 Yea the lpd hack is neat, here's the link btw: http://patrick.wagstrom.net/old/weblog/archives/000128.html Jan Stary wrote: >>Does anyone now another sound driver who can do the trick? >> >> > >One possible way is to just >$ cat file.mp3 | ssh user@machinewithsound "mpg123 -vy -" >which should suffice on a local network > >Somewhere on the net, I have seen people doing sound playing >with lpd: the mp3's, wav's, whatever, are just spooled to properly >configured lpd, which has filters configured for them. > > jan >_______________________________________________ >freebsd-multimedia@freebsd.org mailing list >http://lists.freebsd.org/mailman/listinfo/freebsd-multimedia >To unsubscribe, send any mail to "freebsd-multimedia-unsubscribe@freebsd.org" > > > From owner-freebsd-multimedia@FreeBSD.ORG Sun Oct 31 17:51:36 2004 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B39C716A4CE for ; Sun, 31 Oct 2004 17:51:36 +0000 (GMT) Received: from smtp2.enst.fr (reloaded.enst.fr [137.194.2.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4A57243D39 for ; Sun, 31 Oct 2004 17:51:36 +0000 (GMT) (envelope-from beyssac@bofh.enst.fr) Received: from bofh.enst.fr (bofh.enst.fr [137.194.32.191]) (using TLSv1 with cipher EDH-RSA-DES-CBC3-SHA (168/168 bits)) (Client CN "bofh.enst.fr", Issuer "ENST CA" (not verified)) by smtp2.enst.fr (Postfix) with ESMTP id 76BEB204; Sun, 31 Oct 2004 18:51:26 +0100 (CET) Received: from bofh.enst.fr (localhost [127.0.0.1]) by bofh.enst.fr (8.13.1/8.13.1) with ESMTP id i9VHpO7P077945 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 31 Oct 2004 18:51:24 +0100 (CET) (envelope-from beyssac@bofh.enst.fr) Received: (from beyssac@localhost) by bofh.enst.fr (8.13.1/8.13.1/Submit) id i9VHpMJ3077944; Sun, 31 Oct 2004 18:51:22 +0100 (CET) (envelope-from beyssac) Date: Sun, 31 Oct 2004 18:51:22 +0100 From: Pierre Beyssac To: Edwin Groothuis Message-ID: <20041031175122.GA77764@bofh.enst.fr> References: <20041015123218.GI10358@k7.mavetju> <41701C39.4050401@elischer.org> <20041015225150.GN10358@k7.mavetju> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20041015225150.GN10358@k7.mavetju> User-Agent: Mutt/1.4.2.1i X-message-flag: Warning! Use of Microsoft Outlook makes your system susceptible to worms and viruses cc: Julian Elischer cc: multimedia@freebsd.org Subject: Re: PVR-250/350 driver in the ports tree X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Oct 2004 17:51:36 -0000 On Sat, Oct 16, 2004 at 08:51:50AM +1000, Edwin Groothuis wrote: > The driver itself uses a .sys file from the commercial distribution, > so it will never be easy to get it in the src tree. Just committing the iicbb.c patch to 4, 5 and -current would already save a great deal of pain when installing the port. -- A: Yes. Pierre Beyssac pb@enst.fr >Q: Are you sure? >>A: Because it reverses the logical flow of conversation. >>>Q: Why is top posting annoying in email? From owner-freebsd-multimedia@FreeBSD.ORG Sun Oct 31 18:04:47 2004 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D87AB16A4CE for ; Sun, 31 Oct 2004 18:04:47 +0000 (GMT) Received: from smtp2.enst.fr (enst.enst.fr [137.194.2.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9233443D1F for ; Sun, 31 Oct 2004 18:04:47 +0000 (GMT) (envelope-from beyssac@bofh.enst.fr) Received: from bofh.enst.fr (bofh.enst.fr [137.194.32.191]) (using TLSv1 with cipher EDH-RSA-DES-CBC3-SHA (168/168 bits)) (Client CN "bofh.enst.fr", Issuer "ENST CA" (not verified)) by smtp2.enst.fr (Postfix) with ESMTP id 4CBF853B6A; Sun, 31 Oct 2004 19:04:45 +0100 (CET) Received: from bofh.enst.fr (localhost [127.0.0.1]) by bofh.enst.fr (8.13.1/8.13.1) with ESMTP id i9VI4jvo078300 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 31 Oct 2004 19:04:45 +0100 (CET) (envelope-from beyssac@bofh.enst.fr) Received: (from beyssac@localhost) by bofh.enst.fr (8.13.1/8.13.1/Submit) id i9VI4jOb078299; Sun, 31 Oct 2004 19:04:45 +0100 (CET) (envelope-from beyssac) Date: Sun, 31 Oct 2004 19:04:45 +0100 From: Pierre Beyssac To: Edwin Groothuis Message-ID: <20041031180445.GA78114@bofh.enst.fr> References: <20041015123218.GI10358@k7.mavetju> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20041015123218.GI10358@k7.mavetju> User-Agent: Mutt/1.4.2.1i X-message-flag: Warning! Use of Microsoft Outlook makes your system susceptible to worms and viruses cc: multimedia@freebsd.org Subject: Re: PVR-250/350 driver in the ports tree X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Oct 2004 18:04:48 -0000 On Fri, Oct 15, 2004 at 10:32:18PM +1000, Edwin Groothuis wrote: > A couple of weeks ago I became the happy owner of a PVR-250 card > and of course ran into all possible problems I could imagine. To > make a long story short, it all works now, thanks to the posting > of John Wehle of his cxm driver. That port is really great. > If you have such a card, please see if you can get the card working > with the port! I've ported the driver to -current (see the private mail I sent you and John the patches). My card is a PVR 350, french version. Its tuner (Philips FM1216ME, PAL/SECAM) is unsupported at the moment. I'm working on it but had only limited success so far, if anyone could help me find the datasheets for the FM1216ME and/or the SAA7115 it would be much easier. > What can go wrong: > - Complaints about checksum mismatch of the hcwPVRP2.sys: run "make > makesum" and try again. I have a suggestion: why not make the firmware loadable from userland? This would save 512Kb of precious kernel memory, allow for easier firmware upgrades and possibly allow the rest of the sources to be integrated in FreeBSD. I can work on it if I ever get my tuner to work :-) -- A: Yes. Pierre Beyssac pb@enst.fr >Q: Are you sure? >>A: Because it reverses the logical flow of conversation. >>>Q: Why is top posting annoying in email? From owner-freebsd-multimedia@FreeBSD.ORG Tue Nov 2 03:41:41 2004 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E70FD16A4CE for ; Tue, 2 Nov 2004 03:41:41 +0000 (GMT) Received: from rproxy.gmail.com (rproxy.gmail.com [64.233.170.200]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F36943D54 for ; Tue, 2 Nov 2004 03:41:41 +0000 (GMT) (envelope-from chanhonman@gmail.com) Received: by rproxy.gmail.com with SMTP id 74so208201rnk for ; Mon, 01 Nov 2004 19:41:33 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding; b=XWnHJT0XqOpeF5FxlpjUciF572PfWzUbxcxhmOkknNeCrcwbeiUCuBoMzEarM+46E7cLChnmzluQrazw2EF/ABza27ErZcrGi/C2eCrRoayx2HLeE0OO2Sp135opzD/6YqXb38dj4+20mBY7IFvR2csqndmx/B8wjlrKpU9gqjI= Received: by 10.38.81.57 with SMTP id e57mr70385rnb; Mon, 01 Nov 2004 19:41:33 -0800 (PST) Received: by 10.38.162.50 with HTTP; Mon, 1 Nov 2004 19:41:33 -0800 (PST) Message-ID: <17587136041101194167ae1dcf@mail.gmail.com> Date: Tue, 2 Nov 2004 11:41:33 +0800 From: Spencer Chan To: freebsd-multimedia@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: cxm0: unknown tuner code 0x39 X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Spencer Chan List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Nov 2004 03:41:42 -0000 Hi list, I have a new PVR350 and using the driver from ports. The probing ends with cxm0: unknown tuner code 0x39 cxm0: could not initialize tuner Is there a newer driver version that adds support for this tuner? -regards chan From owner-freebsd-multimedia@FreeBSD.ORG Tue Nov 2 10:33:05 2004 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0C38516A4CE for ; Tue, 2 Nov 2004 10:33:05 +0000 (GMT) Received: from smtp2.enst.fr (enst.enst.fr [137.194.2.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id C87D143D1D for ; Tue, 2 Nov 2004 10:33:04 +0000 (GMT) (envelope-from beyssac@bofh.enst.fr) Received: from bofh.enst.fr (bofh.enst.fr [137.194.32.191]) (using TLSv1 with cipher EDH-RSA-DES-CBC3-SHA (168/168 bits)) (Client CN "bofh.enst.fr", Issuer "ENST CA" (not verified)) by smtp2.enst.fr (Postfix) with ESMTP id CD44F53C37; Tue, 2 Nov 2004 11:33:00 +0100 (CET) Received: from bofh.enst.fr (localhost [127.0.0.1]) by bofh.enst.fr (8.13.1/8.13.1) with ESMTP id iA2AX0co035514 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 2 Nov 2004 11:33:00 +0100 (CET) (envelope-from beyssac@bofh.enst.fr) Received: (from beyssac@localhost) by bofh.enst.fr (8.13.1/8.13.1/Submit) id iA2AX0fl035502; Tue, 2 Nov 2004 11:33:00 +0100 (CET) (envelope-from beyssac) Date: Tue, 2 Nov 2004 11:33:00 +0100 From: Pierre Beyssac To: Spencer Chan Message-ID: <20041102103300.GA33855@bofh.enst.fr> References: <17587136041101194167ae1dcf@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <17587136041101194167ae1dcf@mail.gmail.com> User-Agent: Mutt/1.4.2.1i X-message-flag: Warning! Use of Microsoft Outlook makes your system susceptible to worms and viruses cc: freebsd-multimedia@freebsd.org Subject: Re: cxm0: unknown tuner code 0x39 X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Nov 2004 10:33:05 -0000 On Tue, Nov 02, 2004 at 11:41:33AM +0800, Spencer Chan wrote: > I have a new PVR350 and using the driver from ports. The probing ends with > > cxm0: unknown tuner code 0x39 > cxm0: could not initialize tuner > > Is there a newer driver version that adds support for this tuner? Tuner 0x39 is Philips FM1216ME. It's not supported at the moment (I'm trying to work on it, but no success yet). You can still use the card with the Svideo and composite connector, just add a "case 0x39:" in the "switch (tuner_code)" in cxm_eeprom.c to make the probe happy. -- A: Yes. Pierre Beyssac pb@enst.fr >Q: Are you sure? >>A: Because it reverses the logical flow of conversation. >>>Q: Why is top posting annoying in email? From owner-freebsd-multimedia@FreeBSD.ORG Thu Nov 4 01:12:37 2004 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2ADEB16A4CE for ; Thu, 4 Nov 2004 01:12:37 +0000 (GMT) Received: from mail.cs.ait.ac.th (mail.cs.ait.ac.th [192.41.170.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 07F4E43D5C for ; Thu, 4 Nov 2004 01:12:36 +0000 (GMT) (envelope-from on@cs.ait.ac.th) Received: from mail.cs.ait.ac.th (localhost.cs.ait.ac.th [127.0.0.1]) by mail.cs.ait.ac.th (8.12.11/8.12.11) with ESMTP id iA41CYoo091426 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Thu, 4 Nov 2004 08:12:34 +0700 (ICT) Received: (from on@localhost) by mail.cs.ait.ac.th (8.12.11/8.12.11/Submit) id iA41CYgH091423; Thu, 4 Nov 2004 08:12:34 +0700 (ICT) Date: Thu, 4 Nov 2004 08:12:34 +0700 (ICT) Message-Id: <200411040112.iA41CYgH091423@mail.cs.ait.ac.th> From: Olivier Nicole To: freebsd-multimedia@freebsd.org X-Virus-Scanned: on CSIM by amavisd-milter (http://www.amavis.org/) Subject: Image capture X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Nov 2004 01:12:37 -0000 Hi, I have an application that does image capture for video surveillance. It was designed on 4.x, nowdays running on 4.10 and using a video capture card with a Brooktree 484 chipset. The capture function is copied from the meteor example. Now I am requested to port that application to 25 new boxes. Ideally I'd love to locates hardware that work with the existing software but I will never be able to find bktr 484 card. And the solution must be cheap (so firewire may not be the solution). I cannot spend too much time testing so would prefer to stick to 4.10, and certainly cannot spend money on a solution that may not work. I am looking for any advice in the USB direction or traditionnal PCI video capture card. best regards, Olivier From owner-freebsd-multimedia@FreeBSD.ORG Thu Nov 4 01:39:30 2004 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5665716A4CE for ; Thu, 4 Nov 2004 01:39:30 +0000 (GMT) Received: from mail.gmx.net (pop.gmx.net [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 45AD243D55 for ; Thu, 4 Nov 2004 01:39:29 +0000 (GMT) (envelope-from michaelnottebrock@gmx.net) Received: (qmail 3616 invoked by uid 65534); 4 Nov 2004 01:39:27 -0000 Received: from pD9E24228.dip.t-dialin.net (EHLO lofi.dyndns.org) (217.226.66.40) by mail.gmx.net (mp011) with SMTP; 04 Nov 2004 02:39:27 +0100 X-Authenticated: #443188 Received: from kiste.my.domain (lofi@kiste.my.domain [192.168.8.4]) (authenticated bits=0) by lofi.dyndns.org (8.12.10/8.12.10) with ESMTP id iA41dMGn021527 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Thu, 4 Nov 2004 02:39:24 +0100 (CET) (envelope-from michaelnottebrock@gmx.net) From: Michael Nottebrock To: freebsd-multimedia@freebsd.org Date: Thu, 4 Nov 2004 02:39:13 +0100 User-Agent: KMail/1.7.50 References: <200411040112.iA41CYgH091423@mail.cs.ait.ac.th> In-Reply-To: <200411040112.iA41CYgH091423@mail.cs.ait.ac.th> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart1201835.cbLW7vNkgZ"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200411040239.19017.michaelnottebrock@gmx.net> X-Virus-Scanned: by amavisd-new Subject: Re: Image capture X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Nov 2004 01:39:30 -0000 --nextPart1201835.cbLW7vNkgZ Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Thursday, 4. November 2004 02:12, Olivier Nicole wrote: > Hi, > > I have an application that does image capture for video surveillance. > > It was designed on 4.x, nowdays running on 4.10 and using a video > capture card with a Brooktree 484 chipset. The capture function is > copied from the meteor example. > > Now I am requested to port that application to 25 new boxes. Ideally > I'd love to locates hardware that work with the existing software but > I will never be able to find bktr 484 card. You certainly mean bt848... TV-Cards with booktree 848/878 chipsets are sti= ll=20 available for small money, for example 'Leadtek TV 2000 XP Remote' or=20 'Hauppauge WinTV Express'. =2D-=20 ,_, | Michael Nottebrock | lofi@freebsd.org (/^ ^\) | FreeBSD - The Power to Serve | http://www.freebsd.org \u/ | K Desktop Environment on FreeBSD | http://freebsd.kde.org --nextPart1201835.cbLW7vNkgZ Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.6 (FreeBSD) iD8DBQBBiYhGXhc68WspdLARAsPeAJ9yTEsXiUO1MnDFn1HuD+AwqLBylwCeMd4r eVJxXJws5yUU4SvN/uDQvuA= =wwv7 -----END PGP SIGNATURE----- --nextPart1201835.cbLW7vNkgZ-- From owner-freebsd-multimedia@FreeBSD.ORG Thu Nov 4 08:53:28 2004 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B049316A4CE for ; Thu, 4 Nov 2004 08:53:28 +0000 (GMT) Received: from rproxy.gmail.com (rproxy.gmail.com [64.233.170.194]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5C26F43D2D for ; Thu, 4 Nov 2004 08:53:28 +0000 (GMT) (envelope-from zenboy@gmail.com) Received: by rproxy.gmail.com with SMTP id a41so225810rng for ; Thu, 04 Nov 2004 00:53:27 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding; b=OyrMTTwvgWYofztSfcepRRdvkXw8ELerdAD/+vfHe14CEiPC29sMTek4CbmEe1ifY8/cSlDaU2F2mT9CHNr0REUW4BdECXWdjpv7zfRXCvseKB1TAMnfDtV++RS7vfD8/ZpX2/TBRZfMmQ9tp+DagIFaNz/KxbFAWmG++mJhOPc= Received: by 10.38.24.13 with SMTP id 13mr821851rnx; Thu, 04 Nov 2004 00:53:27 -0800 (PST) Received: by 10.39.1.9 with HTTP; Thu, 4 Nov 2004 00:53:27 -0800 (PST) Message-ID: Date: Thu, 4 Nov 2004 00:53:27 -0800 From: Aaron Walker To: freebsd-multimedia@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Onboard Sound - VIA8233 X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Aaron Walker List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Nov 2004 08:53:28 -0000 I have managed to get my FreeBSD 5.2 box going on Xorg (which was an unholy pain), but my furthur attempts to make this into a multimedia box are being crushed by the problem of Audio. My old Turtle Beach Montego II card won't even be recognized by the audio/aureal-kmod port (and manually defining it didn't help). And the onboard sound of my Epox 8K3A+ is playing, but only on the left channel. The (important) output of scanpci is : pci bus 0x0000 cardnum 0x11 function 0x00: vendor 0x1106 device 0x3147 VIA Technologies, Inc. VT8233A ISA Bridge pci bus 0x0000 cardnum 0x11 function 0x05: vendor 0x1106 device 0x3059 VIA Technologies, Inc. VT8233/A/8235 AC97 Audio Controller The output of cat /dev/sndstat is : FreeBSD Audio Driver (newpcm) Installed devices: pcm0: at io 0xec00 irq 5 kld snd_via8233 (1p/1r/0v channels duplex default) I am loading the kld for snd_via8233 all by itself, is there some option I have to pass to get it to play in stereo? Aaron Walker Fairview, OR From owner-freebsd-multimedia@FreeBSD.ORG Thu Nov 4 12:21:55 2004 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E9A2216A4CE for ; Thu, 4 Nov 2004 12:21:55 +0000 (GMT) Received: from web41202.mail.yahoo.com (web41202.mail.yahoo.com [66.218.93.35]) by mx1.FreeBSD.org (Postfix) with SMTP id C1B9543D1F for ; Thu, 4 Nov 2004 12:21:55 +0000 (GMT) (envelope-from arne_woerner@yahoo.com) Received: (qmail 94604 invoked by uid 60001); 4 Nov 2004 12:21:55 -0000 Message-ID: <20041104122155.94602.qmail@web41202.mail.yahoo.com> Received: from [83.129.209.220] by web41202.mail.yahoo.com via HTTP; Thu, 04 Nov 2004 04:21:55 PST Date: Thu, 4 Nov 2004 04:21:55 -0800 (PST) From: Arne "Wörner" To: on@cs.ait.ac.th MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii cc: freebsd-multimedia@freebsd.org Subject: Re: Image capture X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Nov 2004 12:21:56 -0000 I would like to mention Pinnacle PCTV Rave TV here, because: 1. It might be less expensive. 2. Although it does not have a Brooktree 848/878 chipset, it can be used with FreeBSD after a few modifications, that are not merged into R4.10 now (I do not know why). At least I had to modify four files in sys/dev/bktr and now 5.2-CURRENT-20040408 can use the card (using the bktr driver/interface). Can somebody tell me, how the necessary changes can be merged into 6.0-CURRENT / 5-STABLE? Thx. -Arne __________________________________ Do you Yahoo!? Check out the new Yahoo! Front Page. www.yahoo.com From owner-freebsd-multimedia@FreeBSD.ORG Thu Nov 4 12:33:51 2004 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6CEC816A4CE for ; Thu, 4 Nov 2004 12:33:51 +0000 (GMT) Received: from web41210.mail.yahoo.com (web41210.mail.yahoo.com [66.218.93.43]) by mx1.FreeBSD.org (Postfix) with SMTP id 33E4143D4C for ; Thu, 4 Nov 2004 12:33:51 +0000 (GMT) (envelope-from arne_woerner@yahoo.com) Received: (qmail 60691 invoked by uid 60001); 4 Nov 2004 12:33:51 -0000 Message-ID: <20041104123350.60689.qmail@web41210.mail.yahoo.com> Received: from [83.129.209.220] by web41210.mail.yahoo.com via HTTP; Thu, 04 Nov 2004 04:33:50 PST Date: Thu, 4 Nov 2004 04:33:50 -0800 (PST) From: Arne "Wörner" To: luisjoseve@gmail.com MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii cc: freebsd-multimedia@freebsd.org Subject: Re: TV/FM card X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Nov 2004 12:33:51 -0000 There was a message (8379182a040912044319e276fd@mail.gmail.com) at 2004-09-12(?) with a response at 2004-09-09(?) in this mailing list. I use a Pinnacle PCTV Rave card, that does not habe a Brooktree tuner chipset but a MT2032. With a few changes to the bktr driver of FreeBSD 5.2-CURRENT-20040408 the MT2032 tuner can be integrated into the driver. It works fine. But I do not remember, who gave me the modifications, so that I cannot say, who invented the modifications... If somebody still wants to use a Pinnacle card, he or she can send me a short message and I will send back the diffs... I would be glad, if somebody could tell me, how to merge the changes into 5.3-STABLE and/or 6.0-CURRENT. Thx. -Arne __________________________________ Do you Yahoo!? Check out the new Yahoo! Front Page. www.yahoo.com From owner-freebsd-multimedia@FreeBSD.ORG Thu Nov 4 12:35:39 2004 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CD44F16A4CE for ; Thu, 4 Nov 2004 12:35:39 +0000 (GMT) Received: from web41212.mail.yahoo.com (web41212.mail.yahoo.com [66.218.93.45]) by mx1.FreeBSD.org (Postfix) with SMTP id BFDE843D1D for ; Thu, 4 Nov 2004 12:35:39 +0000 (GMT) (envelope-from arne_woerner@yahoo.com) Received: (qmail 72398 invoked by uid 60001); 4 Nov 2004 12:35:39 -0000 Message-ID: <20041104123539.72396.qmail@web41212.mail.yahoo.com> Received: from [83.129.209.220] by web41212.mail.yahoo.com via HTTP; Thu, 04 Nov 2004 04:35:39 PST Date: Thu, 4 Nov 2004 04:35:39 -0800 (PST) From: Arne "Wörner" To: luisjoseve@gmail.com MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii cc: freebsd-multimedia@freebsd.org Subject: Re: TV/FM card X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Nov 2004 12:35:39 -0000 Oops... I just found the messages by using the "all" option and not the "recent" option: The author is Branko Lankester and the diffs can be found here: http://www.euronet.nl/~branko/bktr-pctv-rave.diff Sorry... -Arne __________________________________ Do you Yahoo!? Check out the new Yahoo! Front Page. www.yahoo.com From owner-freebsd-multimedia@FreeBSD.ORG Thu Nov 4 12:42:45 2004 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2267916A4CE for ; Thu, 4 Nov 2004 12:42:45 +0000 (GMT) Received: from rproxy.gmail.com (rproxy.gmail.com [64.233.170.193]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA7C243D54 for ; Thu, 4 Nov 2004 12:42:44 +0000 (GMT) (envelope-from arnoud.tijssen@gmail.com) Received: by rproxy.gmail.com with SMTP id a41so245542rng for ; Thu, 04 Nov 2004 04:42:42 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding; b=SC9hq2QgEBn0x38WNUk2gLzQD9Y5ab12m1bo/GcSnuX7zF/OrgaCWatyKMT/SiQK3cNgH8pp9ke9kLykpcNreuLNUPNkq5RpMTCb0WoHv5b/IKlK+05dBQKVj7HzBcCPLM5Hp5CZn+xMdwMB60yGdbjvOcvuxGv6bVjZOnutb4o= Received: by 10.38.181.31 with SMTP id d31mr519230rnf; Thu, 04 Nov 2004 04:42:42 -0800 (PST) Received: by 10.38.24.12 with HTTP; Thu, 4 Nov 2004 04:42:41 -0800 (PST) Message-ID: Date: Thu, 4 Nov 2004 13:42:41 +0100 From: Arnoud Tijssen To: freebsd-multimedia@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: error installing kde-multimedia X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Arnoud Tijssen List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Nov 2004 12:42:45 -0000 Hi, When trying to install kde-multimedia3 through the ports collection I received the following error: tag.o: In function `Tag::Tag(QString const&)': tag.o(.text+0x106): undefined reference to `TagLib::MPEG::File::File(char const*, bool, TagLib::AudioProperties::ReadStyle)' tag.o(.text+0x116): undefined reference to `TagLib::File::isValid() const' tag.o(.text+0x131): undefined reference to `TagLib::MPEG::File::~File()' tag.o(.text+0x17f): undefined reference to `TagLib::FLAC::File::File(char const*, bool, TagLib::AudioProperties::ReadStyle)' tag.o(.text+0x18f): undefined reference to `TagLib::File::isOpen() const' tag.o(.text+0x1aa): undefined reference to `TagLib::FLAC::File::~File()' tag.o(.text+0x1f2): undefined reference to `TagLib::MPC::File::File(char const*, bool, TagLib::AudioProperties::ReadStyle)' tag.o(.text+0x205): undefined reference to `TagLib::File::isOpen() const' tag.o(.text+0x223): undefined reference to `TagLib::MPC::File::~File()' tag.o(.text+0x26f): undefined reference to `TagLib::Ogg::FLAC::File::File(char const*, bool, TagLib::AudioProperties::ReadStyle)' tag.o(.text+0x27f): undefined reference to `TagLib::File::isOpen() const' tag.o(.text+0x29a): undefined reference to `TagLib::Ogg::FLAC::File::~File()' tag.o(.text+0x2e2): undefined reference to `TagLib::Vorbis::File::File(char const*, bool, TagLib::AudioProperties::ReadStyle)' tag.o(.text+0x2f2): undefined reference to `TagLib::File::isValid() const' tag.o(.text+0x30d): undefined reference to `TagLib::Vorbis::File::~File()' tag.o: In function `Tag::Tag(QString const&)': tag.o(.text+0x626): undefined reference to `TagLib::MPEG::File::File(char const*, bool, TagLib::AudioProperties::ReadStyle)' tag.o(.text+0x636): undefined reference to `TagLib::File::isValid() const' tag.o(.text+0x651): undefined reference to `TagLib::MPEG::File::~File()' tag.o(.text+0x69f): undefined reference to `TagLib::FLAC::File::File(char const*, bool, TagLib::AudioProperties::ReadStyle)' tag.o(.text+0x6af): undefined reference to `TagLib::File::isOpen() const' tag.o(.text+0x6ca): undefined reference to `TagLib::FLAC::File::~File()' tag.o(.text+0x712): undefined reference to `TagLib::MPC::File::File(char const*, bool, TagLib::AudioProperties::ReadStyle)' tag.o(.text+0x725): undefined reference to `TagLib::File::isOpen() const' tag.o(.text+0x743): undefined reference to `TagLib::MPC::File::~File()' tag.o(.text+0x78f): undefined reference to `TagLib::Ogg::FLAC::File::File(char const*, bool, TagLib::AudioProperties::ReadStyle)' tag.o(.text+0x79f): undefined reference to `TagLib::File::isOpen() const' tag.o(.text+0x7ba): undefined reference to `TagLib::Ogg::FLAC::File::~File()' tag.o(.text+0x802): undefined reference to `TagLib::Vorbis::File::File(char const*, bool, TagLib::AudioProperties::ReadStyle)' tag.o(.text+0x812): undefined reference to `TagLib::File::isValid() const' tag.o(.text+0x82d): undefined reference to `TagLib::Vorbis::File::~File()' tag.o: In function `Tag::save()': tag.o(.text+0xa4a): undefined reference to `TagLib::ID3v2::FrameFactory::instance()' tag.o(.text+0xa5a): undefined reference to `TagLib::ID3v2::FrameFactory::setDefaultTextEncoding(TagLib::String::Type)' tag.o(.text+0xab3): undefined reference to `TagLib::MPEG::File::File(char const*, bool, TagLib::AudioProperties::ReadStyle)' tag.o(.text+0xb10): undefined reference to `TagLib::FLAC::File::File(char const*, bool, TagLib::AudioProperties::ReadStyle)' tag.o(.text+0xb70): undefined reference to `TagLib::MPC::File::File(char const*, bool, TagLib::AudioProperties::ReadStyle)' tag.o(.text+0xbd0): undefined reference to `TagLib::Ogg::FLAC::File::File(char const*, bool, TagLib::AudioProperties::ReadStyle)' tag.o(.text+0xc26): undefined reference to `TagLib::Vorbis::File::File(char const*, bool, TagLib::AudioProperties::ReadStyle)' tag.o(.text+0xc46): undefined reference to `TagLib::File::isValid() const' tag.o(.text+0xc66): undefined reference to `TagLib::File::readOnly() const' tag.o(.text+0xca3): undefined reference to `TagLib::String::String(char const*, TagLib::String::Type)' tag.o(.text+0xcbf): undefined reference to `TagLib::String::~String()' tag.o(.text+0xcf6): undefined reference to `TagLib::String::String(char const*, TagLib::String::Type)' tag.o(.text+0xd12): undefined reference to `TagLib::String::~String()' tag.o(.text+0xd49): undefined reference to `TagLib::String::String(char const*, TagLib::String::Type)' tag.o(.text+0xd65): undefined reference to `TagLib::String::~String()' tag.o(.text+0xd9c): undefined reference to `TagLib::String::String(char const*, TagLib::String::Type)' tag.o(.text+0xdb8): undefined reference to `TagLib::String::~String()' tag.o(.text+0xdef): undefined reference to `TagLib::String::String(char const*, TagLib::String::Type)' tag.o(.text+0xe0b): undefined reference to `TagLib::String::~String()' tag.o: In function `Tag::setup(TagLib::File*)': tag.o(.text+0x1498): undefined reference to `TagLib::String::toCString(bool) const' tag.o(.text+0x1515): undefined reference to `TagLib::String::~String()' tag.o(.text+0x1545): undefined reference to `TagLib::String::toCString(bool) const' tag.o(.text+0x15c2): undefined reference to `TagLib::String::~String()' tag.o(.text+0x15f2): undefined reference to `TagLib::String::toCString(bool) const' tag.o(.text+0x166f): undefined reference to `TagLib::String::~String()' tag.o(.text+0x169f): undefined reference to `TagLib::String::toCString(bool) const' tag.o(.text+0x171c): undefined reference to `TagLib::String::~String()' tag.o(.text+0x174c): undefined reference to `TagLib::String::toCString(bool) const' tag.o(.text+0x17c9): undefined reference to `TagLib::String::~String()' tageditor.o: In function `TagEditor::readConfig()': tageditor.o(.text+0x1cad): undefined reference to `TagLib::ID3v1::genreList()' tageditor.o(.text+0x1ce9): undefined reference to `TagLib::String::toCString(bool) const' tageditor.o(.text+0x1e39): undefined reference to `TagLib::StringList::~StringList()' /usr/local/lib/libtag.so: undefined reference to `cerr' /usr/local/lib/libtag.so: undefined reference to `endl(ostream &)' /usr/local/lib/libtag.so: undefined reference to `ostream::operator<<(char)' /usr/local/lib/libtag.so: undefined reference to `__rtti_user' /usr/local/lib/libtag.so: undefined reference to `__rtti_si' /usr/local/lib/libtag.so: undefined reference to `ostream::operator<<(char const *)' /usr/local/lib/libtag.so: undefined reference to `ostream::operator<<(int)' /usr/local/lib/libtag.so: undefined reference to `ostream::operator<<(unsigned int)' /usr/local/lib/libtag.so: undefined reference to `__builtin_vec_new' /usr/local/lib/libtag.so: undefined reference to `__builtin_vec_delete' /usr/local/lib/libtag.so: undefined reference to `ostream::write(char const *, int)' /usr/local/lib/libtag.so: undefined reference to `__builtin_delete' /usr/local/lib/libtag.so: undefined reference to `__terminate' /usr/local/lib/libtag.so: undefined reference to `__builtin_new' /usr/local/lib/libtag.so: undefined reference to `cout' gmake[3]: *** [juk] Error 1 gmake[3]: Leaving directory `/usr/ports/multimedia/kdemultimedia3/work/kdemultimedia-3.3.0/juk' gmake[2]: *** [all-recursive] Error 1 gmake[2]: Leaving directory `/usr/ports/multimedia/kdemultimedia3/work/kdemultimedia-3.3.0/juk' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/usr/ports/multimedia/kdemultimedia3/work/kdemultimedia-3.3.0' gmake: *** [all] Error 2 *** Error code 2 Stop in /usr/ports/multimedia/kdemultimedia3. [root@blackhole//usr/ports/multimedia/kdemultimedia3]#make deinstall ===> Deinstalling for multimedia/kdemultimedia3 pkg_info: package bsdpan-XML-Parser-2.34 has no origin recorded ===> kdemultimedia not installed, skipping How do solve this? Greetz, Arnoud From owner-freebsd-multimedia@FreeBSD.ORG Thu Nov 4 12:54:08 2004 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4F5AB16A4CE for ; Thu, 4 Nov 2004 12:54:08 +0000 (GMT) Received: from servecml.e-cml.org (servecml.e-cml.org [194.167.168.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id B664B43D45 for ; Thu, 4 Nov 2004 12:54:07 +0000 (GMT) (envelope-from hmichelon@e-cml.org) Received: (qmail 38422 invoked by uid 98); 4 Nov 2004 12:54:08 -0000 Received: from hmichelon@e-cml.org by servecml.e-cml.org by uid 82 with qmail-scanner-1.22 Clear:RC:1(194.167.168.1):SA:0(?/?):. Processed in 9.08802 secs); 04 Nov 2004 12:54:08 -0000 X-Qmail-Scanner-Mail-From: hmichelon@e-cml.org via servecml.e-cml.org X-Qmail-Scanner: 1.22 (Clear:RC:1(194.167.168.1):SA:0(?/?):. Processed in 9.08802 secs) Received: from unknown (HELO [172.16.0.23]) ([194.167.168.1]) (envelope-sender ) by servecml.e-cml.org (qmail-ldap-1.03) with SMTP for ; 4 Nov 2004 12:53:59 -0000 Message-ID: <418A2683.80101@e-cml.org> Date: Thu, 04 Nov 2004 13:54:27 +0100 From: Henri Michelon Organization: ECML User-Agent: Mozilla Thunderbird 0.8 (X11/20041019) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-multimedia@freebsd.org Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Checker-Version: SpamAssassin 3.0.1 (2004-10-22) on servecml.e-cml.org X-Spam-Status: No, score=-102.0 required=12.5 tests=ALL_TRUSTED,AWL,BAYES_00, NO_RDNS2,USER_IN_WHITELIST autolearn=ham version=3.0.1 X-Spam-Level: Subject: gdvrecv, DV Tools for FreeBSD X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Nov 2004 12:54:08 -0000 Hello, gdvrecv is a set of tools for FreeBSD to receives audio and video data from a digital camcorder via an IEEE 1394 (widely known as FireWire) link and stores them into an DV file. gdvrecv does the same thing as the fwcontrol -R command, but is more "user-friendly" (i.e. with a Gtk UI). More informations at http://gdvrecv.sourceforge.net/ Regards, Henri Michelon From owner-freebsd-multimedia@FreeBSD.ORG Thu Nov 4 14:48:40 2004 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 81C6816A4CF for ; Thu, 4 Nov 2004 14:48:40 +0000 (GMT) Received: from mail.gmx.net (pop.gmx.de [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 70C7A43D64 for ; Thu, 4 Nov 2004 14:48:39 +0000 (GMT) (envelope-from michaelnottebrock@gmx.net) Received: (qmail 29800 invoked by uid 65534); 4 Nov 2004 14:48:38 -0000 Received: from pD95D8D0F.dip.t-dialin.net (EHLO lofi.dyndns.org) (217.93.141.15) by mail.gmx.net (mp011) with SMTP; 04 Nov 2004 15:48:38 +0100 X-Authenticated: #443188 Received: from kiste.my.domain (lofi@kiste.my.domain [192.168.8.4]) (authenticated bits=0) by lofi.dyndns.org (8.12.10/8.12.10) with ESMTP id iA4EmY17003537 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Thu, 4 Nov 2004 15:48:35 +0100 (CET) (envelope-from michaelnottebrock@gmx.net) From: Michael Nottebrock To: freebsd-multimedia@freebsd.org, Aaron Walker Date: Thu, 4 Nov 2004 15:48:23 +0100 User-Agent: KMail/1.7.50 References: In-Reply-To: MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart3880579.E71RTgJt7T"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200411041548.24537.michaelnottebrock@gmx.net> X-Virus-Scanned: by amavisd-new Subject: Re: Onboard Sound - VIA8233 X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Nov 2004 14:48:40 -0000 --nextPart3880579.E71RTgJt7T Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Thursday, 4. November 2004 09:53, Aaron Walker wrote: > I have managed to get my FreeBSD 5.2 box going on Xorg (which was an > unholy pain), but my furthur attempts to make this into a multimedia > box are being crushed by the problem of Audio. My old Turtle Beach > Montego II card won't even be recognized by the audio/aureal-kmod port > (and manually defining it didn't help). And the onboard sound of my > Epox 8K3A+ is playing, but only on the left channel. That's certainly weird. Have you verified there's not some offbase mixer=20 balance setting or maybe even a hardware defect (cable/connector-on-mobo)=20 here (you could try booting a knoppix cd for testing ...) ? =2D-=20 ,_, | Michael Nottebrock | lofi@freebsd.org (/^ ^\) | FreeBSD - The Power to Serve | http://www.freebsd.org \u/ | K Desktop Environment on FreeBSD | http://freebsd.kde.org --nextPart3880579.E71RTgJt7T Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.6 (FreeBSD) iD8DBQBBikE4Xhc68WspdLARArxuAKCkkNTQTe/x0bpWhKAO74vYCQa68QCgqdte h5dNvqvM0liwp3NvofrOEXY= =nw7J -----END PGP SIGNATURE----- --nextPart3880579.E71RTgJt7T-- From owner-freebsd-multimedia@FreeBSD.ORG Thu Nov 4 16:33:25 2004 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AD5AB16A4CE for ; Thu, 4 Nov 2004 16:33:25 +0000 (GMT) Received: from mail.gmx.net (imap.gmx.net [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id B1D4A43D1F for ; Thu, 4 Nov 2004 16:33:24 +0000 (GMT) (envelope-from michaelnottebrock@gmx.net) Received: (qmail 15508 invoked by uid 65534); 4 Nov 2004 16:33:22 -0000 Received: from pD95D8D0F.dip.t-dialin.net (EHLO lofi.dyndns.org) (217.93.141.15) by mail.gmx.net (mp008) with SMTP; 04 Nov 2004 17:33:22 +0100 X-Authenticated: #443188 Received: from kiste.my.domain (lofi@kiste.my.domain [192.168.8.4]) (authenticated bits=0) by lofi.dyndns.org (8.12.10/8.12.10) with ESMTP id iA4GXK17004910 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Thu, 4 Nov 2004 17:33:20 +0100 (CET) (envelope-from michaelnottebrock@gmx.net) From: Michael Nottebrock To: Aaron Walker Date: Thu, 4 Nov 2004 17:33:18 +0100 User-Agent: KMail/1.7.50 References: <200411041548.24537.michaelnottebrock@gmx.net> In-Reply-To: MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart1198432.YM4Dl4ilpK"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200411041733.19680.michaelnottebrock@gmx.net> X-Virus-Scanned: by amavisd-new cc: freebsd-multimedia@freebsd.org Subject: Re: Onboard Sound - VIA8233 X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Nov 2004 16:33:25 -0000 --nextPart1198432.YM4Dl4ilpK Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Thursday, 4. November 2004 17:05, Aaron Walker wrote: > Well, when I run the mixer full to the right, I get very low sound on > the left channel, but no sound on the right at all. I think I'll try a > knoppix boot just for kicks. Maybe even throw win98 on a spare hdd to > make sure. Results in a bit. Please keep the mailing list cc'd. =2D-=20 ,_, | Michael Nottebrock | lofi@freebsd.org (/^ ^\) | FreeBSD - The Power to Serve | http://www.freebsd.org \u/ | K Desktop Environment on FreeBSD | http://freebsd.kde.org --nextPart1198432.YM4Dl4ilpK Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.6 (FreeBSD) iD8DBQBBilnPXhc68WspdLARApl0AKCeqeFwsy83ds2sKdOxKU1iftazKwCfQlAA YEmv31UKIlaAAkUeJ/F2WrA= =2hqW -----END PGP SIGNATURE----- --nextPart1198432.YM4Dl4ilpK-- From owner-freebsd-multimedia@FreeBSD.ORG Thu Nov 4 17:28:58 2004 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 62E7716A4CE for ; Thu, 4 Nov 2004 17:28:58 +0000 (GMT) Received: from mproxy.gmail.com (mproxy.gmail.com [216.239.56.249]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4E98043D1F for ; Thu, 4 Nov 2004 17:28:58 +0000 (GMT) (envelope-from aggiezach@gmail.com) Received: by mproxy.gmail.com with SMTP id u33so202778cwc for ; Thu, 04 Nov 2004 09:28:55 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding; b=oGPRyBVFMm+0CFJW/QR8Qh84QG+eRghjibd1nPErB+MwFEQYxbxM9eStZj8DN3mETOCeE7CT5kOC4j6QfQ9Z6wckYh95LkwOJ6quuQXuL+/YmF96m96ErRNQh39npIILB2T3HijxL2raiYHxtDxE0SPoCxeYtsYzQA6Lv/kOIIk= Received: by 10.11.120.79 with SMTP id s79mr215147cwc; Thu, 04 Nov 2004 09:28:54 -0800 (PST) Received: by 10.11.122.50 with HTTP; Thu, 4 Nov 2004 09:28:54 -0800 (PST) Message-ID: Date: Thu, 4 Nov 2004 11:28:54 -0600 From: Zach To: freebsd-multimedia@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: WinTV PVR 350 w/ 5.3-stable X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Zach List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Nov 2004 17:28:58 -0000 Howdy, Just wondering if anyone else has had any luck getting FreeBSD 5.3-stable and a WinTV PVR 350 (with the CX2388x chipset) working together successfully? I've installing the cxm driver but for some reason it just doesn't seem to work when I try to load the driver into the Kernel (No specific error messages either). The /dev/cxm0 device never shows up. Here is the output of pciconf -lv none3@pci2:8:0: class=0x040000 card=0x34010070 chip=0x880014f1 rev=0x05 hdr=0x00 vendor = 'Conexant Systems, Inc' device = 'CX2388x TV Capture Card' class = multimedia subclass = video none4@pci2:8:1: class=0x048000 card=0x34010070 chip=0x880114f1 rev=0x05 hdr=0x00 vendor = 'Conexant Systems, Inc' device = 'CX2388x TV Capture Card' class = multimedia Thanks for the help, Zach FTA c/o 2005 A-Whoop aggiezach@gmail.com From owner-freebsd-multimedia@FreeBSD.ORG Thu Nov 4 20:25:52 2004 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB7BE16A4CE for ; Thu, 4 Nov 2004 20:25:52 +0000 (GMT) Received: from servecml.e-cml.org (servecml.e-cml.org [194.167.168.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C09B43D5F for ; Thu, 4 Nov 2004 20:25:52 +0000 (GMT) (envelope-from hmichelon@e-cml.org) Received: (qmail 49506 invoked by uid 80); 4 Nov 2004 20:25:54 -0000 Received: from AMarseille-151-1-4-202.w82-122.abo.wanadoo.fr (AMarseille-151-1-4-202.w82-122.abo.wanadoo.fr [82.122.194.202]) by webmail.e-cml.org (IMP) with HTTP for ; Thu, 4 Nov 2004 21:25:54 +0100 Message-ID: <1099599954.418a90525bb2b@webmail.e-cml.org> Date: Thu, 4 Nov 2004 21:25:54 +0100 From: Henri Michelon To: vova@fbsd.ru References: <418A2683.80101@e-cml.org> <1099596776.1086.1.camel@localhost> In-Reply-To: <1099596776.1086.1.camel@localhost> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit User-Agent: Internet Messaging Program (IMP) 3.2.2 / FreeBSD-4.9 X-Originating-IP: 82.122.194.202 X-Originating-User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv_1.7.3) Gecko/20041029 Firefox/1.0RC1 X-Poweredby: FreeBSD - www.freebsd.org - The Power To Serve ! X-WebMail-Company: ECML - www.e-cml.org cc: freebsd-multimedia@freebsd.org Subject: Re: gdvrecv, DV Tools for FreeBSD X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Nov 2004 20:25:53 -0000 Hello, Selon Vladimir Grebenschikov : > How about port in freebsd ports tree ? > http://www.freebsd.org/cgi/query-pr.cgi?pr=73442 The port is already avaible if you want to install from the sources: http://gdvrecv.sourceforge.net/?page=install Regards, Henri From owner-freebsd-multimedia@FreeBSD.ORG Fri Nov 5 00:22:34 2004 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 43F8516A4CE for ; Fri, 5 Nov 2004 00:22:34 +0000 (GMT) Received: from smtp2.enst.fr (enst.enst.fr [137.194.2.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id D5B1B43D49 for ; Fri, 5 Nov 2004 00:22:31 +0000 (GMT) (envelope-from beyssac@bofh.enst.fr) Received: from bofh.enst.fr (bofh.enst.fr [137.194.32.191]) (using TLSv1 with cipher EDH-RSA-DES-CBC3-SHA (168/168 bits)) (Client CN "bofh.enst.fr", Issuer "ENST CA" (not verified)) by smtp2.enst.fr (Postfix) with ESMTP id 5DFA453AB0; Fri, 5 Nov 2004 01:22:30 +0100 (CET) Received: from bofh.enst.fr (localhost [127.0.0.1]) by bofh.enst.fr (8.13.1/8.13.1) with ESMTP id iA50MTi0063744 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 5 Nov 2004 01:22:29 +0100 (CET) (envelope-from beyssac@bofh.enst.fr) Received: (from beyssac@localhost) by bofh.enst.fr (8.13.1/8.13.1/Submit) id iA50MTZv063743; Fri, 5 Nov 2004 01:22:29 +0100 (CET) (envelope-from beyssac) Date: Fri, 5 Nov 2004 01:22:29 +0100 From: Pierre Beyssac To: Zach Message-ID: <20041105002229.GA63613@bofh.enst.fr> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.1i X-message-flag: Warning! Use of Microsoft Outlook makes your system susceptible to worms and viruses cc: freebsd-multimedia@freebsd.org Subject: Re: WinTV PVR 350 w/ 5.3-stable X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Nov 2004 00:22:34 -0000 On Thu, Nov 04, 2004 at 11:28:54AM -0600, Zach wrote: > Just wondering if anyone else has had any luck getting FreeBSD > 5.3-stable and a WinTV PVR 350 (with the CX2388x chipset) working > together successfully? > > none3@pci2:8:0: class=0x040000 card=0x34010070 chip=0x880014f1 rev=0x05 hdr=0x00 > vendor = 'Conexant Systems, Inc' > device = 'CX2388x TV Capture Card' The cxm driver is for CX23415 cards: cxm0@pci1:6:0: class=0x040000 card=0x40000070 chip=0x08034444 rev=0x01 hdr=0x00 vendor = 'Conexant Inc (Was: Globespan, ICompression Inc)' device = 'iTVC15/CX23415 MPEG Codec' class = multimedia subclass = video -- A: Yes. Pierre Beyssac pb@enst.fr >Q: Are you sure? >>A: Because it reverses the logical flow of conversation. >>>Q: Why is top posting annoying in email? From owner-freebsd-multimedia@FreeBSD.ORG Fri Nov 5 07:44:07 2004 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE53E16A4CE for ; Fri, 5 Nov 2004 07:44:07 +0000 (GMT) Received: from vbook.fbsd.ru (asplinux.ru [195.133.213.194]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F1CF43D45 for ; Fri, 5 Nov 2004 07:44:07 +0000 (GMT) (envelope-from vova@vbook.fbsd.ru) Received: from vova by vbook.fbsd.ru with local (Exim 4.42 (FreeBSD)) id 1CPnLt-0000af-Et; Thu, 04 Nov 2004 22:32:57 +0300 From: Vladimir Grebenschikov To: Henri Michelon In-Reply-To: <418A2683.80101@e-cml.org> References: <418A2683.80101@e-cml.org> Content-Type: text/plain; charset=KOI8-R Content-Transfer-Encoding: quoted-printable Organization: SWsoft Date: Thu, 04 Nov 2004 22:32:56 +0300 Message-Id: <1099596776.1086.1.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.0.0FreeBSD GNOME Team Port Sender: Vladimir Grebenschikov cc: freebsd-multimedia@freebsd.org Subject: Re: gdvrecv, DV Tools for FreeBSD X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: vova@fbsd.ru List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Nov 2004 07:44:08 -0000 =F7 =DE=D4, 04/11/2004 =D7 13:54 +0100, Henri Michelon =D0=C9=DB=C5=D4: > Hello, >=20 > gdvrecv is a set of tools for FreeBSD to receives audio and video data=20 > from a digital camcorder via an IEEE 1394 (widely known as FireWire)=20 > link and stores them into an DV file. > gdvrecv does the same thing as the fwcontrol -R command, but is more > "user-friendly" (i.e. with a Gtk UI). > More informations at http://gdvrecv.sourceforge.net/ How about port in freebsd ports tree ? > Regards, > Henri Michelon --=20 Vladimir B. Grebenchikov vova@fbsd.ru From owner-freebsd-multimedia@FreeBSD.ORG Sat Nov 6 08:13:59 2004 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B03D516A4CE for ; Sat, 6 Nov 2004 08:13:59 +0000 (GMT) Received: from rproxy.gmail.com (rproxy.gmail.com [64.233.170.199]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2A0EF43D53 for ; Sat, 6 Nov 2004 08:13:59 +0000 (GMT) (envelope-from zenboy@gmail.com) Received: by rproxy.gmail.com with SMTP id a41so170325rng for ; Sat, 06 Nov 2004 00:13:46 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:references; b=JP1ft9yt8XbNmTywFejFBjSGQodCSpv1BoJ7g6SeHPzjn9o+BY4HlCLfwyzGft/gOL4zdcFdgfhsp/o/aydnNaIwetIab/N43sEbk11fb6TXQa2Hn6PFepiR+vZVTokG8RD8TAjTzqAgx+qt0h27OmlRN+lfuZNZT8/or73PUDY= Received: by 10.38.13.4 with SMTP id 4mr242391rnm; Sat, 06 Nov 2004 00:13:46 -0800 (PST) Received: by 10.39.1.9 with HTTP; Sat, 6 Nov 2004 00:13:46 -0800 (PST) Message-ID: Date: Sat, 6 Nov 2004 00:13:46 -0800 From: Aaron Walker To: Michael Nottebrock In-Reply-To: <200411041733.19680.michaelnottebrock@gmx.net> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_Part_2582_20546391.1099728826320" References: <200411041548.24537.michaelnottebrock@gmx.net> <200411041733.19680.michaelnottebrock@gmx.net> cc: freebsd-multimedia@freebsd.org Subject: Re: Onboard Sound - VIA8233 X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Aaron Walker List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 06 Nov 2004 08:13:59 -0000 ------=_Part_2582_20546391.1099728826320 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Disposition: inline Okay, it turned out to be a hardware problem, Knoppix picked up the AC97 onboard sound, and lo, there was sound only on the left channel. So I thought I would be sneaky and throw in my new Chaintech AV710 (Envy24HT), but there's no driver support for that one.. So I threw in another oldy but moldy, the Maxi Sound Muse (CM8738), which is picked up in dmesg, but shows "detatched" (see output of dmesg : attatched) any ideas what that means? Aaron Walker Fairview, OR ------=_Part_2582_20546391.1099728826320 Content-Type: application/octet-stream; name="output.log" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="output.log" U2NyaXB0IHN0YXJ0ZWQgb24gU2F0IE5vdiAgNiAwMDoxMjoxMyAyMDA0CllvdSBoYXZlIG1haWwu DQpjcmFtc3RlciMgc2NhbnBjaQ0NCg0KcGNpIGJ1cyAweDAwMDAgY2FyZG51bSAweDAwIGZ1bmN0 aW9uIDB4MDA6IHZlbmRvciAweDExMDYgZGV2aWNlIDB4MzA5OQ0KIFZJQSBUZWNobm9sb2dpZXMs IEluYy4gVlQ4MzY2L0EvNyBbQXBvbGxvIEtUMjY2L0EvMzMzXQ0KDQpwY2kgYnVzIDB4MDAwMCBj YXJkbnVtIDB4MDEgZnVuY3Rpb24gMHgwMDogdmVuZG9yIDB4MTEwNiBkZXZpY2UgMHhiMDk5DQog VklBIFRlY2hub2xvZ2llcywgSW5jLiBWVDgzNjYvQS83IFtBcG9sbG8gS1QyNjYvQS8zMzMgQUdQ XQ0KDQpwY2kgYnVzIDB4MDAwMCBjYXJkbnVtIDB4MDkgZnVuY3Rpb24gMHgwMDogdmVuZG9yIDB4 MTEwNiBkZXZpY2UgMHgzMDM4DQogVklBIFRlY2hub2xvZ2llcywgSW5jLiBVU0INCg0KcGNpIGJ1 cyAweDAwMDAgY2FyZG51bSAweDA5IGZ1bmN0aW9uIDB4MDE6IHZlbmRvciAweDExMDYgZGV2aWNl IDB4MzAzOA0KIFZJQSBUZWNobm9sb2dpZXMsIEluYy4gVVNCDQoNCnBjaSBidXMgMHgwMDAwIGNh cmRudW0gMHgwOSBmdW5jdGlvbiAweDAyOiB2ZW5kb3IgMHgxMTA2IGRldmljZSAweDMxMDQNCiBW SUEgVGVjaG5vbG9naWVzLCBJbmMuIFVTQiAyLjANCg0KcGNpIGJ1cyAweDAwMDAgY2FyZG51bSAw eDBhIGZ1bmN0aW9uIDB4MDA6IHZlbmRvciAweDExYWQgZGV2aWNlIDB4MDAwMg0KIExpdGUtT24g Q29tbXVuaWNhdGlvbnMgSW5jIExORTEwMFRYDQoNCnBjaSBidXMgMHgwMDAwIGNhcmRudW0gMHgw YyBmdW5jdGlvbiAweDAwOiB2ZW5kb3IgMHgxM2Y2IGRldmljZSAweDAxMTENCiBDLU1lZGlhIEVs ZWN0cm9uaWNzIEluYyBDTTg3MzgNCg0KcGNpIGJ1cyAweDAwMDAgY2FyZG51bSAweDBlIGZ1bmN0 aW9uIDB4MDA6IHZlbmRvciAweDExMDMgZGV2aWNlIDB4MDAwNA0KIFRyaW9uZXMgVGVjaG5vbG9n aWVzLCBJbmMuIEhQVDM2Ni8zNjgvMzcwLzM3MEEvMzcyDQoNCnBjaSBidXMgMHgwMDAwIGNhcmRu dW0gMHgxMSBmdW5jdGlvbiAweDAwOiB2ZW5kb3IgMHgxMTA2IGRldmljZSAweDMxNDcNCiBWSUEg VGVjaG5vbG9naWVzLCBJbmMuIFZUODIzM0EgSVNBIEJyaWRnZQ0KDQpwY2kgYnVzIDB4MDAwMCBj YXJkbnVtIDB4MTEgZnVuY3Rpb24gMHgwMTogdmVuZG9yIDB4MTEwNiBkZXZpY2UgMHgwNTcxDQog VklBIFRlY2hub2xvZ2llcywgSW5jLiBWVDgyQzU4NkEvQi9WVDgyQzY4Ni9BL0IvVlQ4MjMzL0Ev Qy9WVDgyMzUgUElQQyBCdXMgTWFzdGVyIElERQ0KDQpwY2kgYnVzIDB4MDAwMCBjYXJkbnVtIDB4 MTEgZnVuY3Rpb24gMHgwMjogdmVuZG9yIDB4MTEwNiBkZXZpY2UgMHgzMDM4DQogVklBIFRlY2hu b2xvZ2llcywgSW5jLiBVU0INCg0KcGNpIGJ1cyAweDAwMDAgY2FyZG51bSAweDExIGZ1bmN0aW9u IDB4MDM6IHZlbmRvciAweDExMDYgZGV2aWNlIDB4MzAzOA0KIFZJQSBUZWNobm9sb2dpZXMsIElu Yy4gVVNCDQoNCnBjaSBidXMgMHgwMDAxIGNhcmRudW0gMHgwMCBmdW5jdGlvbiAweDAwOiB2ZW5k b3IgMHgxMGRlIGRldmljZSAweDAxMTANCiBuVmlkaWEgQ29ycG9yYXRpb24gTlYxMSBbR2VGb3Jj ZTIgTVgvTVggNDAwXQ0KY3JhbXN0ZXIjIGRtZXNnIHwgZ3JlcCAtaSBwY20NDQpwY20wOiA8Q01l ZGlhIENNSTg3Mzg+IHBvcnQgMHhjYzAwLTB4Y2NmZiBpcnEgNSBhdCBkZXZpY2UgMTIuMCBvbiBw Y2kwDQpwY20wOiBkZXRhY2hlZA0KY3JhbXN0ZXIjIGRtZXNnDQ0KQ29weXJpZ2h0IChjKSAxOTky LTIwMDQgVGhlIEZyZWVCU0QgUHJvamVjdC4NCkNvcHlyaWdodCAoYykgMTk3OSwgMTk4MCwgMTk4 MywgMTk4NiwgMTk4OCwgMTk4OSwgMTk5MSwgMTk5MiwgMTk5MywgMTk5NA0KCVRoZSBSZWdlbnRz IG9mIHRoZSBVbml2ZXJzaXR5IG9mIENhbGlmb3JuaWEuIEFsbCByaWdodHMgcmVzZXJ2ZWQuDQpG cmVlQlNEIDUuMi1DVVJSRU5UICMxOiBXZWQgTm92ICAzIDIzOjUwOjE5IFBTVCAyMDA0DQogICAg cm9vdEBjcmFtc3Rlci53YWxrZXJzLmF0dGJpLmNvbTovdXNyL29iai91c3Ivc3JjL3N5cy9IT09M SUdBTi0xMTA0MDQNCldBUk5JTkc6IEtlcm5lbCBwcmVlbXB0aW9uIGlzIGRpc2FibGVkLCBleHBl Y3QgcmVkdWNlZCBwZXJmb3JtYW5jZS4NClRpbWVjb3VudGVyICJpODI1NCIgZnJlcXVlbmN5IDEx OTMxODIgSHogcXVhbGl0eSAwDQpDUFU6IEFNRCBBdGhsb24odG0pIFhQIDE4MDArICgxNTM2Ljgz LU1IeiA2ODYtY2xhc3MgQ1BVKQ0KICBPcmlnaW4gPSAiQXV0aGVudGljQU1EIiAgSWQgPSAweDY2 MiAgU3RlcHBpbmcgPSAyDQogIEZlYXR1cmVzPTB4MzgzZjlmZjxGUFUsVk1FLERFLFBTRSxUU0Ms TVNSLFBBRSxNQ0UsQ1g4LFNFUCxNVFJSLFBHRSxNQ0EsQ01PVixQQVQsUFNFMzYsTU1YLEZYU1Is U1NFPg0KICBBTUQgRmVhdHVyZXM9MHhjMDQ4MDAwMDxNUCxBTUlFLERTUCwzRE5vdyE+DQpyZWFs IG1lbW9yeSAgPSA4MDUyNDA4MzIgKDc2NyBNQikNCmF2YWlsIG1lbW9yeSA9IDc4MjQ3NTI2NCAo NzQ2IE1CKQ0KbnB4MDogW0ZBU1RdDQpucHgwOiA8bWF0aCBwcm9jZXNzb3I+IG9uIG1vdGhlcmJv YXJkDQpucHgwOiBJTlQgMTYgaW50ZXJmYWNlDQphY3BpMDogPFZJQTY5NCBBV1JEQUNQST4gb24g bW90aGVyYm9hcmQNCmFjcGkwOiBbR0lBTlQtTE9DS0VEXQ0KYWNwaTA6IFBvd2VyIEJ1dHRvbiAo Zml4ZWQpDQpUaW1lY291bnRlciAiQUNQSS1mYXN0IiBmcmVxdWVuY3kgMzU3OTU0NSBIeiBxdWFs aXR5IDEwMDANCmFjcGlfdGltZXIwOiA8MjQtYml0IHRpbWVyIGF0IDMuNTc5NTQ1TUh6PiBwb3J0 IDB4NDAwOC0weDQwMGIgb24gYWNwaTANCmNwdTA6IDxBQ1BJIENQVSAoMyBDeCBzdGF0ZXMpPiBv biBhY3BpMA0KYWNwaV90ejA6IDxUaGVybWFsIFpvbmU+IG9uIGFjcGkwDQphY3BpX2J1dHRvbjA6 IDxQb3dlciBCdXR0b24+IG9uIGFjcGkwDQphY3BpX2J1dHRvbjE6IDxTbGVlcCBCdXR0b24+IG9u IGFjcGkwDQpwY2liMDogPEFDUEkgSG9zdC1QQ0kgYnJpZGdlPiBwb3J0IDB4NTAwMC0weDUwMGYs MHg0MDgwLTB4NDBmZiwweDQwMDAtMHg0MDdmLDB4Y2Y4LTB4Y2ZmIG9uIGFjcGkwDQpwY2kwOiA8 QUNQSSBQQ0kgYnVzPiBvbiBwY2liMA0KYWdwMDogPFZJQSBHZW5lcmljIGhvc3QgdG8gUENJIGJy aWRnZT4gbWVtIDB4ZTgwMDAwMDAtMHhlOWZmZmZmZiBhdCBkZXZpY2UgMC4wIG9uIHBjaTANCnBj aWIxOiA8UENJLVBDSSBicmlkZ2U+IGF0IGRldmljZSAxLjAgb24gcGNpMA0KcGNpMTogPFBDSSBi dXM+IG9uIHBjaWIxDQpwY2kxOiA8ZGlzcGxheSwgVkdBPiBhdCBkZXZpY2UgMC4wIChubyBkcml2 ZXIgYXR0YWNoZWQpDQp1aGNpMDogPFZJQSA4M0M1NzIgVVNCIGNvbnRyb2xsZXI+IHBvcnQgMHhj MDAwLTB4YzAxZiBpcnEgMTAgYXQgZGV2aWNlIDkuMCBvbiBwY2kwDQp1aGNpMDogW0dJQU5ULUxP Q0tFRF0NCnVzYjA6IDxWSUEgODNDNTcyIFVTQiBjb250cm9sbGVyPiBvbiB1aGNpMA0KdXNiMDog VVNCIHJldmlzaW9uIDEuMA0KdWh1YjA6IFZJQSBVSENJIHJvb3QgaHViLCBjbGFzcyA5LzAsIHJl diAxLjAwLzEuMDAsIGFkZHIgMQ0KdWh1YjA6IDIgcG9ydHMgd2l0aCAyIHJlbW92YWJsZSwgc2Vs ZiBwb3dlcmVkDQp1aGNpMTogPFZJQSA4M0M1NzIgVVNCIGNvbnRyb2xsZXI+IHBvcnQgMHhjNDAw LTB4YzQxZiBpcnEgNSBhdCBkZXZpY2UgOS4xIG9uIHBjaTANCnVoY2kxOiBbR0lBTlQtTE9DS0VE XQ0KdXNiMTogPFZJQSA4M0M1NzIgVVNCIGNvbnRyb2xsZXI+IG9uIHVoY2kxDQp1c2IxOiBVU0Ig cmV2aXNpb24gMS4wDQp1aHViMTogVklBIFVIQ0kgcm9vdCBodWIsIGNsYXNzIDkvMCwgcmV2IDEu MDAvMS4wMCwgYWRkciAxDQp1aHViMTogMiBwb3J0cyB3aXRoIDIgcmVtb3ZhYmxlLCBzZWxmIHBv d2VyZWQNCmVoY2kwOiA8VklBIFZUNjIwMiBVU0IgMi4wIGNvbnRyb2xsZXI+IG1lbSAweGVkMDAx MDAwLTB4ZWQwMDEwZmYgaXJxIDExIGF0IGRldmljZSA5LjIgb24gcGNpMA0KZWhjaTA6IFtHSUFO VC1MT0NLRURdDQplaGNpX3BjaV9hdHRhY2g6IGNvbXBhbmlvbiB1c2IwDQplaGNpX3BjaV9hdHRh Y2g6IGNvbXBhbmlvbiB1c2IxDQp1c2IyOiBFSENJIHZlcnNpb24gMC45NQ0KdXNiMjogY29tcGFu aW9uIGNvbnRyb2xsZXJzLCAyIHBvcnRzIGVhY2g6IHVzYjAgdXNiMQ0KdXNiMjogPFZJQSBWVDYy MDIgVVNCIDIuMCBjb250cm9sbGVyPiBvbiBlaGNpMA0KdXNiMjogVVNCIHJldmlzaW9uIDIuMA0K dWh1YjI6IFZJQSBFSENJIHJvb3QgaHViLCBjbGFzcyA5LzAsIHJldiAyLjAwLzEuMDAsIGFkZHIg MQ0KdWh1YjI6IDQgcG9ydHMgd2l0aCA0IHJlbW92YWJsZSwgc2VsZiBwb3dlcmVkDQpkYzA6IDw4 MmMxNjkgUE5JQyAxMC8xMDBCYXNlVFg+IHBvcnQgMHhjODAwLTB4YzhmZiBtZW0gMHhlZDAwMDAw MC0weGVkMDAwMGZmIGlycSA1IGF0IGRldmljZSAxMC4wIG9uIHBjaTANCm1paWJ1czA6IDxNSUkg YnVzPiBvbiBkYzANCmJtdHBoeTA6IDxCQ001MjAxIDEwLzEwMGJhc2VUWCBQSFk+IG9uIG1paWJ1 czANCmJtdHBoeTA6ICAxMGJhc2VULCAxMGJhc2VULUZEWCwgMTAwYmFzZVRYLCAxMDBiYXNlVFgt RkRYLCBhdXRvDQpkYzA6IEV0aGVybmV0IGFkZHJlc3M6IDAwOmEwOmNjOmQ2OmM3OjAzDQpkYzA6 IFtHSUFOVC1MT0NLRURdDQpwY2kwOiA8bXVsdGltZWRpYSwgYXVkaW8+IGF0IGRldmljZSAxMi4w IChubyBkcml2ZXIgYXR0YWNoZWQpDQphdGFwY2kwOiA8SGlnaFBvaW50IEhQVDM3MiBVRE1BMTMz IGNvbnRyb2xsZXI+IHBvcnQgMHhlMDAwLTB4ZTBmZiwweGRjMDAtMHhkYzAzLDB4ZDgwMC0weGQ4 MDcsMHhkNDAwLTB4ZDQwMywweGQwMDAtMHhkMDA3IGlycSAxMCBhdCBkZXZpY2UgMTQuMCBvbiBw Y2kwDQphdGEyOiBhdCAweGQwMDAgb24gYXRhcGNpMA0KYXRhMzogYXQgMHhkODAwIG9uIGF0YXBj aTANCmlzYWIwOiA8UENJLUlTQSBicmlkZ2U+IGF0IGRldmljZSAxNy4wIG9uIHBjaTANCmlzYTA6 IDxJU0EgYnVzPiBvbiBpc2FiMA0KYXRhcGNpMTogPFZJQSA4MjMzQSBVRE1BMTMzIGNvbnRyb2xs ZXI+IHBvcnQgMHhlNDAwLTB4ZTQwZiwweDM3NiwweDE3MC0weDE3NywweDNmNiwweDFmMC0weDFm NyBhdCBkZXZpY2UgMTcuMSBvbiBwY2kwDQphdGEwOiBhdCAweDFmMCBpcnEgMTQgb24gYXRhcGNp MQ0KYXRhMTogYXQgMHgxNzAgaXJxIDE1IG9uIGF0YXBjaTENCnVoY2kyOiA8VklBIDgzQzU3MiBV U0IgY29udHJvbGxlcj4gcG9ydCAweGU4MDAtMHhlODFmIGlycSAxMSBhdCBkZXZpY2UgMTcuMiBv biBwY2kwDQp1aGNpMjogW0dJQU5ULUxPQ0tFRF0NCnVzYjM6IDxWSUEgODNDNTcyIFVTQiBjb250 cm9sbGVyPiBvbiB1aGNpMg0KdXNiMzogVVNCIHJldmlzaW9uIDEuMA0KdWh1YjM6IFZJQSBVSENJ IHJvb3QgaHViLCBjbGFzcyA5LzAsIHJldiAxLjAwLzEuMDAsIGFkZHIgMQ0KdWh1YjM6IDIgcG9y dHMgd2l0aCAyIHJlbW92YWJsZSwgc2VsZiBwb3dlcmVkDQp1aGNpMzogPFZJQSA4M0M1NzIgVVNC IGNvbnRyb2xsZXI+IHBvcnQgMHhlYzAwLTB4ZWMxZiBpcnEgMTEgYXQgZGV2aWNlIDE3LjMgb24g cGNpMA0KdWhjaTM6IFtHSUFOVC1MT0NLRURdDQp1c2I0OiA8VklBIDgzQzU3MiBVU0IgY29udHJv bGxlcj4gb24gdWhjaTMNCnVzYjQ6IFVTQiByZXZpc2lvbiAxLjANCnVodWI0OiBWSUEgVUhDSSBy b290IGh1YiwgY2xhc3MgOS8wLCByZXYgMS4wMC8xLjAwLCBhZGRyIDENCnVodWI0OiAyIHBvcnRz IHdpdGggMiByZW1vdmFibGUsIHNlbGYgcG93ZXJlZA0KZmRjMDogPGZsb3BweSBkcml2ZSBjb250 cm9sbGVyPiBwb3J0IDB4M2Y3LDB4M2YyLTB4M2Y1IGlycSA2IGRycSAyIG9uIGFjcGkwDQpzaW8w IHBvcnQgMHgzZjgtMHgzZmYgaXJxIDQgb24gYWNwaTANCnNpbzA6IHR5cGUgMTY1NTBBDQpzaW8x IHBvcnQgMHgyZjgtMHgyZmYgaXJxIDMgb24gYWNwaTANCnNpbzE6IHR5cGUgMTY1NTBBDQphdGti ZGMwOiA8S2V5Ym9hcmQgY29udHJvbGxlciAoaTgwNDIpPiBwb3J0IDB4NjQsMHg2MCBpcnEgMSBv biBhY3BpMA0KYXRrYmQwOiA8QVQgS2V5Ym9hcmQ+IGZsYWdzIDB4MSBpcnEgMSBvbiBhdGtiZGMw DQprYmQwIGF0IGF0a2JkMA0KYXRrYmQwOiBbR0lBTlQtTE9DS0VEXQ0KcHNtMDogPFBTLzIgTW91 c2U+IGlycSAxMiBvbiBhdGtiZGMwDQpwc20wOiBbR0lBTlQtTE9DS0VEXQ0KcHNtMDogbW9kZWwg SW50ZWxsaU1vdXNlIEV4cGxvcmVyLCBkZXZpY2UgSUQgNA0Kb3JtMDogPElTQSBPcHRpb24gUk9N PiBhdCBpb21lbSAweGMwMDAwLTB4Y2JmZmYgb24gaXNhMA0KcG10aW1lcjAgb24gaXNhMA0Kc2Mw OiA8U3lzdGVtIGNvbnNvbGU+IGF0IGZsYWdzIDB4MTAwIG9uIGlzYTANCnNjMDogVkdBIDwxNiB2 aXJ0dWFsIGNvbnNvbGVzLCBmbGFncz0weDMwMD4NCnZnYTA6IDxHZW5lcmljIElTQSBWR0E+IGF0 IHBvcnQgMHgzYzAtMHgzZGYgaW9tZW0gMHhhMDAwMC0weGJmZmZmIG9uIGlzYTANClRpbWVjb3Vu dGVyICJUU0MiIGZyZXF1ZW5jeSAxNTM2ODMwNDgzIEh6IHF1YWxpdHkgODAwDQpUaW1lY291bnRl cnMgdGljayBldmVyeSAxMC4wMDAgbXNlYw0KSVBzZWM6IEluaXRpYWxpemVkIFNlY3VyaXR5IEFz c29jaWF0aW9uIFByb2Nlc3NpbmcuDQphY3BpX2NwdTogdGhyb3R0bGluZyBlbmFibGVkLCAyIHN0 ZXBzICgxMDAlIHRvIDUwLjAlKSwgY3VycmVudGx5IDEwMC4wJQ0KYWQwOiAyODYyOU1CIDxXREMg V0QzMDBCQi0wMEFVQTE+IFs1ODE2OC8xNi82M10gYXQgYXRhMC1tYXN0ZXIgVURNQTEwMA0KQVRB UElfUkVTRVQgdGltZSA9IDcwdXMNCmFjZDA6IERWRFJPTSA8VE9TSElCQSBEVkQtUk9NIFNELU0x MjEyPiBhdCBhdGExLW1hc3RlciBVRE1BMzMNCmFkNDogNzYzMTlNQiA8V0RDIFdEODAwSkItMDBF VEEwPiBbMTU1MDYxLzE2LzYzXSBhdCBhdGEyLW1hc3RlciBVRE1BMTAwDQphZDU6IDc2MzE5TUIg PFdEQyBXRDgwMEJCLTAwREFBMT4gWzE1NTA2MS8xNi82M10gYXQgYXRhMi1zbGF2ZSBVRE1BMTAw DQphZDY6IDc2MzE5TUIgPFdEQyBXRDgwMEJCLTAwQ0FBMT4gWzE1NTA2MS8xNi82M10gYXQgYXRh My1tYXN0ZXIgVURNQTEwMA0KYXIwOiA3NjMxOU1CIDxBVEEgUkFJRDEgYXJyYXk+IFs5NzI5LzI1 NS82M10gc3RhdHVzOiBSRUFEWSBzdWJkaXNrczoNCiBkaXNrMCBSRUFEWSBvbiBhZDQgYXQgYXRh Mi1tYXN0ZXINCiBkaXNrMSBSRUFEWSBvbiBhZDUgYXQgYXRhMi1zbGF2ZQ0KTW91bnRpbmcgcm9v dCBmcm9tIHVmczovZGV2L2FkMHMxYQ0KZGMwOiBmYWlsZWQgdG8gZm9yY2UgdHggYW5kIHJ4IHRv IGlkbGUgc3RhdGUNCmRjMDogZmFpbGVkIHRvIGZvcmNlIHR4IGFuZCByeCB0byBpZGxlIHN0YXRl DQpkYzA6IGZhaWxlZCB0byBmb3JjZSB0eCBhbmQgcnggdG8gaWRsZSBzdGF0ZQ0KcGNtMDogPENN ZWRpYSBDTUk4NzM4PiBwb3J0IDB4Y2MwMC0weGNjZmYgaXJxIDUgYXQgZGV2aWNlIDEyLjAgb24g cGNpMA0KcGNtMDogZGV0YWNoZWQNCmNyYW1zdGVyIyBleGl0DQ0KZXhpdA0KClNjcmlwdCBkb25l IG9uIFNhdCBOb3YgIDYgMDA6MTI6MzAgMjAwNAo= ------=_Part_2582_20546391.1099728826320-- From owner-freebsd-multimedia@FreeBSD.ORG Sat Nov 6 08:30:10 2004 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A345316A4CE for ; Sat, 6 Nov 2004 08:30:10 +0000 (GMT) Received: from rproxy.gmail.com (rproxy.gmail.com [64.233.170.192]) by mx1.FreeBSD.org (Postfix) with ESMTP id 54CA443D58 for ; Sat, 6 Nov 2004 08:30:10 +0000 (GMT) (envelope-from zenboy@gmail.com) Received: by rproxy.gmail.com with SMTP id a41so170806rng for ; Sat, 06 Nov 2004 00:29:57 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:references; b=FwJQa38tMFCDnm0dSC4fxTzoTlt30GLktjTdQe+dJaUwu0HKVB0oUwbdrwRzSj2DFiiFeNzj5RJvYXm9TvS1zVwcg1mQoz7rj6peAH7uvIY4nfuroqR/zYN94EPtXRkcZALn8yYWOSHirB2FH5rEImZ/Dex5VdS2aWSxYSwQU3Q= Received: by 10.38.67.12 with SMTP id p12mr395001rna; Sat, 06 Nov 2004 00:29:57 -0800 (PST) Received: by 10.39.1.9 with HTTP; Sat, 6 Nov 2004 00:29:54 -0800 (PST) Message-ID: Date: Sat, 6 Nov 2004 00:29:54 -0800 From: Aaron Walker To: Michael Nottebrock In-Reply-To: Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: <200411041548.24537.michaelnottebrock@gmx.net> <200411041733.19680.michaelnottebrock@gmx.net> cc: freebsd-multimedia@freebsd.org Subject: Re: Onboard Sound - VIA8233 X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Aaron Walker List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 06 Nov 2004 08:30:10 -0000 Oh, I suppose I should mention the trouble I'm having. When I try to load snd_driver, it doesn't do anything. When I manually load snd_cmi, mixer shows up okay, but there isn't any sound either way. Aaron Walker Fairview, OR On Sat, 6 Nov 2004 00:13:46 -0800, Aaron Walker wrote: > Okay, it turned out to be a hardware problem, Knoppix picked up the > AC97 onboard sound, and lo, there was sound only on the left channel. > > So I thought I would be sneaky and throw in my new Chaintech AV710 > (Envy24HT), but there's no driver support for that one.. > > So I threw in another oldy but moldy, the Maxi Sound Muse (CM8738), > which is picked up in dmesg, but shows "detatched" (see output of > dmesg : attatched) any ideas what that means? > > Aaron Walker > Fairview, OR > > > From owner-freebsd-multimedia@FreeBSD.ORG Sat Nov 6 09:21:41 2004 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5BA1116A4CE for ; Sat, 6 Nov 2004 09:21:41 +0000 (GMT) Received: from rproxy.gmail.com (rproxy.gmail.com [64.233.170.195]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1070543D49 for ; Sat, 6 Nov 2004 09:21:41 +0000 (GMT) (envelope-from zenboy@gmail.com) Received: by rproxy.gmail.com with SMTP id a41so172332rng for ; Sat, 06 Nov 2004 01:21:40 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding; b=jaxmMzvDespT+oIgmFfIsAObgM6/gYXyPMmkmnGgtPgK9E4aZ/Ug6J5WuDwCYTgIhaw9XIuiq7VDK0D6cLe5+vn4sIQpcDWBL18eZR85uPGX4FcHorUlDuNKshIPW+xrvohiPZxhzBCpohKEq/Ifgdls2giBn3RWCVBlAm5wMoM= Received: by 10.38.86.15 with SMTP id j15mr541276rnb; Sat, 06 Nov 2004 01:21:40 -0800 (PST) Received: by 10.39.1.9 with HTTP; Sat, 6 Nov 2004 01:21:40 -0800 (PST) Message-ID: Date: Sat, 6 Nov 2004 01:21:40 -0800 From: Aaron Walker To: freebsd-multimedia@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: TV Tuner Card support under FreeBSD X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Aaron Walker List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 06 Nov 2004 09:21:41 -0000 I'm getting some mixed signals on which TV Tuner cards are supported. First I see that only the BrookTree chipset is supported, but then I see references to Phillips chipset tuners in the manual. I have access to two tv tuner cards, one a VisionTek Xtasy Everything (Geforce 2 MX 400 64M ViVo) and the other an ATI All In Wonder 128 (Rage 128 chipset 16M). Obviously the Xtasy is the better card, but are either of these supported under FreeBSD for TV Tuning, or would I be better off just leaving these two for some other flavor of Multimedia box? Aaron Walker Fairview, OR From owner-freebsd-multimedia@FreeBSD.ORG Sat Nov 6 10:19:56 2004 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 956BC16A4CE for ; Sat, 6 Nov 2004 10:19:56 +0000 (GMT) Received: from om.nln.ru (om.nln.ru [217.174.97.177]) by mx1.FreeBSD.org (Postfix) with ESMTP id B17DC43D2F for ; Sat, 6 Nov 2004 10:19:55 +0000 (GMT) (envelope-from grint@nln.ru) Received: from grint.int.nln.ru (grint.int.nln.ru [192.168.150.193]) (authenticated bits=0) by om.nln.ru (8.12.10/8.12.10) with ESMTP id iA6AJpg0020813 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Sat, 6 Nov 2004 13:19:52 +0300 Received: from grint by grint.int.nln.ru with local (Exim 4.42 (FreeBSD)) id 1CQNfj-0000qU-2o for freebsd-multimedia@freebsd.org; Sat, 06 Nov 2004 13:19:51 +0300 Date: Sat, 6 Nov 2004 13:19:51 +0300 From: "Ruslan N. Gogunsci" To: freebsd-multimedia@freebsd.org Message-ID: <20041106101951.GA2545@grint.int.nln.ru> Mail-Followup-To: freebsd-multimedia@freebsd.org References: Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="----------=_1099736392-21115-307" In-Reply-To: User-Agent: Mutt/1.4.2.1i X-Spam-Score: -102.82 () ALL_TRUSTED,USER_IN_WHITELIST X-Spam-Flag: NO X-Scanned-By: MIMEDefang 2.45 Subject: Re: TV Tuner Card support under FreeBSD X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 06 Nov 2004 10:19:56 -0000 This is a multi-part message in MIME format... ------------=_1099736392-21115-307 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hello freebsd-multimedia, On Sat, Nov 06, 2004 at 01:21:40AM -0800, Aaron Walker wrote: > I'm getting some mixed signals on which TV Tuner cards are supported. > First I see that only the BrookTree chipset is supported, but then I > see references to Phillips chipset tuners in the manual. I have access > to two tv tuner cards, one a VisionTek Xtasy Everything (Geforce 2 MX > 400 64M ViVo) and the other an ATI All In Wonder 128 (Rage 128 chipset > 16M). Obviously the Xtasy is the better card, but are either of these > supported under FreeBSD for TV Tuning, or would I be better off just > leaving these two for some other flavor of Multimedia box? I have tv tuner based on saa7134HL: Behold TV 403 fm I try use for it drivers from download.purple.com They are install without errors, but when i run programs for watch tv(tvv, ftvv) i see only black screen. I generate channel list by tune_channels and try convert from xawtv. My system is 5.3RC1 pciconf -lv: -skip- saa0@pci0:11:0: class=0x048000 card=0x00001131 chip=0x71341131 rev=0x01 hdr=0x00 vendor = 'Philips Semiconductors' device = 'SAA7134HL Multi Media Capture Device' class = multimedia -skip dmesg: -skip- aa0: mem 0xef001000-0xef0013ff irq 10 at device 11.0 on pci0 saa0: [GIANT-LOCKED] iicbus0: on saa0 iic0: on iicbus0 iicsmb0: on iicbus0 smbus1: on iicsmb0 smb1: on smbus1 iicbus0: START: bus error (status 0x9 loop:13) iicbus0: START: bus error (status 0x9 loop:13) iicbus0: WRITE: timeout (status 0x6) iicbus0: START: bus error (status 0x9 loop:13) iicbus0: WRITE: timeout (status 0x6) iicbus0: WRITE: timeout (status 0x6) iicbus0: START: bus error (status 0x9 loop:13) iicbus0: START: bus error (status 0x9 loop:13) iicbus0: WRITE: timeout (status 0x6) iicbus0: START: bus error (status 0x9 loop:13) iicbus0: START: bus error (status 0x9 loop:13) iicbus0: WRITE: timeout (status 0x6) iicbus0: START: bus error (status 0x9 loop:13) iicbus0: START: bus error (status 0x9 loop:13) iicbus0: WRITE: timeout (status 0x6) iicbus0: START: bus error (status 0x9 loop:13) iicbus0: START: bus error (status 0x9 loop:13) iicbus0: START: bus error (status 0x9 loop:13) iicbus0: WRITE: timeout (status 0x6) iicbus0: WRITE: timeout (status 0x6) iicbus0: WRITE: timeout (status 0x6) iicbus0: WRITE: timeout (status 0x6) iicbus0: START: bus error (status 0x9 loop:13) iicbus0: WRITE: timeout (status 0x6) iicbus0: WRITE: timeout (status 0x6) iicbus0: WRITE: timeout (status 0x6) -skip- > > Aaron Walker > Fairview, OR > _______________________________________________ > freebsd-multimedia@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-multimedia > To unsubscribe, send any mail to "freebsd-multimedia-unsubscribe@freebsd.org" ------------=_1099736392-21115-307-- From owner-freebsd-multimedia@FreeBSD.ORG Sat Nov 6 12:48:44 2004 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 49ACE16A4CE for ; Sat, 6 Nov 2004 12:48:44 +0000 (GMT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 0274143D53 for ; Sat, 6 Nov 2004 12:48:42 +0000 (GMT) (envelope-from michaelnottebrock@gmx.net) Received: (qmail 1973 invoked by uid 65534); 6 Nov 2004 12:48:40 -0000 Received: from pD9E24E4B.dip.t-dialin.net (EHLO lofi.dyndns.org) (217.226.78.75) by mail.gmx.net (mp008) with SMTP; 06 Nov 2004 13:48:40 +0100 X-Authenticated: #443188 Received: from kiste.my.domain (lofi@kiste.my.domain [192.168.8.4]) (authenticated bits=0) by lofi.dyndns.org (8.12.10/8.12.10) with ESMTP id iA6CmYDT046044 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Sat, 6 Nov 2004 13:48:36 +0100 (CET) (envelope-from michaelnottebrock@gmx.net) From: Michael Nottebrock To: Aaron Walker Date: Sat, 6 Nov 2004 13:48:29 +0100 User-Agent: KMail/1.7.50 References: In-Reply-To: MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart1430956.6r4Jt4R9n3"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200411061348.33010.michaelnottebrock@gmx.net> X-Virus-Scanned: by amavisd-new cc: freebsd-multimedia@freebsd.org Subject: Re: Onboard Sound - VIA8233 X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 06 Nov 2004 12:48:44 -0000 --nextPart1430956.6r4Jt4R9n3 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Saturday, 6. November 2004 09:29, Aaron Walker wrote: > Oh, I suppose I should mention the trouble I'm having. When I try to > load snd_driver, it doesn't do anything. When I manually load snd_cmi, > mixer shows up okay, but there isn't any sound either way. No idea, but you should file a PR about this one, it's probably fixable. =2D-=20 ,_, | Michael Nottebrock | lofi@freebsd.org (/^ ^\) | FreeBSD - The Power to Serve | http://www.freebsd.org \u/ | K Desktop Environment on FreeBSD | http://freebsd.kde.org --nextPart1430956.6r4Jt4R9n3 Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.6 (FreeBSD) iD8DBQBBjMggXhc68WspdLARArPSAJ9aiDzNXHByAdZhavsBG9zH9aS8ywCeL4Nv 37ZUocnOqlm99b8A5GdO4zQ= =fhRj -----END PGP SIGNATURE----- --nextPart1430956.6r4Jt4R9n3-- From owner-freebsd-multimedia@FreeBSD.ORG Sat Nov 6 13:40:53 2004 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 43D2A16A4CE for ; Sat, 6 Nov 2004 13:40:53 +0000 (GMT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 60B9743D2F for ; Sat, 6 Nov 2004 13:40:52 +0000 (GMT) (envelope-from michaelnottebrock@gmx.net) Received: (qmail 29757 invoked by uid 65534); 6 Nov 2004 13:40:49 -0000 Received: from pD9E24E4B.dip.t-dialin.net (EHLO lofi.dyndns.org) (217.226.78.75) by mail.gmx.net (mp020) with SMTP; 06 Nov 2004 14:40:49 +0100 X-Authenticated: #443188 Received: from kiste.my.domain (lofi@kiste.my.domain [192.168.8.4]) (authenticated bits=0) by lofi.dyndns.org (8.12.10/8.12.10) with ESMTP id iA6DeaDT046838 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Sat, 6 Nov 2004 14:40:37 +0100 (CET) (envelope-from michaelnottebrock@gmx.net) From: Michael Nottebrock To: freebsd-multimedia@freebsd.org, Aaron Walker Date: Sat, 6 Nov 2004 14:40:33 +0100 User-Agent: KMail/1.7.50 References: In-Reply-To: MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart11849884.6PLOCojPy9"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200411061440.34409.michaelnottebrock@gmx.net> X-Virus-Scanned: by amavisd-new Subject: Re: TV Tuner Card support under FreeBSD X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 06 Nov 2004 13:40:53 -0000 --nextPart11849884.6PLOCojPy9 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Saturday, 6. November 2004 10:21, Aaron Walker wrote: > I have access > to two tv tuner cards, one a VisionTek Xtasy Everything (Geforce 2 MX > 400 64M ViVo) and the other an ATI All In Wonder 128 (Rage 128 chipset > 16M). Both not supported by FreeBSD. The ATi All-in-Wonder cards are supported to= =20 some degree by XFree86/xorg drivers (without the need for additional kernel= =20 driver support) through the xvideo interface, but only very few tv-viewing= =20 applications support this API (I personally only know xawtv), and usually=20 even that support is poor. =2D-=20 ,_, | Michael Nottebrock | lofi@freebsd.org (/^ ^\) | FreeBSD - The Power to Serve | http://www.freebsd.org \u/ | K Desktop Environment on FreeBSD | http://freebsd.kde.org --nextPart11849884.6PLOCojPy9 Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.6 (FreeBSD) iD8DBQBBjNRSXhc68WspdLARAn0oAJ9tk3T25FPzomngAHmTKtxDt35q8gCeP9lY 8YSu/aTXay9TBol9SKAR80A= =o8WS -----END PGP SIGNATURE----- --nextPart11849884.6PLOCojPy9-- From owner-freebsd-multimedia@FreeBSD.ORG Sat Nov 6 19:10:10 2004 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7820316A4CF for ; Sat, 6 Nov 2004 19:10:10 +0000 (GMT) Received: from mirapoint.kettering.edu (mirapoint.kettering.edu [192.138.137.82]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A55843D31 for ; Sat, 6 Nov 2004 19:10:10 +0000 (GMT) (envelope-from acheng@member.ams.org) Received: from infinity.kettering.edu (infinity.kettering.edu [198.110.5.123]) by mirapoint.kettering.edu (MOS 3.5.3-GR) with ESMTP id BHI38832; Sat, 6 Nov 2004 14:10:08 -0500 (EST) Received: from infinity.kettering.edu (localhost.kettering.edu [127.0.0.1]) iA6J9mqO055356 for ; Sat, 6 Nov 2004 14:09:49 -0500 (EST) (envelope-from acheng@member.ams.org) Received: from localhost (acheng@localhost)iA6J9mqZ055353 for ; Sat, 6 Nov 2004 14:09:48 -0500 (EST) X-Authentication-Warning: infinity.kettering.edu: acheng owned process doing -bs Date: Sat, 6 Nov 2004 14:09:48 -0500 (EST) From: Ada Cheng X-X-Sender: acheng@infinity.kettering.edu To: freebsd-multimedia@freebsd.org Message-ID: <20041106135407.E55323@infinity.kettering.edu> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Subject: problem connecting Minolta camera X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 06 Nov 2004 19:10:10 -0000 Good afternoon, I just got a Minolta Z2 camera and am trying to connect it to my Freebsd box (running 4.10 stable) I do have following devices in my kernel device usb device da device ugen device umass unfortunately when I turn on the camera I obtained the following in dmesg: umass0: KONICA_MINOLTA DiMAGE Z2, rev 2.00/1.00, addr 2 umass0: BBB reset failed, TIMEOUT (this is repeated if I don't unplug the camera) I am also getting the following error when i do $mount -t msdos -r /dev/da0s1c /camera msdos: /dev/da0s1c: Device not configured Also, the camera is not supported by gphoto2 unfortunately. Any pointers is much appreciated. Thanks Ada From owner-freebsd-multimedia@FreeBSD.ORG Sat Nov 6 23:45:28 2004 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 03C6A16A4CE for ; Sat, 6 Nov 2004 23:45:28 +0000 (GMT) Received: from mproxy.gmail.com (mproxy.gmail.com [216.239.56.242]) by mx1.FreeBSD.org (Postfix) with ESMTP id E552143D46 for ; Sat, 6 Nov 2004 23:45:27 +0000 (GMT) (envelope-from niyamas@gmail.com) Received: by mproxy.gmail.com with SMTP id w67so60788cwb for ; Sat, 06 Nov 2004 15:45:27 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding; b=KjIVx8VTFpoKahMHA/8UIxw8aA80Q7dqXqNLBDDsAhzQ9YWgDQRHpvqv8TokXINgkWk5JwtthWtFZXn5Av3d/UT/A77x+Opo0adpjS/zCfjcRtcKuKqxYAkpUltqSU+nwdacH9VJRJqjzuPbA8E24JNGuXS9kUzl/PQnqLCAOUg= Received: by 10.11.117.43 with SMTP id p43mr437823cwc; Sat, 06 Nov 2004 15:45:27 -0800 (PST) Received: by 10.11.119.47 with HTTP; Sat, 6 Nov 2004 15:45:27 -0800 (PST) Message-ID: <4f9c6b6d04110615451d1fecbd@mail.gmail.com> Date: Sat, 6 Nov 2004 18:45:27 -0500 From: NiY To: freebsd-multimedia@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: ATI AIW on Freebsd X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Niy@extacy.homeip.net List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 06 Nov 2004 23:45:28 -0000 Greets! Can anyone point me in the right direction for getting Xawtv, or something like it, working on FreeBSD 5.x w/ the Gatos drivers for X? I have the Gatos drivers installed and they appear to be working fine, just not sure how to configure Xawtv or Motv to use something other than /dev/bktr0 for input. Any help would be great! I did google it and couldn't find anything helpfull. Tmothy R. Simmons PS, Please cc me on replies, not on the list. Thanks!