Date: Wed, 14 Mar 2007 23:15:07 +0100 From: Torfinn Ingolfsen <torfinn.ingolfsen@broadpark.no> To: freebsd-multimedia@freebsd.org Cc: grog@FreeBSD.org Subject: Re: MythTV on amd64 - further testing Message-ID: <20070314231507.e4de51e8.torfinn.ingolfsen@broadpark.no> In-Reply-To: <20070314194745.0b6c92f6.torfinn.ingolfsen@broadpark.no> References: <20070313220356.1bd680a3.torfinn.ingolfsen@broadpark.no> <20070314001711.bfbe886a.torfinn.ingolfsen@broadpark.no> <20070314194745.0b6c92f6.torfinn.ingolfsen@broadpark.no>
next in thread | previous in thread | raw e-mail | index | archive | help
[-- Attachment #1 --]
Ok, here is the latest status:
MythTV works on my machine! Yay!
I had to fiddle around a bit, but got it working eventually. I hvae
tested LiveTV, tomorrow we will find out if recording works as well (I
expect it will).
I _think_ there might be an issue with the initialisation of the
PVR-500 card. At first, neither mythtv nor mplayer would get a picture
from my pvr-500 card.
I did this:
First, I tested with MythTV -> LiveTV -> no picture.
pvr250-setchannel 196.25
pvr250-setchannel -t
pvr250-setchannel -m 4
pvr250-setchannel -g 720x576
and tested with 'gmplayer -cache 8192 /dev/cxm0' after each, and only
after the last one did mplayer give me a picture.
After that, MythTV had no problems getting LiveTV to work.
Another thing, I have changed /usr/local/etc/rc.d/mythbackend to be a
bit more like the other startup files, now it uses a pidfile, and gives
you a backend logfile. See attached file.
--
Regards,
Torfinn Ingolfsen
[-- Attachment #2 --]
#!/bin/sh
# PROVIDE: mythbackend
# REQUIRE: DAEMON
# BEFORE: LOGIN
# KEYWORD: FreeBSD shutdown
# Define mythbackend_enable in one of these places:
# /etc/rc.conf
# /etc/rc.conf.local
#
# DO NOT CHANGE THESE DEFAULT VALUES HERE
#
mythbackend_enable=${mythbackend_enable-"NO"}
mythbackend_logfile=${mythbackend_logfile-"/var/log/mythbackend.log"}
mythbackend_pidfile=${mythbackend_pidfile-"/var/run/mythbackend.pid"}
PATH=${PATH}:/usr/local/bin
. /etc/rc.subr
name="mythbackend"
rcvar=`set_rcvar`
command="/usr/local/bin/mythbackend"
flags=" --daemon --logfile ${mythbackend_logfile} --pidfile ${mythbackend_pidfile}"
load_rc_config $name
start_cmd="echo \"Starting ${name}.\"; ${command} ${flags}"
run_rc_command "$1"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20070314231507.e4de51e8.torfinn.ingolfsen>
