From owner-freebsd-multimedia Sun Mar 2 11:11:20 2003 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 CE22037B401 for ; Sun, 2 Mar 2003 11:11:19 -0800 (PST) Received: from gicco.homeip.net (dclient80-218-75-162.hispeed.ch [80.218.75.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 054D143FB1 for ; Sun, 2 Mar 2003 11:11:18 -0800 (PST) (envelope-from hampi@rootshell.be) Received: from localhost.here (idefix@gicco.homeip.net [127.0.0.1]) by gicco.homeip.net (8.12.6/8.12.6) with ESMTP id h22JAVi1000578 for ; Sun, 2 Mar 2003 20:10:32 +0100 (CET) (envelope-from hampi@rootshell.be) Received: (from idefix@localhost) by localhost.here (8.12.6/8.12.6/Submit) id h22JAQJi000577 for freebsd-multimedia@freebsd.org; Sun, 2 Mar 2003 20:10:26 +0100 (CET) X-Authentication-Warning: localhost.here: idefix set sender to hampi@rootshell.be using -f Date: Sun, 2 Mar 2003 20:10:26 +0100 From: Hanspeter Roth To: freebsd-multimedia@freebsd.org Subject: concatenating audio files Message-ID: <20030302191026.GA552@gicco.homeip.net> Reply-To: freebsd-multimedia@freebsd.org Mail-Followup-To: freebsd-multimedia@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4i Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hello, is there a tool that can concatenate .wav files in batch mode (without GUI)? -Hanspeter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Sun Mar 2 14: 4:21 2003 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 8D61B37B401 for ; Sun, 2 Mar 2003 14:04:19 -0800 (PST) Received: from hermes.pressenter.com (hermes.pressenter.com [209.224.20.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id AD88143F3F for ; Sun, 2 Mar 2003 14:04:18 -0800 (PST) (envelope-from nospam@hiltonbsd.com) Received: from [209.224.33.230] (helo=daggar.sbgnet.net) by hermes.pressenter.com with smtp (Exim 3.16 #1) id 18pbZ4-00045T-00; Sun, 02 Mar 2003 16:04:11 -0600 Date: Sun, 2 Mar 2003 16:03:39 -0600 From: Stephen Hilton To: freebsd-multimedia@FreeBSD.ORG Cc: hampi@rootshell.be Subject: Re: concatenating audio files Message-Id: <20030302160339.28b7b37c.nospam@hiltonbsd.com> In-Reply-To: <20030302191026.GA552@gicco.homeip.net> References: <20030302191026.GA552@gicco.homeip.net> X-Mailer: Sylpheed version 0.8.10 (GTK+ 1.2.10; i386-portbld-freebsd4.8) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Sun, 2 Mar 2003 20:10:26 +0100 Hanspeter Roth wrote: > Hello, > > is there a tool that can concatenate .wav files in batch mode > (without GUI)? > > -Hanspeter > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-multimedia" in the body of the message > Hanspeter, I think this can be done with sox (ports/auido/sox), Fragments from a script I have written, not a complete solution, just examples to work from: [snip] dagrab -v -s -d "${mydrive}" -m 0664 -a 2>/dev/null rm mtracks.raw > /dev/null 2>&1 for xloop in `ls -c1 *.wav` do sox "${xloop}" -t raw - | cat - >> mtracks.raw # sox strips off all header info from wav files so combining is possible rm "${xloop}" done sox -r 44100 -w -s -c 2 mtracks.raw "${mytitle}.wav" # sox now writes back from raw file to wav format with header rm mtracks.raw /usr/bin/clear echo "Done with sox, on to bladeenc wav to mp3 encoder" sleep 1 bladeenc -prio=NORMAL "${mytitle}.wav" -delete # bladeenc will delete the source wav file after creating the mp3 mv *.mp3 "${myartist}" > /dev/null 2>&1 [snip] HTH Stephen Hilton nospam@hiltonbsd.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Sun Mar 2 15:10:58 2003 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 A1C9D37B401 for ; Sun, 2 Mar 2003 15:10:57 -0800 (PST) Received: from smtp4.knology.net (user-24-214-63-227.knology.net [24.214.63.227]) by mx1.FreeBSD.org (Postfix) with SMTP id 9042943F85 for ; Sun, 2 Mar 2003 15:10:56 -0800 (PST) (envelope-from dkelly@HiWAAY.net) Received: (qmail 3768 invoked from network); 2 Mar 2003 23:10:55 -0000 Received: from unknown (HELO user-24-214-34-52.knology.net) (24.214.34.52) by smtp4.knology.net with SMTP; 2 Mar 2003 23:10:55 -0000 From: David Kelly To: multimedia@FreeBSD.ORG Subject: Re: concatenating audio files Date: Sun, 2 Mar 2003 17:10:51 -0600 User-Agent: KMail/1.5 References: <20030302191026.GA552@gicco.homeip.net> In-Reply-To: <20030302191026.GA552@gicco.homeip.net> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200303021710.51995.dkelly@HiWAAY.net> Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Sunday 02 March 2003 01:10 pm, Hanspeter Roth wrote: > Hello, > > is there a tool that can concatenate .wav files in batch mode > (without GUI)? As others have suggested, sox is a good starting point. Can use sox to convert to raw data, then cat the raw data files back into sox to reformat at .wav. Would require some scripting. When I have done it, was to add a pause at the begining. Simply insert nulls. The .wav format allows multiple segments within a file, each with its own header. The headers describe sample rate, word size, encoding, number of channels, all the things needed to play the data. If the files you wish to join are at different sample rates or encodings then one will have to be resampled to the other's specifications. Sox can do this. But if you study the header formats and how to put multiple segments in the same file you could create a .wav file which automatically switches as needed. To do so, you will have to write some code. But all you are doing is moving data from two files into one with no user interface so it shouldn't be very hard at all. -- David Kelly N4HHE, dkelly@hiwaay.net ===================================================================== The human mind ordinarily operates at only ten percent of its capacity -- the rest is overhead for the operating system. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Mon Mar 3 3:28:37 2003 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 9F1C537B401 for ; Mon, 3 Mar 2003 03:28:35 -0800 (PST) Received: from crf-consulting.co.uk (pc-80-194-99-19-hy.blueyonder.co.uk [80.194.99.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5462143FCB for ; Mon, 3 Mar 2003 03:28:33 -0800 (PST) (envelope-from nik@crf-consulting.co.uk) Received: from clan.nothing-going-on.org (clan.nothing-going-on.org [192.168.1.20]) by crf-consulting.co.uk (8.12.3/8.12.3) with ESMTP id h23BSWaw075373 for ; Mon, 3 Mar 2003 11:28:32 GMT (envelope-from nik@catkin) Received: from clan.nothing-going-on.org (localhost [127.0.0.1]) by clan.nothing-going-on.org (8.12.3/8.12.3) with ESMTP id h23BSVm0067616 for ; Mon, 3 Mar 2003 11:28:32 GMT (envelope-from nik@clan.nothing-going-on.org) Received: (from nik@localhost) by clan.nothing-going-on.org (8.12.3/8.12.3/Submit) id h23BSVmT067615 for freebsd-multimedia@freebsd.org; Mon, 3 Mar 2003 11:28:31 GMT Date: Mon, 3 Mar 2003 11:28:31 +0000 From: Nik Clayton To: freebsd-multimedia@freebsd.org Subject: Dual head graphics card recommendations sought Message-ID: <20030303112831.GH6403@clan.nothing-going-on.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="ULkDCyeHsmlwbqED" Content-Disposition: inline User-Agent: Mutt/1.4i Organization: FreeBSD Project Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --ULkDCyeHsmlwbqED Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi all [ Please cc me on replies -- thanks ] Can someone recommend a graphics card that can drive a TFT using DVI at 1600x1200, and a CRT using an analogue connection at 1280x1024, at the same time (dual head), and that's supported using XFree86? Various people have recommended the Matrox G550 to me, but looking at the specs on the website (and talking to Matrox tech support), the G550 is only supposed to drive the TFT at 1280x1024 in the configuration I describe above, not 1600x1200. Evidence to the contrary would be welcomed :-)=20 N --=20 FreeBSD: The Power to Serve http://www.freebsd.org/ (__) FreeBSD Documentation Project http://www.freebsd.org/docproj/ \\\'',) \/ \= ^ --- 15B8 3FFC DDB4 34B0 AA5F 94B7 93A8 0764 2C37 E375 --- .\._/= _) --ULkDCyeHsmlwbqED Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+Yzxfk6gHZCw343URAkkzAKCFfRfG9Hv6JqKY9bHkfyMR13nWDACePpHS SZ/mUJIOrMaYLLhvTZLMK2w= =nc/H -----END PGP SIGNATURE----- --ULkDCyeHsmlwbqED-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Mon Mar 3 5:39:34 2003 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 5A49D37B401; Mon, 3 Mar 2003 05:39:33 -0800 (PST) Received: from puma.icir.org (puma.icir.org [192.150.187.73]) by mx1.FreeBSD.org (Postfix) with ESMTP id DEAB243FBF; Mon, 3 Mar 2003 05:39:32 -0800 (PST) (envelope-from hodson@puma.icir.org) Received: from puma.icir.org (localhost [127.0.0.1]) by puma.icir.org (8.12.3/8.12.3) with ESMTP id h23DdW8J002568; Mon, 3 Mar 2003 05:39:32 -0800 (PST) (envelope-from hodson@puma.icir.org) Message-Id: <200303031339.h23DdW8J002568@puma.icir.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.3 To: Nik Clayton Cc: freebsd-multimedia@FreeBSD.ORG From: Orion Hodson Subject: Re: Dual head graphics card recommendations sought In-Reply-To: Your message of "Mon, 03 Mar 2003 11:28:31 GMT." <20030303112831.GH6403@clan.nothing-going-on.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 03 Mar 2003 05:39:32 -0800 Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org /-- Nik Clayton wrote: | | Hi all | | Can someone recommend a graphics card that can drive a TFT using DVI at | 1600x1200, and a CRT using an analogue connection at 1280x1024, at the | same time (dual head), and that's supported using XFree86? I have the Radeon VE dual display edition (Radeon 7000 Dual Head now?). The configuration I use at work is 2 flat panels 1280x1024 (one dvi, svga). I've also toyed with 2 flat panels at 1600x1024 (http://www.icir.org/hodson/1600sw/i ndex.html) and a 1024x768 flat panel with a 1280x1024 CRT. All of these have worked like a charm. None are exactly what you describe, but the card is flexible and cheap. I don't see any reason it wouldn't work in your configuration, but if it didn't it's $40 +/- at stake. BTW, if you do go this route then when purchasing the Radeon VE/7000 care needs to be taken that it is the multi-interface (DVI/SVGA/TV-Out) and not the unsupported split cable version. BTW, the release notes for XFree86 4.3 detail support for upto Radeon 9x00 so spending more money and also being able to play games is an option. If it weren't my money, I'd go up market :-) Regards - Orion To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Mon Mar 3 8:19:51 2003 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 A5E8337B412; Mon, 3 Mar 2003 08:19:48 -0800 (PST) Received: from crf-consulting.co.uk (pc-80-194-99-19-hy.blueyonder.co.uk [80.194.99.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6EFFB43FCB; Mon, 3 Mar 2003 08:19:46 -0800 (PST) (envelope-from nik@crf-consulting.co.uk) Received: from clan.nothing-going-on.org (clan.nothing-going-on.org [192.168.1.20]) by crf-consulting.co.uk (8.12.3/8.12.3) with ESMTP id h23GJiaw077860; Mon, 3 Mar 2003 16:19:44 GMT (envelope-from nik@catkin) Received: from clan.nothing-going-on.org (localhost [127.0.0.1]) by clan.nothing-going-on.org (8.12.3/8.12.3) with ESMTP id h23GJim0068209; Mon, 3 Mar 2003 16:19:44 GMT (envelope-from nik@clan.nothing-going-on.org) Received: (from nik@localhost) by clan.nothing-going-on.org (8.12.3/8.12.3/Submit) id h23GJi2O068208; Mon, 3 Mar 2003 16:19:44 GMT Date: Mon, 3 Mar 2003 16:19:44 +0000 From: Nik Clayton To: Orion Hodson Cc: Nik Clayton , freebsd-multimedia@FreeBSD.ORG Subject: Re: Dual head graphics card recommendations sought Message-ID: <20030303161944.GJ6403@clan.nothing-going-on.org> References: <20030303112831.GH6403@clan.nothing-going-on.org> <200303031339.h23DdW8J002568@puma.icir.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="XyBMaHrM0hrbbr/O" Content-Disposition: inline In-Reply-To: <200303031339.h23DdW8J002568@puma.icir.org> User-Agent: Mutt/1.4i Organization: FreeBSD Project Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --XyBMaHrM0hrbbr/O Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi, Thanks for the reply. On Mon, Mar 03, 2003 at 05:39:32AM -0800, Orion Hodson wrote: > | Can someone recommend a graphics card that can drive a TFT using DVI at > | 1600x1200, and a CRT using an analogue connection at 1280x1024, at the > | same time (dual head), and that's supported using XFree86? [...] > BTW, if you do go this route then when purchasing the Radeon VE/7000 care= =20 > needs to be taken that it is the multi-interface (DVI/SVGA/TV-Out) and no= t the=20 > unsupported split cable version. BTW, the release notes for XFree86 4.3= =20 > detail support for upto Radeon 9x00=20 It does? I'm looking at: http://www.xfree86.org/current/Status6.html#6 which says "Radeon", without qualifying it with any model numbers. Is there some documentation I'm missing? > so spending more money and also being able=20 > to play games is an option. If it weren't my money, I'd go up market :-) OK. I've had a look through the ATI site, and found http://mirror.ati.com/products/builtdesktoppc.html which looks right. From there, the Radeon 9000 Pro seems appropriate..? I confess, I'm getting thrown by the acronyms. For example, does http://www.dabs.com/products/prod-info3-info.asp?&m=3Dy&quicklinx=3D28C= TKK&refererid=3DKK look right? It seems that most of these sites have far too little information about the product on them . N --=20 FreeBSD: The Power to Serve http://www.freebsd.org/ (__) FreeBSD Documentation Project http://www.freebsd.org/docproj/ \\\'',) \/ \= ^ --- 15B8 3FFC DDB4 34B0 AA5F 94B7 93A8 0764 2C37 E375 --- .\._/= _) --XyBMaHrM0hrbbr/O Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+Y4Cfk6gHZCw343URAkFmAJ4sLiKZtVCH8jmgJICB7iI3LMXNmACdGXT+ njHRNm9b+dcHVRpyTX7E/So= =tGSQ -----END PGP SIGNATURE----- --XyBMaHrM0hrbbr/O-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Mon Mar 3 8:58:30 2003 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 9AD6437B401; Mon, 3 Mar 2003 08:58:28 -0800 (PST) Received: from puma.icir.org (puma.icir.org [192.150.187.73]) by mx1.FreeBSD.org (Postfix) with ESMTP id 280CE43F85; Mon, 3 Mar 2003 08:58:28 -0800 (PST) (envelope-from hodson@puma.icir.org) Received: from puma.icir.org (localhost [127.0.0.1]) by puma.icir.org (8.12.3/8.12.3) with ESMTP id h23GwS8J005460; Mon, 3 Mar 2003 08:58:28 -0800 (PST) (envelope-from hodson@puma.icir.org) Message-Id: <200303031658.h23GwS8J005460@puma.icir.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.3 To: Nik Clayton Cc: Orion Hodson , freebsd-multimedia@FreeBSD.ORG From: Orion Hodson Subject: Re: Dual head graphics card recommendations sought In-Reply-To: Your message of "Mon, 03 Mar 2003 16:19:44 GMT." <20030303161944.GJ6403@clan.nothing-going-on.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 03 Mar 2003 08:58:28 -0800 Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org /-- Nik Clayton wrote: | | --XyBMaHrM0hrbbr/O | Content-Type: text/plain; charset=us-ascii | Content-Disposition: inline | Content-Transfer-Encoding: quoted-printable | | Hi, | | Thanks for the reply. | | On Mon, Mar 03, 2003 at 05:39:32AM -0800, Orion Hodson wrote: | > | Can someone recommend a graphics card that can drive a TFT using DVI at | > | 1600x1200, and a CRT using an analogue connection at 1280x1024, at the | > | same time (dual head), and that's supported using XFree86? | | [...] | | > BTW, if you do go this route then when purchasing the Radeon VE/7000 care= | =20 | > needs to be taken that it is the multi-interface (DVI/SVGA/TV-Out) and no= | t the=20 | > unsupported split cable version. BTW, the release notes for XFree86 4.3= | =20 | > detail support for upto Radeon 9x00=20 | | It does? I'm looking at: | | http://www.xfree86.org/current/Status6.html#6 | | which says "Radeon", without qualifying it with any model numbers. Is | there some documentation I'm missing? http://www.xfree86.org/4.3.0/RELNOTES2.html#3 | OK. I've had a look through the ATI site, and found | | http://mirror.ati.com/products/builtdesktoppc.html | | which looks right. From there, the Radeon 9000 Pro seems appropriate..? | | I confess, I'm getting thrown by the acronyms. For example, does | | http://www.dabs.com/products/prod-info3-info.asp?&m=3Dy&quicklinx=3D28C= | TKK&refererid=3DKK | | look right? It seems that most of these sites have far too little | information about the product on them . The manual on the ATI website for the Radeon 9000 Pro has pictures with the right connectors and the feature list on the Dabs link is fine, except it excludes svga, but maybe that's so obvious a feature that it's not listed. - Orion To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Mon Mar 3 13:10:10 2003 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 9769A37B401 for ; Mon, 3 Mar 2003 13:10:09 -0800 (PST) Received: from gicco.homeip.net (dclient80-218-75-162.hispeed.ch [80.218.75.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 036D643FB1 for ; Mon, 3 Mar 2003 13:10:08 -0800 (PST) (envelope-from hampi@rootshell.be) Received: from localhost.here (idefix@gicco.homeip.net [127.0.0.1]) by gicco.homeip.net (8.12.6/8.12.6) with ESMTP id h23L9LDr000833 for ; Mon, 3 Mar 2003 22:09:21 +0100 (CET) (envelope-from hampi@rootshell.be) Received: (from idefix@localhost) by localhost.here (8.12.6/8.12.6/Submit) id h23L9KnI000832 for freebsd-multimedia@FreeBSD.ORG; Mon, 3 Mar 2003 22:09:20 +0100 (CET) X-Authentication-Warning: localhost.here: idefix set sender to hampi@rootshell.be using -f Date: Mon, 3 Mar 2003 22:09:20 +0100 From: Hanspeter Roth To: freebsd-multimedia@FreeBSD.ORG Subject: Re: concatenating audio files Message-ID: <20030303210920.GA478@gicco.homeip.net> Reply-To: freebsd-multimedia@FreeBSD.ORG Mail-Followup-To: freebsd-multimedia@FreeBSD.ORG References: <20030302191026.GA552@gicco.homeip.net> <20030302160339.28b7b37c.nospam@hiltonbsd.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030302160339.28b7b37c.nospam@hiltonbsd.com> User-Agent: Mutt/1.4i Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Mar 02 at 16:03, Stephen Hilton spoke: > for xloop in `ls -c1 *.wav` > do > sox "${xloop}" -t raw - | cat - >> mtracks.raw > # sox strips off all header info from wav files so combining is possible > rm "${xloop}" > done > > sox -r 44100 -w -s -c 2 mtracks.raw "${mytitle}.wav" > # sox now writes back from raw file to wav format with header Thank you Stephen, this works! -Hanspeter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Thu Mar 6 13:58:38 2003 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 B624537B405 for ; Thu, 6 Mar 2003 13:58:36 -0800 (PST) Received: from smtp6.wanadoo.nl (smtp6.wanadoo.nl [194.134.35.177]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9FF7443F75 for ; Thu, 6 Mar 2003 13:58:35 -0800 (PST) (envelope-from steve@sohara.org) Received: from ams-gw.sohara.org (unknown [194.134.210.246]) by smtp6.wanadoo.nl (Postfix) with SMTP id BDE1E7273A for ; Thu, 6 Mar 2003 22:58:32 +0100 (CET) Date: Thu, 6 Mar 2003 22:58:28 +0100 From: Steve O'Hara-Smith To: freebsd-multimedia@FreeBSD.ORG Subject: Full resolution DVR with make buildworld running Message-Id: <20030306225828.62bf131b.steve@sohara.org> X-Mailer: Sylpheed version 0.8.10 (GTK+ 1.2.10; i386-portbld-freebsd4.7) X-Face: %]+HVL}K`P8>+8ZcY-WGHP6j@&mxMo9JH6_WdgIgUGH)JX/usO0%jy7T~IVgqjumD^OBqX,Kv^- GM6mlw(fI^$"QRKyZ$?xx/ Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hi, I was amazed that this worked as well as it did! With a combination of a slightly modified nuppelvideo port, a buffering script and mencoder it is possible to capture and compress to AVI from a bktr tuner at full PAL resolution (768x576) *with make buildworld running* on an AMD2000+ - and probably on much less powerful hardware, certainly if you don't run make buildworld while recording :) The test run dropped a few frames, which it seems can be avoided if the make buildworld is run under nice :) The bits to make it happen can be found on ftp.sohara.org in /pub: nuppelvideo.1.1-1.2.patch Patch for nuppelvideo port to enable using stdout. nuppelvideo.tar.gz Version of the Nuppelvideo port with this patch applied. CDRW/bigbuf.pl Big buffer pipe - uses files in /tmp. test.avi Sample 768x576 avi file recorded with make buildworld running! Using this command line: nuvrec -W 768 -H 576 -f 792 -t 1 - | bigbuf.pl | \ nice mencoder -oac mp3lame -lameopts br=128 -ovc lavc \ -lavcopts vcodec=mpeg4:vbitrate=2400:vhq - -o test.avi -- C:>WIN | Directable Mirrors The computer obeys and wins. |A Better Way To Focus The Sun You lose and Bill collects. | licenses available - see: | http://www.sohara.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Fri Mar 7 6: 3:52 2003 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 0885B37B401 for ; Fri, 7 Mar 2003 06:03:51 -0800 (PST) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.183]) by mx1.FreeBSD.org (Postfix) with ESMTP id B9C7B43F75 for ; Fri, 7 Mar 2003 06:03:49 -0800 (PST) (envelope-from uzs106@ibm.rhrz.uni-bonn.de) Received: from [212.227.126.155] (helo=mrelayng.kundenserver.de) by moutng.kundenserver.de with esmtp (Exim 3.35 #1) id 18rIRx-0006mf-00 for freebsd-multimedia@freebsd.org; Fri, 07 Mar 2003 15:03:49 +0100 Received: from [80.133.98.96] (helo=moritz.alleswirdgruener) by mrelayng.kundenserver.de with asmtp (TLSv1:EDH-RSA-DES-CBC3-SHA:168) (Exim 3.35 #1) id 18rIRw-0007kp-00 for freebsd-multimedia@FreeBSD.ORG; Fri, 07 Mar 2003 15:03:48 +0100 Received: from moritz.alleswirdgruener (localhost [127.0.0.1]) by moritz.alleswirdgruener (8.12.6/8.12.6) with ESMTP id h27Dt7MK034980 for ; Fri, 7 Mar 2003 14:55:08 +0100 (CET) (envelope-from uzs106@ibm.rhrz.uni-bonn.de) Received: from localhost (uzs106@localhost) by moritz.alleswirdgruener (8.12.6/8.12.6/Submit) with ESMTP id h27DsOBn034966 for ; Fri, 7 Mar 2003 14:54:24 +0100 (CET) Date: Fri, 7 Mar 2003 14:54:24 +0100 (CET) From: Heiko Recktenwald X-Sender: uzs106@localhost To: freebsd Subject: VLC Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hi, has anybody the famous french Videolan Client running? They claim that it does run on BSD too, and see http://www.videolan.org/vlc/download-sources.html , but I couldnt ./configure. The mad developpers headers missing... ./configure --with-mad=no didnt help. There should be a package. It seems to include plugins for Mozilla. And seems to display the divx.avis with playlists at http://intra.b.lab.net/cgi-bin/uzs106/test/playavi (according to the logfile). H. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Fri Mar 7 6:17:42 2003 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 D73BE37B405 for ; Fri, 7 Mar 2003 06:17:41 -0800 (PST) Received: from melusine.cuivre.fr.eu.org (melusine.cuivre.fr.eu.org [62.212.105.185]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0058443F93 for ; Fri, 7 Mar 2003 06:17:41 -0800 (PST) (envelope-from thomas@FreeBSD.ORG) Received: by melusine.cuivre.fr.eu.org (Postfix, from userid 1000) id 9A1872C3D1; Fri, 7 Mar 2003 15:17:38 +0100 (CET) Date: Fri, 7 Mar 2003 15:17:38 +0100 From: Thomas Quinot To: Heiko Recktenwald Cc: freebsd Subject: Re: VLC Message-ID: <20030307141738.GA3766@melusine.cuivre.fr.eu.org> Reply-To: Thomas Quinot References: Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: User-Agent: Mutt/1.4i X-message-flag: WARNING! Using Outlook can damage your computer. Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Le 2003-03-07, Heiko Recktenwald écrivait : > has anybody the famous french Videolan Client running? Had it running a few months ago from /usr/ports/graphics/vlc. Thomas. -- Thomas.Quinot@Cuivre.FR.EU.ORG To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Fri Mar 7 7: 4:24 2003 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 77C3A37B406; Fri, 7 Mar 2003 07:04:23 -0800 (PST) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.185]) by mx1.FreeBSD.org (Postfix) with ESMTP id 391D343FCB; Fri, 7 Mar 2003 07:04:22 -0800 (PST) (envelope-from uzs106@ibm.rhrz.uni-bonn.de) Received: from [212.227.126.160] (helo=mrelayng.kundenserver.de) by moutng.kundenserver.de with esmtp (Exim 3.35 #1) id 18rJOX-0002B7-00; Fri, 07 Mar 2003 16:04:21 +0100 Received: from [80.133.97.119] (helo=moritz.alleswirdgruener) by mrelayng.kundenserver.de with asmtp (TLSv1:EDH-RSA-DES-CBC3-SHA:168) (Exim 3.35 #1) id 18rJOW-000187-00; Fri, 07 Mar 2003 16:04:21 +0100 Received: from moritz.alleswirdgruener (localhost [127.0.0.1]) by moritz.alleswirdgruener (8.12.6/8.12.6) with ESMTP id h27F0vMK035397; Fri, 7 Mar 2003 16:00:57 +0100 (CET) (envelope-from uzs106@ibm.rhrz.uni-bonn.de) Received: from localhost (uzs106@localhost) by moritz.alleswirdgruener (8.12.6/8.12.6/Submit) with ESMTP id h27F06LL035387; Fri, 7 Mar 2003 16:00:06 +0100 (CET) Date: Fri, 7 Mar 2003 16:00:06 +0100 (CET) From: Heiko Recktenwald X-Sender: uzs106@localhost To: Thomas Quinot Cc: freebsd Subject: Re: VLC In-Reply-To: <20030307141738.GA3766@melusine.cuivre.fr.eu.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org > > has anybody the famous french Videolan Client running? > > Had it running a few months ago from /usr/ports/graphics/vlc. Yeah. I installed this too. But the latest version in ports is 0.44 and the current version 0.5.1, which looks much more advanced. They support MPEG 4 now, dont they? Maybe even http://intra.b.lab.net/cgi-bin/uzs106/test/playmp4 Nice project, chapeau ;-) H. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Fri Mar 7 8:19: 1 2003 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 8820A37B401 for ; Fri, 7 Mar 2003 08:18:59 -0800 (PST) Received: from meitner.wh.uni-dortmund.de (meitner.wh.Uni-Dortmund.DE [129.217.129.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2772643F75 for ; Fri, 7 Mar 2003 08:18:58 -0800 (PST) (envelope-from michaelnottebrock@gmx.net) Received: from lofi.dyndns.org ([10.3.12.105]) by meitner.wh.uni-dortmund.de (8.10.2/8.10.2/SuSE Linux 8.10.0-0.3) with ESMTP id h27GInc13165; Fri, 7 Mar 2003 17:18:54 +0100 X-Authentication-Warning: meitner.wh.uni-dortmund.de: Host [10.3.12.105] claimed to be lofi.dyndns.org Received: from kiste.my.domain (kiste.my.domain [192.168.8.4]) (authenticated bits=0) by lofi.dyndns.org (8.12.6/8.12.6) with ESMTP id h27GInRT047714 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Fri, 7 Mar 2003 17:18:49 +0100 (CET) (envelope-from michaelnottebrock@gmx.net) From: Michael Nottebrock To: Heiko Recktenwald Subject: Re: VLC Date: Fri, 7 Mar 2003 17:18:45 +0100 User-Agent: KMail/1.5 References: In-Reply-To: Cc: freebsd MIME-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="Boundary-02=_pZMa++zwaZfxh/6"; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200303071718.49080.michaelnottebrock@gmx.net> X-Virus-Scanned: by amavisd-new Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --Boundary-02=_pZMa++zwaZfxh/6 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Description: signed data Content-Disposition: inline On Friday 07 March 2003 14:54, Heiko Recktenwald wrote: > Hi, > > has anybody the famous french Videolan Client running? I tried it back on Linux, but ditched it due to its abysmal dvd-playback=20 performance. =2D-=20 Regards, Michael Nottebrock --Boundary-02=_pZMa++zwaZfxh/6 Content-Type: application/pgp-signature Content-Description: signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQA+aMZpXhc68WspdLARAmrYAJ0bsAsIl+myiuUVHrzN9EHeojlyZgCdGV+E NsClvKVaynH6vD3+hIWupK8= =sutc -----END PGP SIGNATURE----- --Boundary-02=_pZMa++zwaZfxh/6-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Fri Mar 7 9:53:58 2003 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 BC5B437B401; Fri, 7 Mar 2003 09:53:56 -0800 (PST) Received: from hermes.pressenter.com (hermes.pressenter.com [209.224.20.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B10D43FB1; Fri, 7 Mar 2003 09:53:55 -0800 (PST) (envelope-from nospam@hiltonbsd.com) Received: from [209.224.36.112] (helo=daggar.sbgnet.net) by hermes.pressenter.com with smtp (Exim 3.16 #1) id 18rM2W-0000Wt-00; Fri, 07 Mar 2003 11:53:49 -0600 Date: Fri, 7 Mar 2003 11:53:31 -0600 From: Stephen Hilton To: freebsd-multimedia@FreeBSD.ORG Cc: , Subject: XFree86 4.3.0 and Ogle problems Message-Id: <20030307115331.60e8c169.nospam@hiltonbsd.com> X-Mailer: Sylpheed version 0.8.10 (GTK+ 1.2.10; i386-portbld-freebsd4.8) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Howdy, I have updated my system to Xfree86 4.3.0 via Eric's patches and most stuff is running fine, but found a problem with ogle. With the ogle 9.0 port my playback is choppy/faster/no audio it would start ok then quickly fall apart. I de-installed then checked out the ogle and ogle-gui 8.5 ports and hacked the ogle Makefile like this: LIB_DEPENDS= a52.0:${PORTSDIR}/audio/liba52 \ dvdread.2:${PORTSDIR}/multimedia/libdvdread \ To: LIB_DEPENDS= a52.0:${PORTSDIR}/audio/liba52 \ dvdread.3:${PORTSDIR}/multimedia/libdvdread \ So that I would still be using the newer dvdread libs, then rebuilt and re-installed ogle, playback and audio seem fine now. My video card is a Matrox G400, audio is Aureal Vortex2. Any other info need, just ask :-) Regards, Stephen Hilton nospam@hiltonbsd.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Fri Mar 7 10:14:25 2003 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 DE18437B401 for ; Fri, 7 Mar 2003 10:14:24 -0800 (PST) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.188]) by mx1.FreeBSD.org (Postfix) with ESMTP id D1D1543FAF for ; Fri, 7 Mar 2003 10:14:23 -0800 (PST) (envelope-from uzs106@ibm.rhrz.uni-bonn.de) Received: from [212.227.126.161] (helo=mrelayng.kundenserver.de) by moutng.kundenserver.de with esmtp (Exim 3.35 #1) id 18rMMR-0006nZ-00; Fri, 07 Mar 2003 19:14:23 +0100 Received: from [80.133.99.133] (helo=moritz.alleswirdgruener) by mrelayng.kundenserver.de with asmtp (TLSv1:EDH-RSA-DES-CBC3-SHA:168) (Exim 3.35 #1) id 18rMMQ-0004ym-00; Fri, 07 Mar 2003 19:14:22 +0100 Received: from moritz.alleswirdgruener (localhost [127.0.0.1]) by moritz.alleswirdgruener (8.12.6/8.12.6) with ESMTP id h27IB0MK064394; Fri, 7 Mar 2003 19:11:00 +0100 (CET) (envelope-from uzs106@ibm.rhrz.uni-bonn.de) Received: from localhost (uzs106@localhost) by moritz.alleswirdgruener (8.12.6/8.12.6/Submit) with ESMTP id h27I6mFI064368; Fri, 7 Mar 2003 19:06:48 +0100 (CET) Date: Fri, 7 Mar 2003 19:06:48 +0100 (CET) From: Heiko Recktenwald X-Sender: uzs106@localhost To: Michael Nottebrock Cc: freebsd Subject: Re: VLC In-Reply-To: <200303071718.49080.michaelnottebrock@gmx.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org > > has anybody the famous french Videolan Client running? > > I tried it back on Linux, but ditched it due to its abysmal dvd-playback > performance. Dont have a DVD drive and had problems with displaying MPEG 1 video, with the version in ports (0.4.4), but they did http stream divx.avis and bla.mp4s (according to the logfiles), their newest version is 0.5.2 test 3. Maybe I am biased ;-) Best, H. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Fri Mar 7 11:25:35 2003 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 D112737B401; Fri, 7 Mar 2003 11:25:33 -0800 (PST) Received: from hermes.pressenter.com (hermes.pressenter.com [209.224.20.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E93843FB1; Fri, 7 Mar 2003 11:25:32 -0800 (PST) (envelope-from nospam@hiltonbsd.com) Received: from [209.100.171.89] (helo=daggar.sbgnet.net) by hermes.pressenter.com with smtp (Exim 3.16 #1) id 18rNTG-0000i2-00; Fri, 07 Mar 2003 13:25:30 -0600 Date: Fri, 7 Mar 2003 13:25:13 -0600 From: Stephen Hilton To: freebsd-multimedia@FreeBSD.ORG Cc: lioux@FreeBSD.ORG, eta@lclark.edu Subject: Re: XFree86 4.3.0 and Ogle problems Message-Id: <20030307132513.1daa8d8b.nospam@hiltonbsd.com> In-Reply-To: <20030307115331.60e8c169.nospam@hiltonbsd.com> References: <20030307115331.60e8c169.nospam@hiltonbsd.com> X-Mailer: Sylpheed version 0.8.10 (GTK+ 1.2.10; i386-portbld-freebsd4.8) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Fri, 7 Mar 2003 11:53:31 -0600 Stephen Hilton wrote: > Howdy, > > I have updated my system to Xfree86 4.3.0 via Eric's patches > and most stuff is running fine, but found a problem with ogle. > > With the ogle 9.0 port my playback is choppy/faster/no audio > it would start ok then quickly fall apart. > > I de-installed then checked out the ogle and ogle-gui 8.5 ports > and hacked the ogle Makefile like this: > > LIB_DEPENDS= a52.0:${PORTSDIR}/audio/liba52 \ > dvdread.2:${PORTSDIR}/multimedia/libdvdread \ > > To: > > LIB_DEPENDS= a52.0:${PORTSDIR}/audio/liba52 \ > dvdread.3:${PORTSDIR}/multimedia/libdvdread \ > > So that I would still be using the newer dvdread libs, then > rebuilt and re-installed ogle, playback and audio seem fine > now. > > My video card is a Matrox G400, audio is Aureal Vortex2. > > Any other info need, just ask :-) Talking to myself again :-) Just found out that my CDROM has dropped back to non-udma mode. Do not know why yet, but will post again when this is resolved. I am using atapicam and the cd0 device on my 4.8-Pre system. Also have the /boot/loader.conf like this: userconfig_script_load="YES" boot_verbose="YES" hw.ata.atapi_dma="1" hw.ata.ata_dma="1" agp_load="YES" linux_load="YES" And am pretty sure I had UDMA on the CDROM in the past, but that may have been before I started using atapicam. Will follow-up when I know more. Stephen Hilton nospam@hiltonbsd.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Sat Mar 8 13:59:43 2003 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 C871C37B401; Sat, 8 Mar 2003 13:59:25 -0800 (PST) Received: from hermes.pressenter.com (hermes.pressenter.com [209.224.20.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 379D743F93; Sat, 8 Mar 2003 13:59:24 -0800 (PST) (envelope-from nospam@hiltonbsd.com) Received: from [198.31.224.116] (helo=daggar.sbgnet.net) by hermes.pressenter.com with smtp (Exim 3.16 #1) id 18rmLc-00060p-00; Sat, 08 Mar 2003 15:59:16 -0600 Date: Sat, 8 Mar 2003 15:59:29 -0600 From: Stephen Hilton To: Stephen Hilton Cc: freebsd-multimedia@FreeBSD.ORG, lioux@FreeBSD.ORG, eta@lclark.edu Subject: Re: XFree86 4.3.0 and Ogle problems (long) Message-Id: <20030308155929.5fc8fb17.nospam@hiltonbsd.com> In-Reply-To: <20030307132513.1daa8d8b.nospam@hiltonbsd.com> References: <20030307115331.60e8c169.nospam@hiltonbsd.com> <20030307132513.1daa8d8b.nospam@hiltonbsd.com> X-Mailer: Sylpheed version 0.8.10 (GTK+ 1.2.10; i386-portbld-freebsd4.8) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Fri, 7 Mar 2003 13:25:13 -0600 Stephen Hilton wrote: > On Fri, 7 Mar 2003 11:53:31 -0600 > Stephen Hilton wrote: > > > Howdy, > > > > I have updated my system to Xfree86 4.3.0 via Eric's patches > > and most stuff is running fine, but found a problem with ogle. > > > > With the ogle 9.0 port my playback is choppy/faster/no audio > > it would start ok then quickly fall apart. > > > > I de-installed then checked out the ogle and ogle-gui 8.5 ports > > and hacked the ogle Makefile like this: > > > > LIB_DEPENDS= a52.0:${PORTSDIR}/audio/liba52 \ > > dvdread.2:${PORTSDIR}/multimedia/libdvdread \ > > > > To: > > > > LIB_DEPENDS= a52.0:${PORTSDIR}/audio/liba52 \ > > dvdread.3:${PORTSDIR}/multimedia/libdvdread \ > > > > So that I would still be using the newer dvdread libs, then > > rebuilt and re-installed ogle, playback and audio seem fine > > now. > > > > My video card is a Matrox G400, audio is Aureal Vortex2. > > > > Any other info need, just ask :-) [snip] OK, have confirmed that cd0 is running in DMA mode (WDMA2) ___________Common system information________________ daggar># uname -a FreeBSD daggar.mynet.local 4.8-RC FreeBSD 4.8-RC #0: Fri Mar 7 15:01:47 CST 2003 root@daggar.mynet.local :/usr/obj/usr/src/sys/DAGGAR i386 daggar># atacontrol info 1 Master: acd0 ATA/ATAPI rev 0 Slave: no device present daggar># atacontrol mode 1 Master = WDMA2 Slave = ??? /var/run/dmesg.boot [snip] Copyright (c) 1992-2003 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 4.8-RC #0: Fri Mar 7 15:01:47 CST 2003 root@daggar.mynet.local:/usr/obj/usr/src/sys/DAGGAR Calibrating clock(s) ... TSC clock: 601341227 Hz, i8254 clock: 1193137 Hz CLK_USE_I8254_CALIBRATION not specified - using default frequency Timecounter "i8254" frequency 1193182 Hz CLK_USE_TSC_CALIBRATION not specified - using old calibration method CPU: Intel Pentium III (601.37-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x683 Stepping = 3 Features=0x383f9ff real memory = 268419072 (262128K bytes) Physical memory chunk(s): 0x00001000 - 0x0009efff, 647168 bytes (158 pages) 0x003db000 - 0x0fff3fff, 264343552 bytes (64537 pages) fb: new array size 4 avail memory = 257282048 (251252K bytes) bios32: Found BIOS32 Service Directory header at 0xc00f9f00 bios32: Entry = 0xf06b0 (c00f06b0) Rev = 0 Len = 1 pcibios: PCI BIOS entry at 0x8b0 pnpbios: Found PnP BIOS data at 0xc00fd330 pnpbios: Entry = f0000:d360 Rev = 1.0 pnpbios: OEM ID cd041 Other BIOS signatures found: ACPI: 000f81d0 Preloaded elf kernel "kernel" at 0xc03b4000. Preloaded userconfig_script "/boot/kernel.conf" at 0xc03b409c. Preloaded elf module "linux.ko" at 0xc03b40ec. Preloaded elf module "agp.ko" at 0xc03b418c. VESA: information block 56 45 53 41 00 02 ca 6c 00 c0 01 00 00 00 74 69 00 c0 00 01 05 01 df 6c 00 c0 e6 6c 00 c0 f2 6c 00 c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 VESA: 11 mode(s) found VESA: v2.0, 16384k memory, flags:0x1, mode table:0xc00c6974 (c0006974) VESA: Matrox Graphics Inc. VESA: Matrox Matrox G400 00 netsmb_dev: loaded Pentium Pro MTRR support enabled Creating DISK md0 md0: Malloc disk pci_open(1): mode 1 addr port (0x0cf8) is 0x80010014 pci_open(1a): mode1res=0x80000000 (0x80000000) pci_cfgcheck: device 0 [class=060000] [hdr=00] is there (id=71908086) Using $PIR table, 7 entries at 0xc00f0ea0 apm0: on motherboard apm0: found APM BIOS v1.2, connected at v1.2 npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard found-> vendor=0x8086, dev=0x7190, revid=0x03 class=06-00-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 map[10]: type 1, range 32, base d0000000, size 28 found-> vendor=0x8086, dev=0x7191, revid=0x03 class=06-04-00, hdrtype=0x01, mfdev=0 subordinatebus=1 secondarybus=1 found-> vendor=0x8086, dev=0x7110, revid=0x02 class=06-01-00, hdrtype=0x00, mfdev=1 subordinatebus=0 secondarybus=0 found-> vendor=0x8086, dev=0x7111, revid=0x01 class=01-01-80, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 map[20]: type 1, range 32, base 0000d800, size 4 found-> vendor=0x8086, dev=0x7112, revid=0x01 class=0c-03-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 intpin=d, irq=3 map[20]: type 1, range 32, base 0000d400, size 5 found-> vendor=0x8086, dev=0x7113, revid=0x02 class=06-80-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 map[90]: type 1, range 32, base 0000e800, size 4 found-> vendor=0x12eb, dev=0x0002, revid=0xfe class=04-01-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 intpin=a, irq=3 map[10]: type 1, range 32, base cc000000, size 18 map[14]: type 1, range 32, base 0000d000, size 3 map[18]: type 1, range 32, base 0000b800, size 3 found-> vendor=0x10b7, dev=0x9200, revid=0x78 class=02-00-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 intpin=a, irq=3 map[10]: type 1, range 32, base 0000b400, size 7 map[14]: type 1, range 32, base cb800000, size 7 found-> vendor=0x1000, dev=0x000c, revid=0x01 class=01-00-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 intpin=a, irq=11 map[10]: type 1, range 32, base 0000b000, size 8 map[14]: type 1, range 32, base cb000000, size 8 map[18]: type 1, range 32, base ca800000, size 12 pci0: on pcib0 agp0: mem 0xd0000000-0xdfffffff at device 0.0 on pci0 agp0: allocating GATT for aperture of size 128M pcib1: at device 1.0 on pci0 found-> vendor=0x102b, dev=0x0525, revid=0x04 class=03-00-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 intpin=a, irq=10 map[10]: type 1, range 32, base ce000000, size 25 map[14]: type 1, range 32, base cd000000, size 14 map[18]: type 1, range 32, base cc800000, size 23 pci1: on pcib1 pci1: (vendor=0x102b, dev=0x0525) at 0.0 irq 10 isab0: at device 4.0 on pci0 isa0: on isab0 atapci0: port 0xd800-0xd80f at device 4.1 on pci0 ata0: iobase=0x01f0 altiobase=0x03f6 bmaddr=0xd800 ata0: mask=03 ostat0=50 ostat2=00 ata0-master: ATAPI 00 00 ata0-slave: ATAPI 00 00 ata0: mask=03 stat0=50 stat1=00 ata0-master: ATA 01 a5 ata0: devices=01 ata0: at 0x1f0 irq 14 on atapci0 ata1: iobase=0x0170 altiobase=0x0376 bmaddr=0xd808 ata1: mask=03 ostat0=50 ostat2=00 ata1-master: ATAPI 14 eb ata1-slave: ATAPI ff ff ata1: mask=03 stat0=00 stat1=00 ata1: devices=04 ata1: at 0x170 irq 15 on atapci0 uhci0: port 0xd400-0xd41f irq 3 at device 4.2 on pci0 usb0: on uhci0 usb0: USB revision 1.0 uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered chip0: port 0xe800-0xe80f at device 4.3 on pci0 pci0: (vendor=0x12eb, dev=0x0002) at 5.0 irq 3 xl0: <3Com 3c905C-TX Fast Etherlink XL> port 0xb400-0xb47f mem 0xcb800000-0xcb80007f irq 3 at device 9.0 on pci0 using shared irq3. xl0: Ethernet address: 00:02:03:1c:80:1b xl0: media options word: a xl0: found MII/AUTO miibus0: on xl0 xlphy0: <3c905C 10/100 internal PHY> on miibus0 xlphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto bpf: xl0 attached sym0: <895> port 0xb000-0xb0ff mem 0xca800000-0xca800fff,0xcb000000-0xcb0000ff irq 11 at device 10.0 on pci0 sym0: Tekram NVRAM, ID 7, Fast-40, LVD, parity checking sym0: open drain IRQ line driver, using on-chip SRAM sym0: using LOAD/STORE-based firmware. ata-: ata0 exists, using next available unit number ata-: ata1 exists, using next available unit number Trying Read_Port at 203 Trying Read_Port at 243 Trying Read_Port at 283 Trying Read_Port at 2c3 Trying Read_Port at 303 Trying Read_Port at 343 Trying Read_Port at 383 Trying Read_Port at 3c3 isa_probe_children: disabling PnP devices isa_probe_children: probing non-PnP devices orm0: