From owner-freebsd-multimedia@FreeBSD.ORG Mon Sep 15 00:55:58 2003 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 908DA16A4BF for ; Mon, 15 Sep 2003 00:55:58 -0700 (PDT) Received: from serio.al.rim.or.jp (serio.al.rim.or.jp [202.247.191.123]) by mx1.FreeBSD.org (Postfix) with ESMTP id F204643FBD for ; Mon, 15 Sep 2003 00:55:56 -0700 (PDT) (envelope-from sugiura@kt.rim.or.jp) Received: from mail4.rim.or.jp by serio.al.rim.or.jp (3.7W/HMX-13) id QAA20577 for ; Mon, 15 Sep 2003 16:55:53 +0900 (JST) Received: from general.hexagon.mil (YahooBB219015172032.bbtec.net [219.15.172.32]) by mail4.rim.or.jp (8.9.3/3.7W) id QAA15482 for freebsd-multimedia@freebsd.org; Mon, 15 Sep 2003 16:55:54 +0900 (JST) Date: Mon, 15 Sep 2003 16:55:54 +0900 (JST) Message-Id: <200309150755.QAA15482@mail4.rim.or.jp> From: sugiura@kt.rim.or.jp (Sugiura Shiro) To: freebsd-multimedia@freebsd.org In-Reply-To: Your message of "Mon, 8 Sep 2003 20:33:15 +0200". <20030908203315.3d575666.steve@sohara.org> X-Mailer: mnews [version 1.22] 1999-12/19(Sun) Subject: Re: How to make high quality MPEG4 video X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Sep 2003 07:55:58 -0000 In article <20030908203315.3d575666.steve@sohara.org> steve@sohara.org writes: >> SS> --------------------------------------------------------------------- >> SS> ----(1)% ffmpeg -r 29.97 -s 640x480 -ac 2 -ar 48000 -ab 256 -acodec >> SS> mp3 -vcodec \ >> SS> mpegvideo -b 8000 -tvstd ntsc tv.mpg >> SS> >> SS> PID USERNAME PRI NICE SIZE RES STATE TIME WCPU CPU >> SS> COMMAND 648 sugiura 8 0 11912K 10256K nanslp 0:52 49.88% >> SS> 49.61% ffmpeg >> SS> >> SS> (2)% ffmpeg -s 640x480 -tvstd ntsc -vcodec mpeg4 -b 2000 -acodec mp3 >> SS> -ac 2 \ >> SS> -ab 256 -r 29.97 -f avi TV.avi >> SS> >> SS> PID USERNAME PRI NICE SIZE RES STATE TIME WCPU CPU >> SS> COMMAND 657 sugiura 100 0 13092K 11588K RUN 1:47 36.77% >> SS> 36.77% ffmpeg >> >> A little odd, I'd expect mpeg4 production to be slightly more >> CPU intensive than mpeg1 - but these figures look reasonable. Presumably >> these did not work well in some way - what happened ? I tried to some test, then user time MPEG1 > MPEG4 ,but systime MPEG4 > MPEG1 on Pentium4 without HTT and SMP. --TEST.csh-------------------------------------------------------------- #!/bin/csh setenv BKTR_FORMAT 2 @ LOOPS=10 @ SEC=800 set ffmpeg="ffmpeg -y -t $SEC -r 29.97 -s 640x480 -ac 2 -ar 48000 -tvstd ntsc -hq " set mpeg1_=" -ab 256 -acodec mp3 -vcodec mpegvideo -b 8000 tv.mpg" set mpeg4_=" -ab 256 -acodec mp3 -vcodec mpeg4 -b 2000 -f avi tv4.avi" set msmpeg4_=" -ab 128 -acodec ac3 -vcodec msmpeg4v2 -b 2000 -f avi tv4m2.avi" set raw_=" -acodec pcm_s16le -vcodec rawvideo tvR.avi" @ count=1 while ( $count <= $LOOPS ) echo "Loop $count" echo -n "MPEG1 :" time $ffmpeg $mpeg1_ > /dev/null |& grep \+ echo -n "MPEG4 :" time $ffmpeg $mpeg4_ > /dev/null |& grep \+ echo -n "MSMPEG4 :" time $ffmpeg $msmpeg4_ > /dev/null |& grep \+ echo -n "RAW :" time $ffmpeg $raw_ > /dev/null |& grep \+ @ count+=1 end --------------------------------------------------------------------- --Results--------------------------------------------------------------- Loop 1 MPEG1 :494.212u 6.614s 13:20.75 62.5% 56+8139k 22+6362io 190pf+0w MPEG4 :385.428u 12.376s 13:20.92 49.6% 56+10110k 17+1743io 176pf+0w MSMPEG4 :373.991u 8.665s 13:20.56 47.7% 56+9279k 8+1644io 152pf+0w RAW :119.448u 50.564s 13:20.47 21.2% 56+5935k 355+85809io 150pf+0w Loop 2 MPEG1 :487.825u 7.218s 13:21.20 61.7% 56+8125k 66+6360io 176pf+0w MPEG4 :406.480u 12.605s 13:21.01 52.3% 56+10126k 25+1742io 176pf+0w MSMPEG4 :355.670u 9.256s 13:20.75 45.5% 56+9275k 16+1644io 151pf+0w RAW :118.934u 51.168s 13:25.63 21.1% 56+5898k 990+85807io 150pf+0w Loop 3 MPEG1 :455.539u 7.041s 13:21.13 57.7% 56+8132k 62+6361io 176pf+0w MPEG4 :392.309u 12.393s 13:21.08 50.5% 56+10119k 23+1740io 176pf+0w MSMPEG4 :373.658u 9.217s 13:20.62 47.8% 56+9272k 15+1643io 150pf+0w RAW :120.200u 50.345s 13:25.48 21.1% 56+5898k 998+85807io 150pf+0w Loop 4 MPEG1 :477.891u 7.458s 13:21.25 60.5% 56+8137k 62+6361io 176pf+0w MPEG4 :410.977u 13.160s 13:21.07 52.9% 56+10109k 22+1742io 176pf+0w MSMPEG4 :381.468u 9.091s 13:20.83 48.7% 56+9296k 15+1644io 150pf+0w RAW :119.426u 51.020s 13:25.62 21.1% 56+5904k 993+85807io 150pf+0w Loop 5 MPEG1 :476.624u 8.010s 13:21.28 60.4% 56+8145k 61+6361io 176pf+0w MPEG4 :407.733u 12.631s 13:21.24 52.4% 56+10130k 22+1742io 176pf+0w MSMPEG4 :381.648u 8.828s 13:20.67 48.7% 56+9286k 15+1643io 150pf+0w RAW :119.766u 50.492s 13:25.30 21.1% 56+5897k 988+85807io 150pf+0w Loop 6 MPEG1 :490.418u 7.214s 13:21.42 62.0% 56+8139k 61+6361io 176pf+0w MPEG4 :396.721u 12.576s 13:21.13 51.0% 56+10122k 22+1742io 176pf+0w MSMPEG4 :417.065u 8.955s 13:20.71 53.2% 56+9284k 15+1642io 150pf+0w RAW :119.962u 50.447s 13:25.48 21.1% 56+5908k 994+85808io 150pf+0w Loop 7 MPEG1 :503.389u 7.319s 13:21.20 63.7% 56+8128k 61+6360io 176pf+0w MPEG4 :441.007u 13.582s 13:21.10 56.7% 56+10144k 22+1742io 176pf+0w MSMPEG4 :373.070u 9.213s 13:20.67 47.7% 56+9288k 15+1644io 150pf+0w RAW :118.173u 53.084s 13:25.53 21.2% 56+5892k 987+85808io 150pf+0w Loop 8 MPEG1 :454.000u 7.860s 13:21.27 57.6% 56+8127k 62+6361io 176pf+0w MPEG4 :394.710u 13.166s 13:21.07 50.9% 56+10108k 24+1739io 176pf+0w MSMPEG4 :371.748u 8.892s 13:20.73 47.5% 56+9281k 15+1643io 150pf+0w RAW :119.029u 51.089s 13:25.64 21.1% 56+5918k 995+85808io 150pf+0w Loop 9 MPEG1 :449.361u 7.543s 13:21.22 57.0% 56+8139k 61+6360io 176pf+0w MPEG4 :397.485u 13.112s 13:21.09 51.2% 56+10121k 22+1742io 176pf+0w MSMPEG4 :381.736u 8.936s 13:20.65 48.7% 56+9289k 15+1642io 150pf+0w RAW :117.297u 54.883s 13:25.50 21.3% 56+5900k 993+85807io 150pf+0w Loop 10 MPEG1 :453.395u 7.503s 13:21.56 57.4% 56+8148k 61+6361io 176pf+0w MPEG4 :363.526u 12.031s 13:20.99 46.8% 56+10102k 22+1742io 176pf+0w MSMPEG4 :334.223u 8.878s 13:20.75 42.8% 56+9275k 15+1642io 150pf+0w RAW :119.729u 50.759s 13:25.84 21.1% 56+5897k 1000+85807io 150pf+0w ------------------------------------------------------------------------ >> SS> (3)% ffmpeg -r 29.97 -s 640x480 -ac 2 -ar 48000 -acodec pcm_s16le >> SS> -vcodec \ rawvideo -tvstd ntsc TV.avi >> SS> >> SS> PID USERNAME PRI NICE SIZE RES STATE TIME WCPU CPU >> SS> COMMAND 685 sugiura 8 0 10064K 7216K nanslp 0:12 13.83% >> SS> 13.62% ffmpeg >> SS> --------------------------------------------------------------------- >> SS> ---- >> SS> >> SS> I recorded TV like (3) , then I want to encode to MPEG4 using ffmpeg. >> SS> But, I can't encode like following; >> SS> >> SS> --------------------------------------------------------------------- >> SS> ----% ffmpeg -t 30 -r 29.97 -s 640x480 -ac 2 -ar 48000 -acodec >> SS> pcm_s16le \ >> SS> -vcodec rawvideo -tvstd ntsc TV.avi >> >> The only difference is the -t 30 right ? Yes. >> Timer problems ??? Try kern.timecounter.method=1 in /etc/sysctl.conf >> and a reboot to check. It seems that there is no kern.timecounter.method parameter in 5.1-CURRENT (20030812 and 20030914) and I cound not set it. % sysctl -a | grep kern.timecounter kern.timecounter.nbinuptime: 1762375 kern.timecounter.nnanouptime: 3 kern.timecounter.nmicrouptime: 4556 kern.timecounter.nbintime: 523017 kern.timecounter.nnanotime: 52 kern.timecounter.nmicrotime: 522965 kern.timecounter.ngetbinuptime: 0 kern.timecounter.ngetnanouptime: 6176 kern.timecounter.ngetmicrouptime: 425784 kern.timecounter.ngetbintime: 0 kern.timecounter.ngetnanotime: 0 kern.timecounter.ngetmicrotime: 476627 kern.timecounter.nsetclock: 3 kern.timecounter.hardware: ACPI-fast kern.timecounter.choice: TSC(800) ACPI-fast(1000) i8254(0) dummy(-1000000) kern.timecounter.tick: 1 -- Sugiura Shiro E-mail : sugiura@kt.rim.or.jp From owner-freebsd-multimedia@FreeBSD.ORG Mon Sep 15 22:08:17 2003 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8A23216A4B3 for ; Mon, 15 Sep 2003 22:08:17 -0700 (PDT) Received: from smtp6.wanadoo.nl (smtp6.wanadoo.nl [194.134.35.177]) by mx1.FreeBSD.org (Postfix) with ESMTP id DE31343F85 for ; Mon, 15 Sep 2003 22:08:15 -0700 (PDT) (envelope-from steve@sohara.org) Received: from ams-gw.sohara.org (p0922.nas2-asd6.dial.wanadoo.nl [62.234.215.160]) by smtp6.wanadoo.nl (Postfix) with SMTP id 02A7575971; Tue, 16 Sep 2003 07:08:14 +0200 (CEST) Date: Tue, 16 Sep 2003 07:08:08 +0200 From: Steve O'Hara-Smith To: sugiura@kt.rim.or.jp (Sugiura Shiro) Message-Id: <20030916070808.29928e81.steve@sohara.org> In-Reply-To: <200309150755.QAA15482@mail4.rim.or.jp> References: <20030908203315.3d575666.steve@sohara.org> <200309150755.QAA15482@mail4.rim.or.jp> X-Mailer: Sylpheed version 0.9.4 (GTK+ 1.2.10; i386-portbld-freebsd4.8) 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 cc: freebsd-multimedia@freebsd.org Subject: Re: How to make high quality MPEG4 video X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Sep 2003 05:08:17 -0000 On Mon, 15 Sep 2003 16:55:54 +0900 (JST) sugiura@kt.rim.or.jp (Sugiura Shiro) wrote: SS> >> Timer problems ??? Try kern.timecounter.method=1 in SS> >/etc/sysctl.conf> and a reboot to check. SS> SS> It seems that there is no kern.timecounter.method parameter in SS> 5.1-CURRENT(20030812 and 20030914) and I cound not set it. SS> SS> % sysctl -a | grep kern.timecounter Wow what a lot. SS> kern.timecounter.hardware: ACPI-fast SS> kern.timecounter.choice: TSC(800) ACPI-fast(1000) i8254(0) I think it will be the .choice that has replaced method, it looks like 800 is the value you want - seems odd. -- 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/ From owner-freebsd-multimedia@FreeBSD.ORG Tue Sep 16 00:52:47 2003 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6624016A4B3 for ; Tue, 16 Sep 2003 00:52:47 -0700 (PDT) Received: from mailout03.sul.t-online.com (mailout03.sul.t-online.com [194.25.134.81]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2593C43F85 for ; Tue, 16 Sep 2003 00:52:46 -0700 (PDT) (envelope-from Alexander@Leidinger.net) Received: from fwd00.aul.t-online.de by mailout03.sul.t-online.com with smtp id 19zAdW-00050G-02; Tue, 16 Sep 2003 09:52:34 +0200 Received: from Andro-Beta.Leidinger.net (bjOY7-ZA8eOsZqQoF-oaiPAZKQOgjGy-1qOKLRAbhpMnoSaRmZ5n8E@[217.229.210.212]) by fmrl00.sul.t-online.com with esmtp id 19zAdC-1RKQ2i0; Tue, 16 Sep 2003 09:52:14 +0200 Received: from Magelan.Leidinger.net (Magelan [192.168.1.1]) h8G7qCsx002864; Tue, 16 Sep 2003 09:52:13 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Received: from Magelan.Leidinger.net (netchild@localhost [127.0.0.1]) by Magelan.Leidinger.net (8.12.9/8.12.9) with SMTP id h8G7qCrq001017; Tue, 16 Sep 2003 09:52:12 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Date: Tue, 16 Sep 2003 09:52:12 +0200 From: Alexander Leidinger To: "Steve O'Hara-Smith" Message-Id: <20030916095212.5dd7f4ae.Alexander@Leidinger.net> In-Reply-To: <20030916070808.29928e81.steve@sohara.org> References: <20030908203315.3d575666.steve@sohara.org> <200309150755.QAA15482@mail4.rim.or.jp> <20030916070808.29928e81.steve@sohara.org> X-Mailer: Sylpheed version 0.9.5claws (GTK+ 1.2.10; i386-portbld-freebsd5.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Seen: false X-ID: bjOY7-ZA8eOsZqQoF-oaiPAZKQOgjGy-1qOKLRAbhpMnoSaRmZ5n8E@t-dialin.net cc: freebsd-multimedia@freebsd.org Subject: Re: How to make high quality MPEG4 video X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Sep 2003 07:52:47 -0000 On Tue, 16 Sep 2003 07:08:08 +0200 "Steve O'Hara-Smith" wrote: > SS> kern.timecounter.hardware: ACPI-fast > SS> kern.timecounter.choice: TSC(800) ACPI-fast(1000) i8254(0) > > I think it will be the .choice that has replaced method, it looks > like 800 is the value you want - seems odd. Yes, now the system has some kind of quality attached to the timecounters and the one with the best quality gets used. Higher number = better quality. Bye, Alexander. -- Failure is not an option. It comes bundled with your Microsoft product. http://www.Leidinger.net Alexander @ Leidinger.net GPG fingerprint = C518 BC70 E67F 143F BE91 3365 79E2 9C60 B006 3FE7 From owner-freebsd-multimedia@FreeBSD.ORG Thu Sep 18 08:15:56 2003 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 395E816A4B3 for ; Thu, 18 Sep 2003 08:15:56 -0700 (PDT) Received: from mail.dtek.chalmers.se (osiris.medic.chalmers.se [129.16.30.197]) by mx1.FreeBSD.org (Postfix) with ESMTP id D8FB943FDF for ; Thu, 18 Sep 2003 08:15:52 -0700 (PDT) (envelope-from moro@dtek.chalmers.se) Received: from moro.dtek.chalmers.se (moro.dtek.chalmers.se [129.16.30.44]) by mail.dtek.chalmers.se (Postfix) with ESMTP id 75F2E3B296 for ; Thu, 18 Sep 2003 17:15:51 +0200 (MEST) Received: by moro.dtek.chalmers.se (Postfix, from userid 133119) id 1DDDF4F88F; Thu, 18 Sep 2003 17:15:50 +0200 (MEST) Received: from localhost (localhost [127.0.0.1]) by moro.dtek.chalmers.se (Postfix) with ESMTP id DF9EE56FEC for ; Thu, 18 Sep 2003 17:15:50 +0200 (MEST) Date: Thu, 18 Sep 2003 17:15:50 +0200 (MEST) From: Stefan Moro To: freebsd-multimedia@freebsd.org Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Subject: digital-out on sb live?? X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Sep 2003 15:15:56 -0000 Hi. I wonder if there is any driver supporting digital-out on the Soundblaster Live 1024 card?? //stefan From owner-freebsd-multimedia@FreeBSD.ORG Thu Sep 18 15:10:41 2003 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C539916A4B3 for ; Thu, 18 Sep 2003 15:10:41 -0700 (PDT) Received: from smtp1.libero.it (smtp1.libero.it [193.70.192.51]) by mx1.FreeBSD.org (Postfix) with ESMTP id B423E43FBD for ; Thu, 18 Sep 2003 15:10:40 -0700 (PDT) (envelope-from saturnero@gufi.org) Received: from nduja.saturnero.sat (151.42.169.236) by smtp1.libero.it (7.0.020-DD01) id 3F6033A40021AF0C for freebsd-multimedia@freebsd.org; Fri, 19 Sep 2003 00:11:10 +0200 Received: from pigra.saturnero.sat (pigra.saturnero.sat [192.168.99.10]) by nduja.saturnero.sat (Postfix) with SMTP id C351377B22 for ; Fri, 19 Sep 2003 00:10:11 +0200 (CEST) Date: Fri, 19 Sep 2003 00:10:35 +0200 From: Dario Freni To: freebsd-multimedia@freebsd.org Message-Id: <20030919001035.49502521.saturnero@gufi.org> X-Mailer: Sylpheed version 0.9.3claws (GTK+ 1.2.10; i386-portbld-freebsd5.1) Mime-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg="pgp-sha1"; boundary="6cV)Op=.sA+.Z9:2" Subject: Epson Stylus CX5200 printer/scanner X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Sep 2003 22:10:41 -0000 --6cV)Op=.sA+.Z9:2 Content-Type: multipart/mixed; boundary="Multipart_Fri__19_Sep_2003_00:10:35_+0200_083e3200" --Multipart_Fri__19_Sep_2003_00:10:35_+0200_083e3200 Content-Type: text/plain; charset=US-ASCII Content-Disposition: inline Content-Transfer-Encoding: 7bit Hi guys, I've recently bought a multifunctional Epson CX5200. It has an usb interface, the printer engine is identical to C82, the scanner engine is the typical Perfection 1200's one. I want to use both features :) With usb stuff compiled statically in kernel, the device is correctly recognized as: ulpt0: EPSON USB MFP, rev 1.10/1.00, addr 2, iclass 7/1 ulpt0: using bi-directional mode and works perfectly with its gimp-print driver. In order to make the scanner work, I made the simple patch in attachment, and removed the usb support from kernel. Using modules, and loading uscanner module, the device is correctly recognized and works perfectly under xsane. With both modules, it is recognized only as uscanner0. To have the ulpt0 device back, I've to unload uscanner, load ulpt, and reattach the device. Is there any workaround to use _BOTH_ drivers simultaneously, this procedure is quite annoying :( Thanks in advance for any kind of help. Bye, Dario P.S.: please cc: me :) -- Dario Freni (saturnero@gufi.org) - SaturNero on IRCNet, Azzurra Gruppo Utenti FreeBSD Italia (http://www.gufi.org) GPG Public key at http://www.saturnero.net/saturnero.asc --Multipart_Fri__19_Sep_2003_00:10:35_+0200_083e3200 Content-Type: application/octet-stream; name="cx5200.patch" Content-Disposition: attachment; filename="cx5200.patch" Content-Transfer-Encoding: base64 ZGlmZiAtdSAvc3lzL2Rldi91c2IvdXNiZGV2cyAvcm9vdC91c2IvdXNiZGV2cwotLS0gL3N5cy9k ZXYvdXNiL3VzYmRldnMJVGh1IFNlcCAxOCAxNzo0MTowNiAyMDAzCisrKyAvcm9vdC91c2IvdXNi ZGV2cwlGcmkgU2VwIDE5IDAwOjAwOjM0IDIwMDMKQEAgLTYyMSw2ICs2MjEsNyBAQAogcHJvZHVj dCBFUFNPTiBHVDkzMDBVRgkJMHgwMTFiCUdULTkzMDBVRiBzY2FubmVyCiBwcm9kdWN0IEVQU09O IDEyNjAJCTB4MDExZAlQZXJmZWN0aW9uIDEyNjAgc2Nhbm5lcgogcHJvZHVjdCBFUFNPTiAxNjYw CQkweDAxMWUJUGVyZmVjdGlvbiAxNjYwIHNjYW5uZXIKK3Byb2R1Y3QgRVBTT04gTUZQCQkweDA4 MDEJQ1g1MjAwIHNjYW5uZXIKIAogLyogZS1URUsgTGFicyBwcm9kdWN0cyAqLwogcHJvZHVjdCBF VEVLIDFDT00JCTB4ODAwNwlTZXJpYWwgcG9ydApkaWZmIC11IC9zeXMvZGV2L3VzYi91c2JkZXZz LmggL3Jvb3QvdXNiL3VzYmRldnMuaAotLS0gL3N5cy9kZXYvdXNiL3VzYmRldnMuaAlUaHUgU2Vw IDE4IDE3OjQxOjA2IDIwMDMKKysrIC9yb290L3VzYi91c2JkZXZzLmgJRnJpIFNlcCAxOSAwMDow MTo0MiAyMDAzCkBAIC02MjgsNiArNjI4LDcgQEAKICNkZWZpbmUJVVNCX1BST0RVQ1RfRVBTT05f R1Q5MzAwVUYJMHgwMTFiCQkvKiBHVC05MzAwVUYgc2Nhbm5lciAqLwogI2RlZmluZQlVU0JfUFJP RFVDVF9FUFNPTl8xMjYwCTB4MDExZAkJLyogUGVyZmVjdGlvbiAxMjYwIHNjYW5uZXIgKi8KICNk ZWZpbmUJVVNCX1BST0RVQ1RfRVBTT05fMTY2MAkweDAxMWUJCS8qIFBlcmZlY3Rpb24gMTY2MCBz Y2FubmVyICovCisjZGVmaW5lCVVTQl9QUk9EVUNUX0VQU09OX01GUAkweDA4MDEJCS8qIENYNTIw MCBzY2FubmVyICovCiAKIC8qIGUtVEVLIExhYnMgcHJvZHVjdHMgKi8KICNkZWZpbmUJVVNCX1BS T0RVQ1RfRVRFS18xQ09NCTB4ODAwNwkJLyogU2VyaWFsIHBvcnQgKi8KZGlmZiAtdSAvc3lzL2Rl di91c2IvdXNiZGV2c19kYXRhLmggL3Jvb3QvdXNiL3VzYmRldnNfZGF0YS5oCi0tLSAvc3lzL2Rl di91c2IvdXNiZGV2c19kYXRhLmgJVGh1IFNlcCAxOCAxNzo0MTowNyAyMDAzCisrKyAvcm9vdC91 c2IvdXNiZGV2c19kYXRhLmgJRnJpIFNlcCAxOSAwMDowMjo0MSAyMDAzCkBAIC05NzYsNiArOTc2 LDEyIEBACiAJICAgICJQZXJmZWN0aW9uIDE2NjAgc2Nhbm5lciIsCiAJfSwKIAl7CisJICAgIFVT Ql9WRU5ET1JfRVBTT04sIFVTQl9QUk9EVUNUX0VQU09OX01GUCwKKwkgICAgMCwKKwkgICAgIlNl aWtvIEVwc29uIiwKKwkgICAgIkNYNTIwMCBzY2FubmVyIiwKKwl9LAorCXsKIAkgICAgVVNCX1ZF TkRPUl9FVEVLLCBVU0JfUFJPRFVDVF9FVEVLXzFDT00sCiAJICAgIDAsCiAJICAgICJlLVRFSyBM YWJzIiwKZGlmZiAtdSAvc3lzL2Rldi91c2IvdXNjYW5uZXIuYyAvcm9vdC91c2IvdXNjYW5uZXIu YwotLS0gL3N5cy9kZXYvdXNiL3VzY2FubmVyLmMJVHVlIEF1ZyAyNiAwMDowMTowNiAyMDAzCisr KyAvcm9vdC91c2IvdXNjYW5uZXIuYwlGcmkgU2VwIDE5IDAwOjAzOjIxIDIwMDMKQEAgLTE5MSw2 ICsxOTEsNyBAQAogIHt7IFVTQl9WRU5ET1JfRVBTT04sIFVTQl9QUk9EVUNUX0VQU09OXzE2NTAg fSwgMCB9LAogIHt7IFVTQl9WRU5ET1JfRVBTT04sIFVTQl9QUk9EVUNUX0VQU09OXzE2NjAgfSwg MCB9LAogIHt7IFVTQl9WRU5ET1JfRVBTT04sIFVTQl9QUk9EVUNUX0VQU09OXzEyNjAgfSwgMCB9 LAorIHt7IFVTQl9WRU5ET1JfRVBTT04sIFVTQl9QUk9EVUNUX0VQU09OX01GUCB9LCAwIH0sCiAg e3sgVVNCX1ZFTkRPUl9FUFNPTiwgVVNCX1BST0RVQ1RfRVBTT05fR1Q5NzAwRiB9LCBVU0NfS0VF UF9PUEVOIH0sCiAge3sgVVNCX1ZFTkRPUl9FUFNPTiwgVVNCX1BST0RVQ1RfRVBTT05fR1Q5MzAw VUYgfSwgMCB9LAogCg== --Multipart_Fri__19_Sep_2003_00:10:35_+0200_083e3200-- --6cV)Op=.sA+.Z9:2 Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQE/ai1eZ1XqWj1OqUERAi+4AJ0Z3YScVbSZW3aSUOY2gLOc5SWgtgCfd9LM BWIlgiGZGW4WvxbKHpdLEy0= =KM6Q -----END PGP SIGNATURE----- --6cV)Op=.sA+.Z9:2-- From owner-freebsd-multimedia@FreeBSD.ORG Sat Sep 20 09:57:48 2003 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CEB9616A4B3 for ; Sat, 20 Sep 2003 09:57:48 -0700 (PDT) Received: from hotmail.com (law9-f37.law9.hotmail.com [64.4.9.37]) by mx1.FreeBSD.org (Postfix) with ESMTP id DAE5443FE3 for ; Sat, 20 Sep 2003 09:57:47 -0700 (PDT) (envelope-from freebsdfan@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Sat, 20 Sep 2003 09:57:47 -0700 Received: from 68.4.57.222 by lw9fd.law9.hotmail.msn.com with HTTP; Sat, 20 Sep 2003 16:57:47 GMT X-Originating-IP: [68.4.57.222] X-Originating-Email: [freebsdfan@hotmail.com] From: "Chuck T." To: freebsd-multimedia@freebsd.org Date: Sat, 20 Sep 2003 09:57:47 -0700 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 20 Sep 2003 16:57:47.0679 (UTC) FILETIME=[519212F0:01C37F98] Subject: disable "what you hear" inputs on sound blaster live! X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Sep 2003 16:57:48 -0000 I'm working on a full duplex VoIP application and I'm having problems with the output of my soundblaster live card wrapping around to the input. I'm assuming this is what is called the "what you hear" input under Windoze. Does anyone know now to mute it ? Here are the relevant lines from dmesg: FreeBSD 4.8-RELEASE #0: Fri Jul 4 13:56:17 PDT 2003 pcm0: port 0xd000-0xd01f irq 10 at device 11.0 on pci0 pcm0: and mixer: Mixer vol is currently set to 80:80 Mixer pcm is currently set to 0:0 Mixer speaker is currently set to 0:0 Mixer line is currently set to 0:0 Mixer mic is currently set to 80:80 Mixer cd is currently set to 0:0 Mixer rec is currently set to 100:100 Mixer line1 is currently set to 0:0 Mixer phin is currently set to 0:0 Mixer phout is currently set to 0:0 Mixer video is currently set to 0:0 Mixer monitor is currently set to 0:0 The record source is mic only. _________________________________________________________________ Share your photos without swamping your Inbox. Get Hotmail Extra Storage today! http://join.msn.com/?PAGE=features/es From owner-freebsd-multimedia@FreeBSD.ORG Sat Sep 20 10:01:28 2003 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C691A16A4C0 for ; Sat, 20 Sep 2003 10:01:28 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id 999A543FBD for ; Sat, 20 Sep 2003 10:01:26 -0700 (PDT) (envelope-from rizzo@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id h8KH1Qsd056503; Sat, 20 Sep 2003 10:01:26 -0700 (PDT) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id h8KH1QZi056502; Sat, 20 Sep 2003 10:01:26 -0700 (PDT) (envelope-from rizzo) Date: Sat, 20 Sep 2003 10:01:26 -0700 From: Luigi Rizzo To: "Chuck T." Message-ID: <20030920100126.A55993@xorpc.icir.org> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: ; from freebsdfan@hotmail.com on Sat, Sep 20, 2003 at 09:57:47AM -0700 cc: freebsd-multimedia@freebsd.org Subject: Re: disable "what you hear" inputs on sound blaster live! X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Sep 2003 17:01:28 -0000 i believe you have to zero the 'mic' entry -- the input mixer in FreeBSD is normally just a multiplexer, all the volume settings refer to the output mixer cheers luigi On Sat, Sep 20, 2003 at 09:57:47AM -0700, Chuck T. wrote: > I'm working on a full duplex VoIP application and I'm having problems with > the output of my soundblaster live card wrapping around to the input. > I'm assuming this is what is called the "what you hear" input under Windoze. > Does anyone know now to mute it ? > > Here are the relevant lines from dmesg: > > FreeBSD 4.8-RELEASE #0: Fri Jul 4 13:56:17 PDT 2003 > pcm0: port 0xd000-0xd01f irq 10 at device 11.0 on pci0 > pcm0: > > and mixer: > > Mixer vol is currently set to 80:80 > Mixer pcm is currently set to 0:0 > Mixer speaker is currently set to 0:0 > Mixer line is currently set to 0:0 > Mixer mic is currently set to 80:80 > Mixer cd is currently set to 0:0 > Mixer rec is currently set to 100:100 > Mixer line1 is currently set to 0:0 > Mixer phin is currently set to 0:0 > Mixer phout is currently set to 0:0 > Mixer video is currently set to 0:0 > Mixer monitor is currently set to 0:0 > > The record source is mic only. > > _________________________________________________________________ > Share your photos without swamping your Inbox. Get Hotmail Extra Storage > today! http://join.msn.com/?PAGE=features/es > > _______________________________________________ > freebsd-multimedia@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-multimedia > To unsubscribe, send any mail to "freebsd-multimedia-unsubscribe@freebsd.org"