From owner-freebsd-multimedia@FreeBSD.ORG Wed Dec 27 16:52:44 2006 Return-Path: X-Original-To: freebsd-multimedia@freebsd.org Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AF03116A407 for ; Wed, 27 Dec 2006 16:52:44 +0000 (UTC) (envelope-from usleepless@gmail.com) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.233]) by mx1.freebsd.org (Postfix) with ESMTP id 65A6813C46D for ; Wed, 27 Dec 2006 16:52:44 +0000 (UTC) (envelope-from usleepless@gmail.com) Received: by wr-out-0506.google.com with SMTP id 55so1582872wri for ; Wed, 27 Dec 2006 08:52:43 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=fUWg38Kx8CsJOdoG08GqrjeGYH5iBRVjF6K/vdVSccd9v1N4PWUJ/DFEbmTutpBpeIOcMP5ZSmIZiX2INdks2vclfqJqgLxll3greE+5Tbosa+SLx7PmeCvlIq5w0rU7S6Xcy71WEPaF7cdwuSi+h6GT+RJ3+aMN3s5BPo6XxzQ= Received: by 10.78.201.10 with SMTP id y10mr1436286huf.1167238363060; Wed, 27 Dec 2006 08:52:43 -0800 (PST) Received: by 10.78.124.8 with HTTP; Wed, 27 Dec 2006 08:52:43 -0800 (PST) Message-ID: Date: Wed, 27 Dec 2006 17:52:43 +0100 From: usleepless@gmail.com To: "Josh Paetzel" In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200612271026.08416.josh@tcbug.org> Cc: freebsd-multimedia@freebsd.org Subject: Re: MythTV port X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Dec 2006 16:52:44 -0000 Josh, On 12/27/06, usleepless@gmail.com wrote: > Josh, > > On 12/27/06, Josh Paetzel wrote: > > On Wednesday 27 December 2006 08:04, Scott Spare wrote: > > > usleepless, torfinn, et al: > > > I have hardware and can test a MythTV port as needed. > > > > > > One machine is a 600mhz PIII with 384MB ram and ATI TV Wonder. > > > The other is a 2GHz PIV with 512 and Hauppauge PVR-150 > > > > > > Let me know what I can do to help. > > > > I've been playing with multimedia/mythtv and my new PVR-150. The port > > wouldn't install without some hackage. > > (The /usr/local/etc/rc.d/mythwhatever.sh didn't exist) > > > > My main problem right now is getting myth to talk to the tuner on the > > card. If it wasn't for that I believe it would be completely > > functional. > > you installed the pvrxxx port right? pvrxxx has a v4l2 interface which > works for me with mythtv-0.18. > > i do remember commenting some stuff out in mpegrecorder.cpp though, > will look it up. so, looked it up. in mpegrecorder.cpp: 1. find "// only 48kHz". i commented the code about the audio_rate out. audio_rate should be 1. 2. a page down, a ioctl-call is made: if (ioctl(chanfd, VIDIOC_S_CTRL, &ctrl) < 0) { cerr << "Error setting codec params\n"; perror("VIDIOC_S_CTRL:"); return false; } i commented it out, since the pvrxxx port does not support this v4l2-ioctl yet. regards, usleep