Re: [mythtv-users] Lost MythVideo somehow

2006-01-29 Thread Jeff Clemens
Thanks, 
 
It says it's trying to load a shared object called liblibmythmythvideo.so, which of course isn't there, but there is also no libmythvideo.so.  My guess is that the error message is wrong, and its acutally looking for 
libmythvideo.so.  Not sure what happened to that, but I'm trying to install mythvideo now.   
Looks like that did the trick, wonder why the error message said it was looking for liblibmythmythvideo.so.  
 
Thanks,
 
Jeff 
On 1/27/06, Chad <[EMAIL PROTECTED]> wrote:
On 1/27/06, Jeff Clemens <[EMAIL PROTECTED]> wrote:> Not sure when or why this happened, but I just noticed it upon returning
> from vacation.>> I no longer have access to Mythvideo at all.  When I select any of the> mythvideo options, either from the media menu, or the setup menu, the system> pauses for a second, then returns me to the main menu.  I've done a couple
> of upgrades lately, but the first upgrade was before I noticed the problem> (and I think I watched some videos after that upgrade), the second upgrade> that included mythTV pieces was after I noticed the change, and didn't seem
> to fix the change.  I'm sure it's probably a permissions issue, but I> haven't had a chance to dig in yet.  Seems to be affecting both my master> FC3 box, and my slave FC4 box.>> Any ideas?
>> Jeff> ___Launch 'mythfrontend mythvideo' from the command line, see if there isany output as to what's going on.___
mythtv-users mailing listmythtv-users@mythtv.orghttp://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users

___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


[mythtv-users] Lost MythVideo somehow

2006-01-27 Thread Jeff Clemens
Not sure when or why this happened, but I just noticed it upon returning from vacation.
 
I no longer have access to Mythvideo at all.  When I select any of the mythvideo options, either from the media menu, or the setup menu, the system pauses for a second, then returns me to the main menu.  I've done a couple of upgrades lately, but the first upgrade was before I noticed the problem (and I think I watched some videos after that upgrade), the second upgrade that included mythTV pieces was after I noticed the change, and didn't seem to fix the change.  I'm sure it's probably a permissions issue, but I haven't had a chance to dig in yet.  Seems to be affecting both my master FC3 box, and my slave FC4 box.

 
Any ideas?
 
Jeff
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Seattle MUG -- Sunday Jan 29th

2006-01-27 Thread Jeff Clemens
I'm available, and in the U-District, but can travel anywhere... its my day off, so it worked out perfect.
On 1/24/06, Chris Petersen <[EMAIL PROTECTED]> wrote:
A couple of people on the IRC channel have expressed an interest ingetting together (one of them is an out-of-towner who will be in Seattle
this weekend), so I'm calling for a Seattle MUG.  Location and time tobe determined based on who is interested (so let me know if you're under21 or it may end up being a bar/pub) and what time the most people are
available on on Sunday.-Chris___mythtv-users mailing listmythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


[mythtv-users] LiveTV on remote frontend not working

2006-01-10 Thread Jeff Clemens
I've been having a few problems lately that I can't seem to figure out.  I recently added a second box running a remote frontend and second backend, and everything seems to work ok except livetv.  
 
LiveTV works great on the frontend running on the same box as the master backend, but the remote frontend it does not.  I get black screen for a while, and eventually it returns to the menu.  I'm not at home at the moment, so I can't post logs, but I seem to recall that sometimes I get a "remote tuner not responding" message when it returns to the menu.

 
Has anyone else seen this?  Any Ideas?
 
I'll post more relevant info when I get home tonight.
 
Jeff
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Who do you have to kill to ACTUALLY get MythGames/xmame working?

2006-01-02 Thread Jeff Clemens
I just recently sat down and finally got Mythgame working in FC4.  There were a few steps I had to go through to get it to work.
 
The first was to use a wrapper script I wrote to make Myth return an older version number.  
 
Here's the script:
 
#!/bin/bash
# Shell Script to return old version number for Xmame if the version 
# argument is given, otherwise run Xmame with all arguments
# this is a test version, may need to reconstruct the string without the 
# -version argument, so that we can call Xmame even if the -version 
# argument is given. This depends on the functionality of MythTV
# which is why we're writing this script in the first place
 
flag=0
for X in $*
do
if [ "$X" = '-version' ]; then
flag=1
fi
if [ "$X" = '--version' ]; then
flag=1
fi
if [ "$X" = '-history_file' ]; then
G=1
echo 1
else
if [ "$G" != 1 ]; then
export F="$F $X"
else
G=0
echo 0
fi
fi

done
if [ $flag = 1 ]; then
echo 'xmame (x11) version 0.96 (May 11 2005)'
else
# echo OUTPUT:
# echo $F
xmame $F
fi
This is probably not the most elegant script, but I wrote it at 3AM one morning.  It also gets rid of the --history_file option, since that doesn't seem to be supported in the new versions of xmame.  I put this script in /usr/bin and changed the setup in mythgame to call /usr/bin/blah (the name of the script) instead of /usr/bin/xmame.

 
I also noticed that some of the settings from the hidden mythgame setup screen (from within mythgame, not mythgame setup, select system xmame, then press m) correspond to settings that xmame doesn't recognize, but there is a section for manually adding options to the command line on the last page.  I had to set the joystick type to NONE, then manually set the joystick type to 2, since none of the possible settings in mythTV correspond to the correct joystick type that I need. (wireless Logitech Wingman)  

 
To figure out what I needed to change, I watched the STDOUT from mythfrontend as I tried to select a mythgame game.  It shows what the command line it's trying to run is, but doesn't show any Xmame error messages.  I then switched to an xterm window, and pasted that command line into it.  This allowed me to see the error messages and make the appropriate changes.  I then made the changes directly to the command line until I could get xmame to come up cleanly.  

 
Once I knew what the command line should be, I could make the appropriate changes in the regular and hidden mythgame setup screens to get myth to issue the proper command line.  
 
The hidden setup screen was key in this, and it took me a while to find out how to access it.  Again, to get to it, you have to have System as one of the search categories in the regular mythtv setup, then you just need to go to Media/PlayGames and select the category for Xmame games then press M on the keyboard.
 
On 12/31/05, Greg Estabrooks <[EMAIL PROTECTED]> wrote:
> I don't like  the idea of having to use MythGame from CVS if possible.You couldn't just mix  SVN MythGame with 
0.18 of MythTV anyway.___mythtv-users mailing listmythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Re: Strange MythBackend troubles

2005-12-09 Thread Jeff Clemens
I think I figured out the remote system problem.  I wasn't aware that you don't need to run a database on the remote system.  Once I turned that off, and re set everything up between the master and slave boxes, the delete problem, and the inability to jump forward and back cleared up.

 
Now, I have a different problem, though.  The tuner on the slave backend shows as 'not available' in system status.  
 
Any ideas there?  both master and slave backends are running.  nothing is recording, it's just 'not available' 
On 12/8/05, Kirk Davis <[EMAIL PROTECTED]> wrote:
> -Original Message-> On Tue, 2005-12-06 at 16:49 -0500, Mike Frisch wrote:> > On Mon, Dec 05, 2005 at 11:26:44PM -0800, Jeff Clemens wrote:
> > >So occasionally, my master backend gets into a strange> state.   I have a> > >frontend and a backend running on each of 2 boxes.> The master backend> > >occasionally gets into a state where the frontend will
> report that the> > >backend is down when trying some things (like deleting> a recording for> > >instance), but other menu items that use the backend> work fine.  When it's
> > >in this state, neither frontend works correctly.> > >/sbin/service mythbackend restart fixes the problem> temporarily.> >> > I cannot offer much other than to say the same thing
> happens regularly> > to me.  I cannot predict when it will happen but it happens somewhat> > frequently.  It is as if the frontend loses track of the backend.>> I think this is what has happened to me on a few occasions,
> the backend> has stopped recording, the status page works still works but the> frontend won't play but lists all the shows etc.>> Again a rcmythbackend restart fixed but I didn't discover
> exactly why it> happened.   My system is also having the same problem.  It seems to loose theconnection with the backend when I try to delete a recording. Thefrontend will eventualy time out but I have to restart the backend.
   Here is some more information about my system that might help someone track this problem down.   Running on FC4 (2.6.14-1.1644_FC4smp) on a P4 3Gig with 1 Gig ofRAM.   Myth 18.1  from atrpms about 2 weeks ago.
   Two capture devices.  A PVR-150 and a firewire connection to aDCT-6200 cable box.   The system is setup right off of Jarod's How-to fromhttp://www.wilsonet.com/mythtv/fcmyth.php
   I'm using JFS for the filesystem that stores the recordings.   Here are the ivtv packages that I am using:   ivtv.i3861:0.4.0-98.rhfc4.at
installed   ivtv-firmware-audio.i386 0.0.1-1.atinstalled   ivtv-firmware-dec.i386   2.02.023-4.at
installed   ivtv-firmware-enc.i386   2.04.024-4.atinstalled   ivtv-kmdl-2.6.14-1.1644_FC4smp.i686  1:0.4.0-98.rhfc4.at
installed   I hope this information helps. I just built up this new system.  Theold system was working without a hitch for almost 2 years. Kirk___
mythtv-users mailing listmythtv-users@mythtv.orghttp://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users

___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Building a Basic MythTV box

2005-12-09 Thread Jeff Clemens
I'd highly recommend getting a tuner with hardware compression (such as a PVRx50).  I originally tried using an old BT type card on my P3-700 box (using it as both a frontend and backend) to no avail.  I switched to a PVR350 and now I have clock cycles to spare, even when recording and viewing simultaneously.

 
Network speed is important if you have a remote frontend at all (as it sounds like you want to do).  It's probably the most important thing to get watchable video after the tuner card.   
On 12/9/05, Mudit Wahal <[EMAIL PROTECTED]> wrote:
Amazon has also good prices for ethernet switches from netgear. Searchfor "ethernet switch".
http://www.amazon.com/gp/product/B6B9H8/sr=1-1/qid=1134145698/ref=pd_bbs_1/002-1643016-1566425?%5Fencoding=UTF8
On 12/9/05, Mudit Wahal <[EMAIL PROTECTED]> wrote:> 5 Port 10/100 switches are under $10 after rebate. No reason not get one.> SMC 5 port switch under $10 after rebate.
> http://microcenter.com/single_product_results.phtml?product_id=0210478>> My local electronics store (fry's) sells 5 port for 
4.99 (airlink).> I've 4 of these in house (one in each room and one in garage).>> On 12/9/05, Steve Adeff <[EMAIL PROTECTED]> wrote:> > On Friday 09 December 2005 02:43, Kichigai Mentat wrote:
> > > On Dec 8, 2005, at 23.38, Michael Weinbergs - Network Administrator> > > wrote:> >> > > > Don't even bother with 802.11b - it really doesn't work (I've tried> > > > it).. Upgrade to 
802.11G and you will be fine.. The problem is that> > > > 11Mb is not reall 11Mb - it is MUCH less... Not enough bandwidth.> >> > wireless protocol is shared as well. so 11Mb is bits AND shared amongst all
> > the connections (unless you have one of those fancy WAPs that can do multiple> > connections. same with G's 54Mb, its shared.> >> >> > > Well, here's the thing: I'm working on a tight budget, and I'm not
> > > sure I can afford to upgrade to 802.11g right now. However, using my> > > iBook G4 as a reference, I can say I've never seen a noticeable> > > change between wired and wireless speeds. Trying to transfer the same
> > > file from one machine to another, sending from the iBook, I got> > > pretty much the same transfer times, whether the machine was wireless> > > or on the wired network. Remember: my hub is only capable of 10 Mbits.
> >> > transfer speeds are more dependant on harddrive speeds. 802.11b is faster than> > your average harddrive (raid withstanding).> >> >> > > Also, I've managed to stream files at about 800 Kbits/sec from my
> > > iBook to my Xbox over the wireless network without any significant> > > problems. Of course, something tells me I won't be looking at any 800> > > Kb/s streams.> > >
> > > I was looking into PowerLine as an alternative to wireless> > > networking, but at $80 per PowerLine dongle, this is way out of my> > > budget (I'll spend more on networking than I will on PC hardware!).
> > > Wired doesn't seem to be a practical option (I live in a house made> > > in 1901, and the network hub and the TV room are on different floors,> > > and different ends of the house, in both dimensions, not to mention
> > > that the back end will, preferably, be at the other end of the house,> > > but on the same floor as the hub). The rest of the family just might> > > revolt against me if I run cables that far!
> > >> > > If you can come up with any other ideas, I'll keep an open mind.> >> > get a good 802.11G WAP or buy a 100bT switch. I got my 8port netgear unmanaged> > switch for $20 after rebate. works great.
> > 802.11G should also be fast enough to stream the video files.> >> > --> > Steve> > ___> > mythtv-users mailing list
> > mythtv-users@mythtv.org> > http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users
> >>___mythtv-users mailing listmythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


[mythtv-users] Strange MythBackend troubles

2005-12-05 Thread Jeff Clemens
So occasionally, my master backend gets into a strange state.   I have a frontend and a backend running on each of 2 boxes.  The master backend occasionally gets into a state where the frontend will report that the backend is down when trying some things (like deleting a recording for instance), but other menu items that use the backend work fine.  When it's in this state, neither frontend works correctly.  

/sbin/service mythbackend restart fixes the problem temporarily.
 
The other strange issue is that the tuner on the slave backend does not seem to be recognized ever.  I haven't looked into this too extensively, since I rarely need to record more than one show at a time, but may spend some time on it this week.  It also appears that when I watch live TV on the slave box, it's using the tuner from the master box, not the local tuner.  

 
Any ideas?
 
Thanks,
Jeff
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] XVMC Support for Intel 810

2005-12-05 Thread Jeff Clemens
It does appear that the ATRPMS myth package has XvMC support (per a posting on the ATRPMS list that I found.  In any case, it doesn't seem to work with the Intel 810 as far as I can tell.  I just need a little acceleration, as most of the time, playback works perfectly, it's only after I've hit rewind or fast forward that the video starts to lag... It never catches back up, unless I slow playback down to 50% speed for 30 seconds... I can then switch it back to 100% (or faster) and have it run perfectly indefinitely (unless I rewind or fast forward again).  So just a little bit of acceleration would have things working perfectly.

 
I'm considering turning off the onboard vga and picking up an nVidia card unless I can get acceleration working on the 810.  It would be nice to not have to use my one remaining PCI slot for vga, but if it works, that could be the solution.
 
On 12/5/05, Todd Ignasiak <[EMAIL PROTECTED]> wrote:
If I remember correctly,   the Intel 810/815 chips don't support the full MPEG2 acceleration capabilities.
XvMC supports offload of MPEG2 Motion Compensation (which is the "MC" in XvMC) and iDCT (inverse Discrete Cosine Transform).   iDCT is the more CPU intensive component of the two.   But, I think the i810 only offloads the MC.   So, you probably won't get much boost out of XvMC on that platform.
A Google search turn up this page, which talks about the capapilities of various cards with DxVA, the Windows equivalent to XvMC: 
http://www.elecard.com/technology/dxva.shtml    (Note that it doesn't include the newer NVidia GeForce 4MX or GeForce FX cards, which support full iDCT offload in Linux.)

On 12/4/05, Jeff Clemens <
[EMAIL PROTECTED]> wrote:


So from what i've read, XVMC was originally developed for the Intel 810 chipset, but I can't seem to find any information on how to get it working with anything but nVidia video cards.  
 
I'm running FC4 on a fairly underpowered (700Mhz) box.  I actually have 2 of the same boxes, but one uses a PVR350 and therefore uses the accelerated output, but my other box uses VGA for display, and I get really choppy video without XVMC.  If I enable XVMC in the setup screen, I get "Can't initialize Video" messages when trying to playback a recording. 

 
Any tips/tricks that anyone on here knows about?
 
Thanks,
 
Jeff___mythtv-users mailing list
mythtv-users@mythtv.orghttp://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users
___mythtv-users mailing list
mythtv-users@mythtv.orghttp://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users

___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] XVMC Support for Intel 810

2005-12-05 Thread Jeff Clemens
Hmm... well, I didn't recompile Myth, but I did point XvMCConfig to the
library for the 810.  XvMC seems to be loading now (per the xorg
log file), but Myth still won't play video with XvMC enabled. 
Does the enable option show up if XvMC is not compiled in?  I'm
using a binary MythTV package, (from ATRPMS) and would prefer not to
have to install all of the development tools just to compile
myth.  I guess I assumed the option wouldn't be in the menu if it
weren't compiled in, but I may be wrong.

JeffOn 12/5/05, Tom Dombrosky <[EMAIL PROTECTED]> wrote:
Install libXvMCW, compile Myth with support for it, point your XvMCConfig file
at the XvMC lib for the 810 and you should be able to enable XvMC support
within Myth and it should work.  libXvMCW is a wrapper that supports nVidia,Intel and Unichrome (possibly others?).-- Harry O.___mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users
I'd be interested to see if this works or not.  Would open up the possibility of decoding hdtv on a laptop.Tom

___mythtv-users mailing listmythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


[mythtv-users] XVMC Support for Intel 810

2005-12-04 Thread Jeff Clemens
So from what i've read, XVMC was originally developed for the Intel 810 chipset, but I can't seem to find any information on how to get it working with anything but nVidia video cards.  
 
I'm running FC4 on a fairly underpowered (700Mhz) box.  I actually have 2 of the same boxes, but one uses a PVR350 and therefore uses the accelerated output, but my other box uses VGA for display, and I get really choppy video without XVMC.  If I enable XVMC in the setup screen, I get "Can't initialize Video" messages when trying to playback a recording.

 
Any tips/tricks that anyone on here knows about?
 
Thanks,
 
Jeff
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


[mythtv-users] Can't delete recordings since I set up slave back/front end

2005-12-01 Thread Jeff Clemens
At first I thought the issue was related to just the slave frontend.  But I just tried it on my master too, and am getting the same result.
 
I just recently added a second box to my Myth network.  It's set up as a slave backend and frontend, with my previous box being the master backend.  I never had trouble deleting files until I added the slave.
 
Now, I'm trying to delete a recording i've seen already.  When doing this, the frontend stops doing anything for about 5-10 minutes, after which I get "The connection to the master backend server has gone away for some reason.. Is it running?" with an OK box.  This happens whether I do it on the master or slave backend 

 
When I do a 'ps aux' I see that the backend is indeed running.  Also, if I click OK, all my recordings are there an accessible, so it looks like the backend is actually running.
 
My master backend is an FC3 box running the latest stable release(0.18.1)
 
My slave box is an FC4 box running the same release.  
 
Also, many other menu items, such as system information, seem to take an inordinately long time to happen as well.
 
In the mythbackend log, I get many 'waiting for a thread' messages.
 
Any idea what is up?
 
 
Thanks,
 
Jeff
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


[mythtv-users] Video Card Suggestions Please

2005-10-27 Thread clemens
Im building a new machine (My P2 firewall has been having problems
and Im moving everything up one step/machine).

In any case the new machine will be a P4/3.2GHz on an Intel 945
series motherboard.

(1) Im going to assume the video on the motherboard is not going
to be acceptable for MythTV.

(2) My previous experience is with AGP based boards (I have a
GeforceFX 5200 on my other MythTV machine) but the 945 has PCIE.

What card(s) should I be looking at with this interface?

Thanks in advance


-- 
Reg.Clemens
[EMAIL PROTECTED]


___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] lircd starts fine, but crashes as soon as something tries to use it

2005-09-30 Thread Jeff Clemens
Adding the SymLink worked, but I haven't tried rebooting since I've done that.
 
That seems to be a new update to the guide.  I'll try it when I get home and see if that helps when rebooting.
 
Thanks all...
 
Jeff 
On 9/29/05, Ib Uhrskov <[EMAIL PROTECTED]> wrote:
Jeff Clemens wrote:> So, with a recent software upgrade (apt-get dist-upgrade), a few> problems seem to have been introduced into my system.  I'm not
> entirely sure what the cause is, and was wondering if someone else is> having similar trouble.>> First, the specs on my system:>> Its a Pentium3 Fedora Core 3 (Kernel 2.6.12-1.1372_FC3
) system with a> PVR350 - I use the tv-out on the tv tuner card.>> When the system boots up, if you do a /sbin/service --status-all, it> shows lircd running fine.  As soon as you start a program that gets
> input from lirc (MythTV, irw, etc.) the remote does not seem to work> (irw just returns to the command line with no output).>> At this point, if you do a service --status-all you get the following:
>> lircd dead but subsys locked>> I can restart lircd (/sbin/service lircd restart) and it restarts> successfully.  status-all shows that it's running, but again, nothing> happens when you run irw.
>> I've set my system up per jarod's  Fedora 3 guide, and everything> worked fine until the upgrade to the current kernel.>> I also noticed that for some reason, there is no /dev/lirc  There is a
> /dev/lirc0 and a /dev/lircd.  In /var/log/messages I see:>> Sep 28 14:41:41 localhost lircd: lircd shutdown failed> Sep 28 14:41:41 localhost lircd-0.7.2[2034]: lircd(any) ready> Sep 28 14:41:41 localhost lircd: lircd startup succeeded
> Sep 28 14:42:00 localhost lircd-0.7.2 [2034]: accepted new client on> /dev/lircd> Sep 28 14:42:00 localhost lircd-0.7.2[2034]: could not get file> information for /dev/lirc> Sep 28 14:42:00 localhost 
lircd-0.7.2[2034]: default_init(): No such> file or directory> Sep 28 14:42:00 localhost lircd-0.7.2[2034]: caught signal> Sep 28 14:42:01 localhost crond(pam_unix)[2038]: session opened for> user root by (uid=0)
> Sep 28 14:42:02 localhost crond(pam_unix)[2038]: session closed for> user root>>> Any ideas?>Hi JeffCheckout Jarod guide. I noticed after I did the upgrade, the patching of
udev from Jarod http://wilsonet.com/mythtv/fcmyth.php#lirc (scroll downto Update) was gone. I applied the patch, rebootet and lirc worked again./ib

___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


[mythtv-users] lircd starts fine, but crashes as soon as something tries to use it

2005-09-28 Thread Jeff Clemens
So, with a recent software upgrade (apt-get dist-upgrade), a few problems seem to have been introduced into my system.  I'm not entirely sure what the cause is, and was wondering if someone else is having similar trouble.

 
First, the specs on my system:
 
Its a Pentium3 Fedora Core 3 (Kernel 2.6.12-1.1372_FC3) system with a PVR350 - I use the tv-out on the tv tuner card.
 
When the system boots up, if you do a /sbin/service --status-all, it shows lircd running fine.  As soon as you start a program that gets input from lirc (MythTV, irw, etc.) the remote does not seem to work (irw just returns to the command line with no output). 

 
At this point, if you do a service --status-all you get the following:
 
lircd dead but subsys locked
 
I can restart lircd (/sbin/service lircd restart) and it restarts successfully.  status-all shows that it's running, but again, nothing happens when you run irw.
 
I've set my system up per jarod's  Fedora 3 guide, and everything worked fine until the upgrade to the current kernel.
 
I also noticed that for some reason, there is no /dev/lirc  There is a /dev/lirc0 and a /dev/lircd.  In /var/log/messages I see:
 
Sep 28 14:41:41 localhost lircd: lircd shutdown failedSep 28 14:41:41 localhost lircd-0.7.2[2034]: lircd(any) readySep 28 14:41:41 localhost lircd: lircd startup succeededSep 28 14:42:00 localhost lircd-0.7.2
[2034]: accepted new client on /dev/lircdSep 28 14:42:00 localhost lircd-0.7.2[2034]: could not get file information for /dev/lircSep 28 14:42:00 localhost lircd-0.7.2[2034]: default_init(): No such file or directory 
Sep 28 14:42:00 localhost lircd-0.7.2[2034]: caught signalSep 28 14:42:01 localhost crond(pam_unix)[2038]: session opened for user root by (uid=0)Sep 28 14:42:02 localhost crond(pam_unix)[2038]: session closed for user root
 
 
Any ideas?
 
Jeff
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] emu10k1 unable to capture?

2005-09-18 Thread Jeff Clemens
From the research I've been able to do, it looks like the latest Alsa build is broken for some emu10k cards, including my audigy.  I've heard that installing alsa 1.0.9a, instead of whatever version ATRPMS has up now, fixes it, but I can't seem to meet all of the dependencies to be able to install that version.

 
with my card, the line in stopped working, and I lost the ability to control any of the mutes for any of my channels.
I guess I'm stuck not watching tv until the next alsa build comes out.  I tried compiling a version that is supposed to work (it's patched), but couldn't meet the compile dependencies.  (I'm not that experienced with compiling packages myself yet).

 
 
On 9/16/05, Chad <[EMAIL PROTECTED]> wrote:
Hello!I am having quite the time here trying to configure an SB Live tocapture within Myth.
I know this is not indicative of anything, but with tvtime, TV soundsjust fine.I have every volume up in the playback screen in alsamixer, and haveswitched around every capture device, yet nothing gets played back
from within myth.The audio is patched to the "Line-In" on the soundcard by an1/8"|3.5mm stereo audio cable.  I've also tried "Mic" with no luck.The capture card does not have it's own audio capturing mechanism.
Any ideas are very welcome.For the sake of information, here's my lspci and lsmod::00:00.0 Host bridge: VIA Technologies, Inc. VT8385 [K8T800 AGP]Host Bridge (rev 01):00:01.0 PCI bridge: VIA Technologies, Inc. VT8237 PCI bridge
[K8T800/K8T890 South]:00:07.0 FireWire (IEEE 1394): VIA Technologies, Inc. IEEE 1394Host Controller (rev 80):00:09.0 Multimedia audio controller: Creative Labs SB Live!EMU10k1 (rev 07):00:
09.1 Input device controller: Creative Labs SB Live! MIDI/GamePort (rev 07):00:0a.0 Ethernet controller: Marvell Technology Group Ltd.88E8001 Gigabit Ethernet Controller (rev 13):00:0c.0 Multimedia controller: Philips Semiconductors SAA7130
Video Broadcast Decoder (rev 01):00:0f.0 RAID bus controller: VIA Technologies, Inc. VIA VT6420SATA RAID Controller (rev 80):00:0f.1 IDE interface: VIA Technologies, Inc.VT82C586A/B/VT82C686/A/B/VT823x/A/C PIPC Bus Master IDE (rev 06)
:00:10.0 USB Controller: VIA Technologies, Inc. VT82x UHCI USB1.1 Controller (rev 81):00:10.1 USB Controller: VIA Technologies, Inc. VT82x UHCI USB1.1 Controller (rev 81):00:10.2 USB Controller: VIA Technologies, Inc. VT82x UHCI USB
1.1 Controller (rev 81):00:10.3 USB Controller: VIA Technologies, Inc. VT82x UHCI USB1.1 Controller (rev 81):00:10.4 USB Controller: VIA Technologies, Inc. USB 2.0 (rev 86):00:11.0 ISA bridge: VIA Technologies, Inc. VT8237 ISA bridge
[KT600/K8T800/K8T890 South]:00:18.0 Host bridge: Advanced Micro Devices [AMD] K8[Athlon64/Opteron] HyperTransport Technology Configuration:00:18.1 Host bridge: Advanced Micro Devices [AMD] K8[Athlon64/Opteron] Address Map
:00:18.2 Host bridge: Advanced Micro Devices [AMD] K8[Athlon64/Opteron] DRAM Controller:00:18.3 Host bridge: Advanced Micro Devices [AMD] K8[Athlon64/Opteron] Miscellaneous Control:01:00.0 VGA compatible controller: nVidia Corporation NV17
[GeForce4 MX 440] (rev a3)And LSMOD:Module  Size  Used bysnd_seq_midi9536  0snd_emu10k1_synth   8832  0snd_emux_synth 35584  1 snd_emu10k1_synthsnd_seq_virmidi 8640  1 snd_emux_synth
snd_seq_midi_event  9216  2 snd_seq_midi,snd_seq_virmidisnd_seq_midi_emul   8896  1 snd_emux_synthsnd_seq57304  5snd_seq_midi,snd_emux_synth,snd_seq_virmidi,snd_seq_midi_event,snd_seq_midi_emul
snd_pcm_oss53920  0snd_mixer_oss  18560  1 snd_pcm_ossohci_hcd   21828  0i2c_viapro 10136  0ehci_hcd   31880  0uhci_hcd   33824  0
tuner  39976  0saa7134   119636  0video_buf  22020  1 saa7134v4l2_common 8384  1 saa7134v4l1_compat14660  1 saa7134i2c_core   21952  3 i2c_viapro,tuner,saa7134
ir_common   9732  1 saa7134videodev   11712  1 saa7134snd_emu10k1   117892  1 snd_emu10k1_synthsnd_rawmidi25824  3 snd_seq_midi,snd_seq_virmidi,snd_emu10k1snd_seq_device  9808  5
snd_seq_midi,snd_emu10k1_synth,snd_seq,snd_emu10k1,snd_rawmidisnd_ac97_codec 91140  1 snd_emu10k1snd_pcm90376  3 snd_pcm_oss,snd_emu10k1,snd_ac97_codecsnd_timer  24520  3 snd_seq,snd_emu10k1,snd_pcm
snd_page_alloc 11216  2 snd_emu10k1,snd_pcmsnd_util_mem6016  2 snd_emux_synth,snd_emu10k1snd_hwdep  10912  2 snd_emux_synth,snd_emu10k1snd54496  12snd_emux_synth,snd_seq_virmidi,snd_seq,snd_pcm_oss,snd_mixer_oss,snd_emu10k1,snd_rawmidi,snd_seq_device,snd_ac97_codec,snd_pcm,snd_timer,snd_hwdep
soundcore  10720  2 saa7134,sndohci1394   33868  0ieee1394  354192  1 ohci1394evdev 

Re: [mythtv-users] Hello, and question about sound

2005-09-15 Thread Jeff Clemens
Well, it does have most of the Audigy controls, such as digital out.  I don't believe I had a previous sound card in this machine, and there is no onboard sound on this box.
 
It's booting up now, so I'll check in a minute.  I'm starting to wish I didn't do the upgrade, as it seems to have broken a number of things.  Right now, my focus is on sound though.
 
This is what I see in /proc/asound/cards
 
0 [Unknown    ]: Audigy - Audigy 1 or 2 [Unknown] Audigy 1 or 2 [Unknown] (rev.3, serial:0x511102) at 0xece0, irq 9 
On 9/15/05, Michael T. Dean <[EMAIL PROTECTED]> wrote:
Michael T. Dean wrote:> Jeff Clemens wrote:>>> Acutally, alsamixer doesn't have the mute controls either any more.
>> Looks like maybe somehow that got removed from the support for the>> Audigy.>> Are you sure you've got the ALSA driver installed?  What does>> /sbin/lsmod | grep -r 'snd[-_]emu10k1'
>> give?  Is the ALSA driver there?  (I'm assuming you don't have an> Audigy 2 Nx or an Audigy LS in which case you want to check for> 'snd[-_]usb[-_]audio' or 'snd[-_]ca0106', respectively.)
Hmmm.  It must be 4:20 in the morning.  If alsamixer works, you've gotALSA drivers installed, but following on my line of thinking, are yousure that some other soundcard isn't the "first" card (i.e. integrated
sound on your motherboard).What doescat /proc/asound/cardsgive?  If your Audigy isn't card 0, then you're probably seeing themixer for the other card.Mike___
mythtv-users mailing listmythtv-users@mythtv.orghttp://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users

___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Hello, and question about sound

2005-09-15 Thread Jeff Clemens
Acutally, alsamixer doesn't have the mute controls either any more.  Looks like maybe somehow that got removed from the support for the Audigy.  
On 9/14/05, Nick <[EMAIL PROTECTED]> wrote:
On 15/09/05, Jeff Clemens <[EMAIL PROTECTED]> wrote:> First of all, I'm new here, and would like to say hello.
>> The following question is not necessarily specific to Myth, but it affects> Myth, and I'm not really sure which component is causing the trouble.>> I've been running Myth successfully on FC3 for a few months now.  I recently
> upgraded everything (apt-get dist-upgrade).  Since I've done that, I can't> seem to get the line-in on my soundcard to feed through to the digital out.>> I'm using a SB Audigy card that has been working great with Alsa until this
> upgrade.  I have a PVR350 and have the audio outs looped back to the line in> on the sound card.>> Since the upgrade, Kmix seems to have changed.  There are fewer sliders, and> no mute buttons.  My guess is that the line-in is muted or something, but I
> can't seem to un mute it.>> I've gone through the digital sound setup reccommended in Jarod's guide, and> that worked until now.>> Thinking that maybe it was an issue with Kmix, I tried a few other mixer
> apps, and none of them seem to have the mute controls any longer, so maybe> it's an ALSA issue.>> I've read that others seem to have similar setups, does anyone have any> experience with this problem on here?
Try using alsamixer from the command line. It should have all thecontrols you need.Nick
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


[mythtv-users] Hello, and question about sound

2005-09-14 Thread Jeff Clemens
First of all, I'm new here, and would like to say hello.
 
The following question is not necessarily specific to Myth, but it affects Myth, and I'm not really sure which component is causing the trouble.
 
I've been running Myth successfully on FC3 for a few months now.  I recently upgraded everything (apt-get dist-upgrade).  Since I've done that, I can't seem to get the line-in on my soundcard to feed through to the digital out.

 
I'm using a SB Audigy card that has been working great with Alsa until this upgrade.  I have a PVR350 and have the audio outs looped back to the line in on the sound card.
 
Since the upgrade, Kmix seems to have changed.  There are fewer sliders, and no mute buttons.  My guess is that the line-in is muted or something, but I can't seem to un mute it.
 
I've gone through the digital sound setup reccommended in Jarod's guide, and that worked until now.   
 
Thinking that maybe it was an issue with Kmix, I tried a few other mixer apps, and none of them seem to have the mute controls any longer, so maybe it's an ALSA issue.  
 
I've read that others seem to have similar setups, does anyone have any experience with this problem on here?
 
Thanks in advance,
 
Jeff
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] HELP: Odd behaviour myth-setup

2005-05-15 Thread clemens
> 
> Instead of pressing Enter, try pressing Control+Enter.
>  If this works, then it's likely a problem with Qt.  I
> have to do the same thing on my system (Fedora Core 3,
> using ATrpms).
> 

Thanks, that works like a charm.
Sigh, looks like ANOTHER broken verison of Qt.

-- 
Reg.Clemens
[EMAIL PROTECTED]


___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


[mythtv-users] HELP: Odd behaviour myth-setup

2005-05-15 Thread clemens
OK, as they always say, things have been working just fine,
but suddenly they stopped working.  I DIDN'T CHANGE ANYTHING...

I needed to go to myth-setup to re-set the startup channel
(its set at 3, I need to set it to 5_1) and now I cant get
into myth-setup.

The problem is, I start myth-setup, and get the screen that 
has two options at the bottom

No, leave my card settings alone
Yes, delete my card settings.

I want to choose the 1st, and I do.
It changes from bright RED to a DULL-grey.
AND HANGS.

Nothing else happens.

I can move the cursor up and down and try again, but still the
same hang.

This is MythTV from CVS several weeks ago, but Ive tried (all) the
versions of mythtv I have, going back to the first of the year, and
they all seem to do the same thing.

Any thoughts?
(and of course my thought) Is this a database problem
And if it is, anyone know what needs fixing?


-- 
Reg.Clemens
[EMAIL PROTECTED]


___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


[mythtv-users] CPU usage: is this normal?

2005-03-25 Thread clemens
I have my Air2PC card working now with MythTV, and am 
beginning to notice the 'small stuff'.

The machine (all of myth is in one box), has an
Nvidia GeForce FX 5200
video card, and the cpu is a 3.2GHz Pentium 4.

I have XvMC turned on, but with 'top' I see 34%CPU for 
mythfrontend.  That seems HIGH.

Should the CPU be lower with XvMC turned on or is my 
memory playing tricks with me?


-- 
Reg.Clemens
[EMAIL PROTECTED]


___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Can't run myth-setup

2005-03-19 Thread clemens

> On Sat, 19 Mar 2005 14:21:17 -0700, [EMAIL PROTECTED] <[EMAIL PROTECTED]> 
> wrote:
> 
> > I get as far (2nd screen?) as the message
> > 
> > Would you like to clear all capture card settings before
> > starting configuration?
> > 
> > and then choosing either YES or NO causes things to hang forever...
> 
> I believe this is the QT compatibility issue on FC3.  You can find details 
> here:
> 
> http://www.gossamer-threads.com/lists/mythtv/users/118662?search_string=%2Bqt%2B3.3.4;#118662
> 
> Colin

Thanks, with the number of things that changed in my new (re)install,
there is no way I would have ever found this.

Ill back up to the previous library level in the AM.


-- 
Reg.Clemens
[EMAIL PROTECTED]


___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


[mythtv-users] Can't run myth-setup

2005-03-19 Thread clemens
I am in the process of bringing up MythTV on a new Fedora3 Partition
on my disk, and other than the normal stupid things that have gone 
wrong, I am now stuck in not being able to run myth-setup.

I get as far (2nd screen?) as the message

Would you like to clear all capture card settings before 
starting configuration?

and then choosing either YES or NO causes things to hang forever...

Ive tried this with two different window managers, and two users and
root.  Same result.

There is nothing significant in /var/log/messages.

Grump.

Any thoughts?
-- 
Reg.Clemens
[EMAIL PROTECTED]


___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Can't compile MythTV (neer mind..)

2005-03-19 Thread clemens

OK, in the new partition libXext REALLY isnt there.
In the AM Ill have to see which rpm didnt get loaded (sigh)

-- 
Reg.Clemens
[EMAIL PROTECTED]


___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


[mythtv-users] Can't compile MythTV

2005-03-19 Thread clemens
Every time I turn arround, I either break something, or
something has changed out from under me.

Ive gone back and setup a new Fedora3 partition to build/
run mythtv in, and now I cant even build mythtv (sigh)

So what am I doing wrong (its late, Im never going to see it
myself tonight...)

Ive pulled down the current mythtv from cvs.

Ive gone in and uncommented some options in settings.pro

Then I

./configure
qmake settings.pro
make

and I get:

[EMAIL PROTECTED] mythtv-cvs]# make
g++  -o settings -L/usr/lib/qt-3.3/lib -lqt-mt -lXext -lX11 -lm
/usr/bin/ld: cannot find -lXext
collect2: ld returned 1 exit status
make: *** [settings] Error 1

now /etc/ld.so.conf has /etc/X11R6/lib in it, viz

[EMAIL PROTECTED] mythtv-cvs]# cat /etc/ld.so.conf
include ld.so.conf.d/*.conf
/usr/X11R6/lib
/usr/lib/mysql
/usr/local/lib

and I will assume that that first include is taking care of
/usr/lib/qt-3.3/lib

which is the contents of the included file.

and /sbin/ldconfig was run...

This USED to work, what have I done now...

Reg.Clemens
[EMAIL PROTECTED]


___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Mythweather quit working?

2005-03-13 Thread clemens

I dont know.
When I rebuild (or fix the URL and rebuild), then install.
When I go back into weather it asks for my Location again.
I work my way down to Albuquerque and hit 'i'

At that point MythWeather core dumps...

Sigh.


-- 
Reg.Clemens
[EMAIL PROTECTED]


___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


[mythtv-users] Where to put files for MythWeb?

2005-03-02 Thread clemens
I am trying to get MythWeb up and running, but just dont
understand the generic instructions in the README as to
where to put files.

Could someone (who has this thing running) tell me where
things actually go.

Im running a Fedora3 system, but expect that the answer
should be the same for ALL RedHat and Fedora systems.

Its just not clear whether /www and or / imply the
home directory for apache, or something else, and where
'tags' is, and where this .htaccess goes.

An rpm that did all the work would be even nicer, but thats
too much to ask...

Basically, for each file or directory mentioned, WHERE
should it go on a Fedora system.

Thanks...
-- 
Reg.Clemens
[EMAIL PROTECTED]


___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


[mythtv-users] Air2PC Driver Software?

2005-02-04 Thread clemens
I understand that the Air2PC driver has been integrated into the 2.6.10
kernel (Im currently running 2.6.9, but will upgrade)

Is there some site I should be aware of that has updates to this driver?
I know Ive seen things mentioned on this and the Development list, but
cant find the messages at the moment.
-- 
Reg.Clemens
[EMAIL PROTECTED]


___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Air2pc / Air2LAN (Solved)

2005-02-02 Thread clemens

> 
> Hummm.
> I cant find it on the first reference, and on the 2nd I get into 
> an endless loop while trying to pay for it with a credit card 
> rather than PayPal.  Not Nice, they keep asking me to retype 
> everything that I have already put in.
> 

I just want to give credit where credit is due.
The Folks at StormLogic, viz

http://mythic.tv/product_info.php?products_id=33

jumped on the problem almost immediately after I posted this note
and after two iterations of e-mail, were able to solve the problem
with their PayPal processing software.

In the past when Ive had problems with payment software on the WEB
its usually taken about a week for anyone to even admit that there
was a problem, these guys found the problem and fixed it in just
a few hours...

Thanks again.

(And yes, I orderded the card from them, should have a new toy to
play with in a few days...)


-- 
Reg.Clemens
[EMAIL PROTECTED]


___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Air2pc / Air2LAN

2005-02-01 Thread clemens
> --===0333603393==
> Content-Type: text/plain; charset=us-ascii
> 
> 
> --- Tim <[EMAIL PROTECTED]> wrote:
> 
> > 
> > Where does one aquire these cards in the USA? Only
> > source I could find 
> > was .
> > 
> 
> Here is another alternative:
> 
> http://mythic.tv/product_info.php?products_id=33
> 

Hummm.
I cant find it on the first reference, and on the 2nd I get into 
an endless loop while trying to pay for it with a credit card 
rather than PayPal.  Not Nice, they keep asking me to retype 
everything that I have already put in.

Any other Sources???


-- 
Reg.Clemens
[EMAIL PROTECTED]


___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


[mythtv-users] Installing MythTV from ATrpms.

2005-01-11 Thread clemens
Ive been trying to get MythTV running now for about 3months, and
with little/no success.

I CAN see video if I use ptune/mplayer, so I have to assume my
kernel and kernel drivers are ok, its just MythTV itself that
seems to be the problem.

I have been compiling from CVS every few days, and the last version
that worked at all was from the week before Christmas.  I decided
to try the ATrpms (again) and I have had the same problem with trying
to install them this time as I did before.

So, heres what I have, and heres what Ive done.  Why does this work
for other people and not me???

First Hardware: 3.2GHz Pentium 4, pcHDTV card, PVR-250 card, SB Live! 5.1.
1GB Memory... That should be everything relevant.  I partitioned 4 x 6GB
Partitions on the front of my disk, so I can have several experiments
going at the same time.  At present, Partition 1: compiled MythTV fromCVS,
Partition 2: try from ATrpms.

OK, (1) Loaded Fedora 2 to Partition 2 of disk
(2) Updated Fedora 2 (with apt-get) from local repository to current.

(3) got MythTV Kickstart, viz
mozilla http:// ATrpms.net/name/atrpms-kickstart/
for Fedora 2.

(4) ran
rpm -Uhv atrpms-kickstart*

(5) ran
apt-get update
apt-get dist-upgrade
apt-get update

apt-get install mythtv-suite

This gives you everything(?) but the drivers, and thats the current problem.
Im TRYING to follow the instructions, but...

The instructions say
Check ATRPMS for the drivers you need.

I click the button, and get to the site, I look under bttv and ivtv, and
pull the most recent (3) rpms.

I try to install these rpms, and rpm comes back with a long list of things
that they depend on...  

Is there some way to tell either apt-get or rpm that I have these three
rpms locally, and please satisfy dependancies from the sites in my 
sources.list?
(I dont see such an option, it may be there).

As an alternative, I tried saying

apt-get install ivtv bttv

and it downloaded 40-50 rpms, but none of them were the kernel modules that
I needed and trying to use rpm to install the three files I have still gives
a list of undefined externals.

So, If Im trying to follow the instructions (and not just use --nodeps and
try to fix it later) what do I do 


-- 
Reg.Clemens
[EMAIL PROTECTED]


___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


[mythtv-users] What is "Input Connections" setting?

2005-01-07 Thread clemens
I don't understand what the "Input Connections" window is setting, 
or to say the same thing, what is it trying to tell me?

I have the entries:

[HDTV:/dev/dtv1](Antenna-0)->Antenna
[MPEG:/dev/video0](Tuner0)->Antenna

OK, I can understand that this is associating both the pcHDTV hd2000 card
(HDTV), and the PVR-250 card (MPEG) with the Antenna database.  There could
be other databases if I were connected to say cable.

the /dev/dtv1 and /dev/video0 are just where we find the pcHDTV and PVR-250
card.

But what is this Antenna-0 and Tuner0 business trying to tell me?
Clearly BOTH boards have tuners, but 'tuner' is not an option when 
setting up the HDTV card.  What is that trying to tell me?

Confused.

-- 
Reg.Clemens
[EMAIL PROTECTED]


___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


[mythtv-users] Where is "atrpms-perl-module-helper"

2005-01-06 Thread clemens

OK, Ive seen the same question asked, and never answered, and a google
search turned up nothing of interest...

So, my apt-get dist-upgrade shows a missing dependancy of

perl-module-helper

But I cant find the damn thing anywhere.

So where is it hiding?

I would definately expect to find it in one of the atrpms directories
but nothing of that name...

---

[EMAIL PROTECTED] utils]# apt-get dist-upgrade
Reading Package Lists... Done
Building Dependency Tree... Done
You might want to run `apt-get -f install' to correct these.
The following packages have unmet dependencies:
  perl-Video-ivtv: Depends: atrpms-perl-module-helper but it is not 
installable
E: Unmet dependencies. Try using -f.

---

Reg.Clemens
[EMAIL PROTECTED]


___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Re: Msg: "Remote encoder not responding."

2004-12-24 Thread clemens
> 
> I assume it's talking about the encoder hardware on your capture board.
> I think the process is something like:
> 
> antenna analog signal into capture board -> signal is encoded into mpeg
> video stream by the capture board -> video stream is decoded for
> playback onto your monitor or TV.
> 
> It seems that the encoding process is dying.  You probably want to look
> for an ivtv driver (assuming you're using the Hauppauge pvr 250 or 350)
> or video board driver issue.  Good luck,
> Don
> 

If that is true then MythTV is *VERY* confused, as this is a hd-2000 card
tuned to digital channel.  As such the data coming down the pipe is already
mpeg compressed...

OH, well, its Christmas, if its not obvious to one of you, guess Ill have
to do some debugging.


-- 
Reg.Clemens
[EMAIL PROTECTED]


___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


[mythtv-users] Msg: "Remote encoder not responding."

2004-12-22 Thread clemens
Ive asked this one before, but I think its at the top of my list
of problems with the hd2000.  I see video for about 30s, and then
it stops.  In the output from mythfrontend I see:

---

...
2004-12-22 00:52:05.862 positionMap[ 588 ] == 44715424.
2004-12-22 00:52:06.262 positionMap[ 600 ] == 45626848.
2004-12-22 00:52:06.663 positionMap[ 612 ] == 46528308.
2004-12-22 00:52:06.758 ReadStringList timeout (quick).
Remote encoder not responding.
2004-12-22 00:52:06.758 WriteStringList: Bad socket
2004-12-22 00:52:06.758 ReadStringList: Bad socket
Remote encoder not responding.
2004-12-22 00:52:06.764 WriteStringList: Bad socket
2004-12-22 00:52:06.764 ReadStringList: Bad socket
Remote encoder not responding.
2004-12-22 00:52:07.166 Changing from WatchingLiveTV to None
2004-12-22 00:52:07.169 Changing from None to None

---

Where I assume that "Remote encoder not responding" is the 
significant message.  

What is MythTV trying to do?
What encoder is not responding?
Is something missing, or what?


-- 
Reg.Clemens
[EMAIL PROTECTED]


___
mythtv-users mailing list
[EMAIL PROTECTED]
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] several Problems with MythTV/hd-2000

2004-12-21 Thread clemens
> 
> [EMAIL PROTECTED] wrote:
> > I have FINALLY seen a picture from my hd-2000 card, and now need to
> > get it working 'better'
> > 
> > (1) The sound appears to come in little 'chunks' with spaces between
> > them... WHAT should the audio be set to?  (Ill assume that an incorrect
> > setting is the problem)
> > 
> > (2) The video comes up for about 30sec, and then I drop back to the 
> > (previous) MythTV screen (where I can choose 'Watch TV'), related to 
> > this (I assume) is the message in the messages coming out of mythfrontend
> 
> Describe your setup a little more.  Processor, video card (& driver 
> version), ALSA vs. OSS audio, separate vs. combined frontend/backend, 
> what kind of network between them, which one holds the HD-2000, version 
> of MythTV, etc.

OK, sorry for the lack of details.  The processor is a 3.2GHz P4 1GB memory.
The Video card is a Nvidia GeForce FX 5200, with the current driver from 
Nvidia. The sound card is a Sound Blaster Live! 5.1.  OS is Fedora2, and the 
Alsa is what delivers with Fedora2.  The pcHDTV is using the v4 driver released 
by pcHDTV yesterday, tho David George mentions a v5 that I will try once they
get their site back up (just checked: first screen or two ok, but then the 
hacker screen).  MythTV from CVS a day or two ago (over the weekend).
Dave mentions going back to the dag- driver, I can try that.
Everything is running on one machine.

> 
> If you use getatsc to capture a stream, can you play it back with 
> MPlayer?  How much free CPU do you have while playing back?
> 

That would be an interesting test.
How does one play back a ATSC stream with Mplayer?  
The Man 'page' is 50+ pages long, and when I went thru it I never saw
a flag for ATSC/NTSC/PAL.

But as I noted, the stream DOES play, it just stops after mabe 30s
due to what I assume is some other problem.

> > (3) When I had the PVR-250 card installed, when I had a picture on the
> > screen (ok, monitor) I could hit the 'M' key and bring up a menu, or I could
> > hit numeric keys to change channels.  with the pcHDTV card installed I can
> > do neither.  What gives?
> 
> When Mythfrontend is frozen waiting for data from the recorder, it 
> becomes unresponsive.  This is a longstanding problem.  What do your 
> signal levels look like?

Well, there ALWAYS has been stuff scrolling up in the window behine 
mythfrontend.  That has seemed to get a bit better recently (less stuff)
but since it starts w/o my having hit any buttons at all its hard to 
control.  Signal levels, from dtvsignal are 85%+.  Signal levels from
MythTV show as 13%, which I assume is part of the scrolling problem, till
I, in a separate window do  dtvsignal on a 'good' channel (I have no idea
what channel it is tuned to initially, NOT what I put into setup as the
default) then the signal comes up  to the 90% range and I see a picture,
but still cant get any keyboard action.

> 
> > (4) I CANT change channels within MythTV.  The only way I can set a channel
> > is to run dtvsignal once mythfrontend is up.  And YES the 'Video Source' 
> > screen is set to 'us-bcast'.  It almost feels like one program knows how
> > to talk to the tuner and the other doesnt.  Any ideas???
> 
> Did you go through and set your freqid field in the database for each HD 
> channel you get?  Are there channels you *don't* get in your database?
> 
Yes, and Yes.  I deleted the non-digital stations from the setup-database,
but they were replaced the first time I ran mythfilldatabase.  Guess I have
to go over to Zap2it and define a list of ONLY DTV stations 

> Is there anything useful in your backend log, or printed out from the 
> frontend?  Try running backend with '--verbose channel,record' and 
> frontend with '--verbose playback' and you might get some good diagnostics.
> 
Will do, but right now I have to go into the office and finish up a couple
of projects.

Will do that when I get back later this afternoon.

Thanks

Reg.Clemens
[EMAIL PROTECTED] 


___
mythtv-users mailing list
[EMAIL PROTECTED]
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


[mythtv-users] several Problems with MythTV/hd-2000

2004-12-21 Thread clemens
I have FINALLY seen a picture from my hd-2000 card, and now need to
get it working 'better'

(1) The sound appears to come in little 'chunks' with spaces between
them... WHAT should the audio be set to?  (Ill assume that an incorrect
setting is the problem)

(2) The video comes up for about 30sec, and then I drop back to the 
(previous) MythTV screen (where I can choose 'Watch TV'), related to 
this (I assume) is the message in the messages coming out of mythfrontend

Remote encoder not responding

What is this trying to tell me?  What remote encoder?

(3) When I had the PVR-250 card installed, when I had a picture on the
screen (ok, monitor) I could hit the 'M' key and bring up a menu, or I could
hit numeric keys to change channels.  with the pcHDTV card installed I can
do neither.  What gives?

(4) I CANT change channels within MythTV.  The only way I can set a channel
is to run dtvsignal once mythfrontend is up.  And YES the 'Video Source' 
screen is set to 'us-bcast'.  It almost feels like one program knows how
to talk to the tuner and the other doesnt.  Any ideas???

This is all with the latest, greatest patch from pcHDTV. (04)


t
-- 
Reg.Clemens
[EMAIL PROTECTED]


___
mythtv-users mailing list
[EMAIL PROTECTED]
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Still have Black Screen with hd-2000

2004-12-20 Thread clemens
> On 12/20/2004 3:03 PM, [EMAIL PROTECTED] wrote:
> 
> >In the messages written to the window behind mythfrontend, I see the 
> >following
> >messages, which are probably significant:
> >
> >2004-12-20 12:52:40.536 Changing from None to WatchingLiveTV
> >2004-12-20 12:52:48.199 Maximum signal strength detected: 13% after 5500 
> >msec wait
> >2004-12-20 12:52:48.199 Signal level too low?
> >2004-12-20 12:52:48.199 Tuning Error -- aborting recording
> >2004-12-20 12:52:48.199 TVRec: Recording Prematurely Stopped
> >
> >This is saying that there is a tuning error and the signal strength is 13%
> >rather than the 85+% that I see with dtvsignal.
> >
> >So, Im running kernel 2.6.9 with the
> >kraxel v4l2 patch:   All-2.6.9-rc4.diff.gz
> >and the pcHDTV patch
> >dag-2.6.9-rc4.patch.bz2
> >
> >Have I missed something???
> >  
> >
> Looks like your freqtable in videosource may not be set to us-bcast.  I 
> used to get the exact same symptoms (and log message) when I left mine 
> at Default.  When I changed it to us-bcast, it started working.
> 
> HTH,
> David
> 
Well, that turned out to be true, BUT...
It was set correctly at one time,- I guess I just dont trust this
setup program/database,- things seem to change behind my back.

In any case, before making the change I actually saw video with the hd-2000
card, AFTER the FIX, nothing, just black screen.  Ive tried the dtvsignal
trick a couple three times, and still black screen, and the above messages.

Sigh.

Pulling the PVR-250 helped
Keeping the IVTV module from loading seems to help.

Im down to one video card, one driver, and one black screen...


-- 
Reg.Clemens
[EMAIL PROTECTED]


___
mythtv-users mailing list
[EMAIL PROTECTED]
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Still have Black Screen with hd-2000 (more)

2004-12-20 Thread clemens

Let me add some additional information to my previous post.

The problem still seems to be the 'tuner' but I tried using
dtvsignal to set the channel just before starting mythfrontend
and I seem to be able to go from one station to another in that
round-about-way...

So, where is the version of 'tuner' that needs to be upgraded?
Im running MythTV from last nite's CVS so it doesnt seem to be
there...


-- 
Reg.Clemens
[EMAIL PROTECTED]


___
mythtv-users mailing list
[EMAIL PROTECTED]
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


[mythtv-users] Still have Black Screen with hd-2000

2004-12-20 Thread clemens
OK, I have made some progress.
I previously had both a hd-2000 and a PVR-250 in the box (Intel 3.2GHz,
Fedora2), and I never saw ANY signs of life from the hd-2000 but the PVR-250
worked fine.

I Pulled the PVR-250, and vola, the hd-2000 showed signs of life.

I can now do a dtvscan and see all the live channels I would expect in this
area (Albuquerque, NM) and doing a dtvsignal shows signal strength in the
85%+ range... Not too unexpected with all the signals coming from transmitters
on the top of the mountain about 6mi away, line of sight.

OK, as noted, dtvscan and dtvsignal show good stuff, but mythtv still shows
nothing, just a black screen, and I cant hit the 'M' key and get the index
up, nor can I hit numbers and see a channel I want to switch to ...
I SHOULD be tuning to a live ATSC channel by default, but who knows.

In the messages written to the window behind mythfrontend, I see the following
messages, which are probably significant:

2004-12-20 12:52:40.536 Changing from None to WatchingLiveTV
2004-12-20 12:52:48.199 Maximum signal strength detected: 13% after 5500 
msec wait
2004-12-20 12:52:48.199 Signal level too low?
2004-12-20 12:52:48.199 Tuning Error -- aborting recording
2004-12-20 12:52:48.199 TVRec: Recording Prematurely Stopped

This is saying that there is a tuning error and the signal strength is 13%
rather than the 85+% that I see with dtvsignal.

So, Im running kernel 2.6.9 with the
kraxel v4l2 patch:  All-2.6.9-rc4.diff.gz
and the pcHDTV patch
dag-2.6.9-rc4.patch.bz2

Have I missed something???
All the other patches Ive looked at seem to have made it into 2.6.9 (final).




-- 
Reg.Clemens
[EMAIL PROTECTED]


___
mythtv-users mailing list
[EMAIL PROTECTED]
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


[mythtv-users] pcHDTV hd2000 card: Warning Invalid Version Index Data

2004-12-12 Thread clemens
I have yet to get my pcHDTV hd-2000 / bttv working
in MythTV.

The /var/log/messages shows the following Warning
message during boot, which seems significant. I assume
that others have seen this, what do I do?
---

Dec 12 23:23:54 MythTV kernel: bttv0: loading dvr ...
Dec 12 23:23:58 MythTV kernel: bttv0: Warning Invalid Version Index Data
Dec 12 23:23:58 MythTV kernel: bttv0: ver TU256602 VSB mode 20 Status 20
Dec 12 23:23:58 MythTV kernel: bttv0: finished loading dvr

---

I am currently running Fedora2 with a 2.6.9 kernel.
The kernel has patches ala the 'thegeorges' web
page, first the 'kraxel 2.6.9-rc4-1' patch and then
the 'dag-2.6.9-rc4.patch' . Parts of these patches
had already made it into 2.6.9.

Reg.Clemens
[EMAIL PROTECTED]


___
mythtv-users mailing list
[EMAIL PROTECTED]
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] hd2000 / dtvscan / strange output

2004-12-10 Thread clemens

Damn.
I really thought you had it this time.
I went back and CAREFULLY rebuilt the kernel from the 2.6.9 sources
with the ALL-2.6.9-rc4.diff and dag-2.6.9-rc4.patch mentioned on
your 2.6.9-rc2 page.

The other patches: msp, isofs, harirq all had seemed to have
already made it into to 2.6.9 (final).

But the bad news is that there is no change in the dtvscan behaviour,
still the 'bad' minor number and no stations recognized.  [[ and for
reference, I HAVE tried dtvsignal also, but it just sits on 000 ]]

there seem to be two interesting things with the new kernel:
(1)  The following lines in /var/log/messages

Dec 10 11:31:06 MythTV kernel: bttv0: registered device video1
Dec 10 11:31:06 MythTV kernel: bttv0: registered device vbi1
Dec 10 11:31:06 MythTV kernel: ACPI: PCI interrupt :03:01.1[A] -> GSI 
22 (level, low) ->
Dec 10 11:31:06 MythTV kernel: bttv0: loading dvr ...
Dec 10 11:31:10 MythTV kernel: bttv0: Warning Invalid Version Index Data
Dec 10 11:31:10 MythTV kernel: bttv0: ver TU256602 VSB mode 06 Status 20
Dec 10 11:31:10 MythTV kernel: bttv0: finished loading dvr
Dec 10 11:31:10 MythTV kernel: bttv: SetMode Rec Status 20 03
Dec 10 11:31:11 MythTV kernel: ACPI: PCI interrupt :03:03.0[A] -> GSI 
19 (level, low) ->
Dec 10 11:31:11 MythTV kernel: lirc_i2c: chip found @ 0x18 (Hauppauge IR)
Dec 10 11:31:11 MythTV kernel: ivtv: i2c attach [client=Hauppauge IR,ok]
Dec 10 11:31:11 MythTV kernel: lirc_dev: lirc_register_plugin:sample_rate: 
10
Dec 10 11:31:11 MythTV rc: Starting mythtv:  succeeded
Dec 10 11:31:11 MythTV wait_for_sysfs[3196]: either wait_for_sysfs (udev 
043) needs an update to
 dandle the device '/class/video4linux/video1' properly (no device symlink) or 
the sysfs-support of
your device's driver needs to be fixed, please report to 
<[EMAIL PROTECTED]>

The first line shows that /dev/video1 was 'registered' (more on that below).

There are four lines in the center about 'dvr' and Invalid Version Index Data 
which I havent
seen before, and which are new.

Finaly the last line, which appears to be a udev complaint, and which I assume 
is unrelated.

---

(2) Re /dev/video1 being 'registered'.
In previous kernels I have been able to OPEN /dev/video1, but a 'cat 
/dev/video1' resulted
in no output.  With the current kernel /dev/video1 cant be opened.  Which 
brings up the
question: in ./setup, Under 'Capture Cards', should I have /dev/video1 or 
/dev/dtv for
'Video Device' ? Currently I have /dev/video1, and this now produces an eror 
when I
start mythbackend (since I cant be opened).

---

So, am I still missing something (are there more bttv fixes)?
This is slow-going, but Im going to keep fighting it...


Reg.Clemens
[EMAIL PROTECTED]


___
mythtv-users mailing list
[EMAIL PROTECTED]
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


[mythtv-users] hd2000 / dtvscan / strange output

2004-12-09 Thread clemens
Ive asked this before, as part of another question, but
never received an answer.

I have yet to see any output from my hd2000 pcHDTV card.
One thing that might be significant in tracking down the problem 
is that if I do a 'dtvscan' I get the following output

---

[EMAIL PROTECTED] reg]# dtvscan
main: argc 1 argv[1] (null)
dtvscan: no device specified using /dev/dtv
video unit v4l minor = 44
 dtv unit v4l minor = 1297516246
channel = 2
channel = 3
channel = 4
channel = 5
...

---

with no channels identified.
The /dev/dtv comment is OK (?) in that /dev/dtv -> /dev/dtv0 and all
other /dev/dtv? give an error on trying to open them.  Since the bttv
devices are /dev/video1, etc, I would have EXPECTED to find /dev/dtv1,
but its not alive...

In any case, the thing that seems just WRONG is the line

dtv unit v4l minor = 1297516246

I see different 'random numbers' with different versions of dtvscan.

I would ASSUME this should be something in the range 0-255.

Any thoughts?


-- 
Reg.Clemens
[EMAIL PROTECTED]


___
mythtv-users mailing list
[EMAIL PROTECTED]
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


[mythtv-users] Duplicate entries in Channel Editor

2004-12-08 Thread clemens
I have some duplicate (and bad) entries in the 'Channel Editor'
window of ./setup

I have tried just about everything, but I cannot delete a 'bad'
entry, if anything they seem to be breeding...

So HOW DO I REMOVE an entry?  Cancel doesnt work, clearing the
entry doesnt work.

Id hate to have to blow away the entire mysql database and start
again...


-- 
Reg.Clemens
[EMAIL PROTECTED]


___
mythtv-users mailing list
[EMAIL PROTECTED]
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


[mythtv-users] Jarod Instructions / mplayer

2004-12-02 Thread clemens
I have a dumb question here.

I have got to the place in Section 10 of the Jarod instructions where
he suggests that you do 
ivtvctl -u 0x3000
ivtvctl -p 4
ivtvctl -f width=720,height=480

and then do
cat /dev/video1 > test.mpg(yes on mine its video1)
and mplayer test.mpg

So the dumb question.
WHAT CHANNEL are we trying to 'see' ???
I see a 'bit' of static, but that wouldnt be all that odd if we are
sitting on a nonexistant channel.

Ive looked back, but dont see anything that sets the channel.

If I do a
ivtvctl -R
it reports
Frequency = 10132
but trying to interpret that as 101.32MHz (?) doesnt give the edge or
center of any broadcast or cable tv channel...

SO what gives?


-- 
Reg.Clemens
[EMAIL PROTECTED]


___
mythtv-users mailing list
[EMAIL PROTECTED]
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


[mythtv-users] Confused...

2004-12-02 Thread clemens
Im having more problems with getting MythTV up than I have ever had
with any other piece of software.  I have a machine here with a PVR-250
and a pcHDTV HD2000 in it, along with a Sound Blaster Live 5.1 (tho if it
would make things any easier to get this thing started, I could easily
pull one or the other of the video boards).

[[ Just to be sure that at least ONE of the boards (and the antenna)
were working I ran the Windows software that came with the PVR-250,
and was able to see live TV,- so that card is OK ]]

Ive currently been thru ./setup, and am not sure what I was supposed
to do with the "Video Sources".  It currently says:
HDTV: /dev/video0(Television) -> Antenna
MPEG: /dev/video1(Tuner 0)-> Antenna

Why one is "Television" and the other "Tuner 0" is not clear, they both
have tuners, right?  But I cant change the "Tuner 0" so so be it.

I have NO idea what to do with the Channel Editor.
Thats probably a problem.

If I make it thru ./setup, then run mythfilldatabases, it runs and seems
to run ok.

I then try starting mythbackend, followed by mythfrontend.
I get a (fullscreen) black screen, with a (window) title bar across the top.

Nothing seems to happen here till I close the window and kill mythfrontend.
but the window where I started it (mythfrontend) contains hundreds of error
messages saying that it couldnt open /dev/dsp.

Now the ALSA sound works in the sense that I can play CD's, is there some
additional module that needs loading for MythTV to get to /dev/dsp?
Or is the name /dev/dsp an oss thing, and I need a different name for ALSA?

Mumph.
I had expected it to take several hours to get MythTV up, and its now
been a couple of weeks.  And not counting the excursion to Windows,
I have yet to see ANYTHING that makes me believe Im any closer to getting
this stuff running on my machine. *sigh*

---

So anyone want to give me a pointer or two...

-- 
Reg.Clemens
[EMAIL PROTECTED]


___
mythtv-users mailing list
[EMAIL PROTECTED]
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


[mythtv-users] mythfilldatabase NEVER 'OK'

2004-11-30 Thread clemens
When I run mythfilldatabase I ONLY get errors, never 'OK'
Yet I can loginto Zap2it with the uername/password that I
gave ./setup...

It FEELS like the database program is not giving mythfilldatabase
the right info (what does the line 
=> '-'
imply?

In any case here is a copy the the output from mythfilldatabase,
can anyone tell me whats wrong?

---
[EMAIL PROTECTED] linux-2.6.9]# mythfilldatabase
Refreshing Tomorrow's data
Retrieving datadirect data... 
Grabbing data for Wed Dec 1 2004 offset 1
>From : Thu Dec 2 07:00:00 2004 To : Fri Dec 3 07:00:00 2004 (UTC)
--00:17:32--  http://datadirect.webservices.zap2it.com/tvlistings/xtvdService
   => `-'
Resolving datadirect.webservices.zap2it.com... 206.18.98.160
Connecting to datadirect.webservices.zap2it.com[206.18.98.160]:80... connected.
HTTP request sent, awaiting response... 401 Unauthorized
Connecting to datadirect.webservices.zap2it.com[206.18.98.160]:80... connected.
HTTP request sent, awaiting response... 401 Unauthorized
Authorization failed.
Grab complete.  Actual data from --00:17:32--  http://datadirect.webservices.za
p2it.com/tvlistings/x
tvdService
   => `-'
Resolving datadirect.webservices.zap2it.com... 206.18.98.160
Connecting to datadirect.webservices.zap2it.com[206.18.98.160]:80... connected.
HTTP request sent, awaiting response... 401 Unauthorized
Connecting to datadirect.webservices.zap2it.com[206.18.98.160]:80... connected.
HTTP request sent, awaiting response... 401 Unauthorized
Authorization failed.
--00:17:33--  http://datadirect.webservices.zap2it.com/tvlistings/xtvdService
   => `-'
Resolving datadirect.webservices.zap2it.com... 206.18.98.160
Connecting to datadirect.webservices.zap2it.com[206.18.98.160]:80... connected.
HTTP request sent, awaiting response... 401 Unauthorized
Connecting to datadirect.webservices.zap2it.com[206.18.98.160]:80... connected.
HTTP request sent, awaiting response... 401 Unauthorized
Authorization failed.
--00:17:33--  http://datadirect.webservices.zap2it.com/tvlistings/xtvdService
   => `-'
Resolving datadirect.webservices.zap2it.com... 206.18.98.160
Connecting to datadirect.webservices.zap2it.com[206.18.98.160]:80... connected.
HTTP request sent, awaiting response... 401 Unauthorized
Connecting to datadirect.webservices.zap2it.com[206.18.98.160]:80... connected.
HTTP request sent, awaiting response... 401 Unauthorized
Authorization failed.
--00:17:33--  http://datadirect.webservices.zap2it.com/tvlistings/xtvdService
   => `-'
Resolving datadirect.webservices.zap2it.com... 206.18.98.160
Connecting to datadirect.webservices.zap2it.com[206.18.98.160]:80... connected.
HTTP request sent, awaiting response... 401 Unauthorized
Connecting to datadirect.webservices.zap2it.com[206.18.98.160]:80... connected.
HTTP request sent, awaiting response... 401 Unauthorized
Authorization failed.
--00:17:34--  http://datadirect.webservices.zap2it.com/tvlistings/xtvdService
   => `-'

Resolving datadirect.webservices.zap2it.com... 206.18.98.160
Connecting to datadirect.webservices.zap2it.com[206.18.98.160]:80... connected.
HTTP request sent, awaiting response... 401 Unauthorized
Connecting to datadirect.webservices.zap2it.com[206.18.98.160]:80... connected.
HTTP request sent, awaiting response... 401 Unauthorized
Authorization failed.
--00:17:34--  http://datadirect.webservices.zap2it.com/tvlistings/xtvdService
   => `-'
Resolving datadirect.webservices.zap2it.com... 206.18.98.160
Connecting to datadirect.webservices.zap2it.com[206.18.98.160]:80... connected.
HTTP request sent, awaiting response... 401 Unauthorized
Connecting to datadirect.webservices.zap2it.com[206.18.98.160]:80... connected.
HTTP request sent, awaiting response... 401 Unauthorized
Authorization failed.
--00:17:34--  http://datadirect.webservices.zap2it.com/tvlistings/xtvdService
   => `-'
Resolving datadirect.webservices.zap2it.com... 206.18.98.160
Connecting to datadirect.webservices.zap2it.com[206.18.98.160]:80... connected.
HTTP request sent, awaiting response... 401 Unauthorized
Connecting to datadirect.webservices.zap2it.com[206.18.98.160]:80... connected.
HTTP request sent, awaiting response... 401 Unauthorized
Authorization failed.
--00:17:35--  http://datadirect.webservices.zap2it.com/tvlistings/xtvdService
   => `-'
Resolving datadirect.webservices.zap2it.com... 206.18.98.160
Connecting to datadirect.webservices.zap2it.com[206.18.98.160]:80... connected.
HTTP request sent, awaiting response... 401 Unauthorized
Connecting to datadirect.webservices.zap2it.com[206.18.98.160]:80... connected.
HTTP request sent, awaiting response... 401 Unauthorized
Authorization failed.
--00:17:35--  http://datadirect.webservices.zap2it.com/tvlistings/xtvdService
   => `-'
Resolving datadirect.webservices.zap2it.com... 206.18.98.160
Connecting to datadirect.webservices.zap2it.com[206.18.98.160]:80... connected.
HTTP request sent, awaiting response... 401 Unauthorized
Connecting to da