Re: [mythtv-users] Frontends can't find database, can't connect (success)

2005-07-01 Thread Michael Jones
Thanks Marc and Korey..

That was the ticket.

The link http://wilsonet.com/mythtv/fcmyth.php#mysql

In combination with the info provided by Mark Tousignant put me in the right
place. 

When I listed the users, only the root users had a Y in ANY of the privilege
columns.  I used the GRANT functions to add the privileges and everything
dropped into place.


> From: Korey Fort <[EMAIL PROTECTED]>
> Reply-To: Discussion about mythtv 
> Date: Fri, 1 Jul 2005 23:40:50 -0500
> To: 'Discussion about mythtv' 
> Subject: RE: [mythtv-users] Frontends can't find database, can't connect
> 
> You have to do the same for all of the users who connect to the database no
> bind necessary. 
> 
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On Behalf Of Michael Jones
> Sent: Friday, July 01, 2005 11:18 PM
> To: Discussion about mythtv
> Subject: Re: [mythtv-users] Frontends can't find database, can't connect
> 
> Marc, 
> 
> Thanks.. I'll give that part a shot..
> 
> However, 
> 
> Acutally I can only connect to the mysql database LOCALLY as root.. I can't
> do squat from a remote front end (root or otherwise). .
> 
> I may have to dig into the bind addresses or something..
> 
> - Michael
> 
> 
>> From: Marc Tousignant <[EMAIL PROTECTED]>
>> Reply-To: Discussion about mythtv 
>> Date: Fri, 1 Jul 2005 21:34:45 -0400
>> To: 'Discussion about mythtv' 
>> Subject: RE: [mythtv-users] Frontends can't find database, can't connect
>> 
>> Mike,
>> 
>> Follow this
>> yggdrasil ~ # mysql -uroot -p
>> mysql> show databases;
>> mysql> use mysql;
>> mysql> select * from user where User = 'mythtv';
>> 
>> you should see atleast 2 records
>> | % | mythtv
>> | localhost | mythtv
>> 
>> If you do not see the % one create a the user
>> GRANT USAGE ON *.* TO 'mythtv'@'%' IDENTIFIED BY 'mythtv';
>> % is the one that would allow the user to connect from a remote location
>> 
>> You say root can connect remotely so I do not thing the bind address needs
>> to be changed.
>> 
>> 
>>> -Original Message-
>>> From: [EMAIL PROTECTED] [mailto:mythtv-users-
>>> [EMAIL PROTECTED] On Behalf Of Michael Jones
>>> Sent: Friday, July 01, 2005 8:20 PM
>>> To: Discussion about mythtv
>>> Subject: Re: [mythtv-users] Frontends can't find database, can't connect
>>> 
>>> Ok.. this is getting a little frustrating.. Sorry if this is a little
>>> disjointed.. but my brain is bouncing around in my head trying to wrap
>>> itself around this properly ;)
>>> 
>>> 
>>> 
>>> Note:
>>> 
 From the machine running the masterbackend I can only access the
> database
>>> as
>>> root.. not mythtv as I am assuming I should be.
>>> 
>>> Everything *SEEMS* to work as root.. but maybe not really.
>>> 
>>> I can't log into mysql from the command line at all as 'mythtv'
>>> 
>>> 
>>> Transcript: ...
>>> 
>>> [EMAIL PROTECTED] database]# mysql -u root -p mythconverg
>>> Enter password:
>>> Reading table information for completion of table and column names
>>> You can turn off this feature to get a quicker startup with -A
>>> 
>>> Welcome to the MySQL monitor.  Commands end with ; or \g.
>>> Your MySQL connection id is 84 to server version: 3.23.58
>>> 
>>> Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
>>> 
>>> mysql> select * from user where User = 'mythtv';
>>> ERROR 1146: Table 'mythconverg.user' doesn't exist
>>> mysql>
>>> 
>>> Kinda weird.  Mysql says I don't have a table called 'user' (tried
> 'users'
>>> too)
>>> 
>>> 
>>> /etc/my.cnf file
>>> 
>>> [mysqld]
>>> datadir=/var/lib/mysql
>>> socket=/var/lib/mysql/mysql.sock
>>> set-variable = key_buffer = 16M
>>> set-variable = table_cache = 128
>>> set-variable = sort_buffer = 2M
>>> set-variable = myisam_sort_buffer_size = 8M
>>> #bind-address = 192.168.0.40
>>> 
>>> [mysql.server]
>>> user=mysql
>>> basedir=/var/lib
>>> 
>>> [safe_mysqld]
>>> err-log=/var/log/mysqld.log
>>> pid-file=/var/run/mysqld/mysqld.pid
>>> 
>>> if uncomment the bind-address entry into the mysqld area, mysqld won't
>>> start
>>> up.  Is this a mysql4 command.. I'm still on 3 it appears.  I've tried
>>> different variations with no changes
>>> 
>>> The only attempt that allowed me to start mysqld was to put the
>>> bind-address=x.x.x.x in the [mysql.server] section, but it didn't change
>>> the
>>> final outcome at all.
>>> 
>>> the error that I get from the mythtv-setup and mythfrontend entries are:
>>> 
>>> QMYSQL3: Unable to connect
>>> Database Error Was:
>>> Access denied for user: '[EMAIL PROTECTED]' (Using
>>> password:
>>> YES)
>>> 
>>> I get the same result from other machines (a Windows machine running
>>> WinMythtv and a MacOSX 10.4 (tiger) machine running MacMythtv frontend.
>>> 
>>> I've also tried setting it to connect as root (just for giggles) with the
>>> same result.
>>> 
>>> I've also tried

RE: [mythtv-users] Frontends can't find database, can't connect

2005-07-01 Thread Korey Fort
You have to do the same for all of the users who connect to the database no
bind necessary. 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Michael Jones
Sent: Friday, July 01, 2005 11:18 PM
To: Discussion about mythtv
Subject: Re: [mythtv-users] Frontends can't find database, can't connect

Marc, 

Thanks.. I'll give that part a shot..

However, 

Acutally I can only connect to the mysql database LOCALLY as root.. I can't
do squat from a remote front end (root or otherwise). .

I may have to dig into the bind addresses or something..

- Michael


> From: Marc Tousignant <[EMAIL PROTECTED]>
> Reply-To: Discussion about mythtv 
> Date: Fri, 1 Jul 2005 21:34:45 -0400
> To: 'Discussion about mythtv' 
> Subject: RE: [mythtv-users] Frontends can't find database, can't connect
> 
> Mike,
> 
> Follow this
> yggdrasil ~ # mysql -uroot -p
> mysql> show databases;
> mysql> use mysql;
> mysql> select * from user where User = 'mythtv';
> 
> you should see atleast 2 records
> | % | mythtv
> | localhost | mythtv
> 
> If you do not see the % one create a the user
> GRANT USAGE ON *.* TO 'mythtv'@'%' IDENTIFIED BY 'mythtv';
> % is the one that would allow the user to connect from a remote location
> 
> You say root can connect remotely so I do not thing the bind address needs
> to be changed.
> 
> 
>> -Original Message-
>> From: [EMAIL PROTECTED] [mailto:mythtv-users-
>> [EMAIL PROTECTED] On Behalf Of Michael Jones
>> Sent: Friday, July 01, 2005 8:20 PM
>> To: Discussion about mythtv
>> Subject: Re: [mythtv-users] Frontends can't find database, can't connect
>> 
>> Ok.. this is getting a little frustrating.. Sorry if this is a little
>> disjointed.. but my brain is bouncing around in my head trying to wrap
>> itself around this properly ;)
>> 
>> 
>> 
>> Note:
>> 
>>> From the machine running the masterbackend I can only access the
database
>> as
>> root.. not mythtv as I am assuming I should be.
>> 
>> Everything *SEEMS* to work as root.. but maybe not really.
>> 
>> I can't log into mysql from the command line at all as 'mythtv'
>> 
>> 
>> Transcript: ...
>> 
>> [EMAIL PROTECTED] database]# mysql -u root -p mythconverg
>> Enter password:
>> Reading table information for completion of table and column names
>> You can turn off this feature to get a quicker startup with -A
>> 
>> Welcome to the MySQL monitor.  Commands end with ; or \g.
>> Your MySQL connection id is 84 to server version: 3.23.58
>> 
>> Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
>> 
>> mysql> select * from user where User = 'mythtv';
>> ERROR 1146: Table 'mythconverg.user' doesn't exist
>> mysql>
>> 
>> Kinda weird.  Mysql says I don't have a table called 'user' (tried
'users'
>> too)
>> 
>> 
>> /etc/my.cnf file
>> 
>> [mysqld]
>> datadir=/var/lib/mysql
>> socket=/var/lib/mysql/mysql.sock
>> set-variable = key_buffer = 16M
>> set-variable = table_cache = 128
>> set-variable = sort_buffer = 2M
>> set-variable = myisam_sort_buffer_size = 8M
>> #bind-address = 192.168.0.40
>> 
>> [mysql.server]
>> user=mysql
>> basedir=/var/lib
>> 
>> [safe_mysqld]
>> err-log=/var/log/mysqld.log
>> pid-file=/var/run/mysqld/mysqld.pid
>> 
>> if uncomment the bind-address entry into the mysqld area, mysqld won't
>> start
>> up.  Is this a mysql4 command.. I'm still on 3 it appears.  I've tried
>> different variations with no changes
>> 
>> The only attempt that allowed me to start mysqld was to put the
>> bind-address=x.x.x.x in the [mysql.server] section, but it didn't change
>> the
>> final outcome at all.
>> 
>> the error that I get from the mythtv-setup and mythfrontend entries are:
>> 
>> QMYSQL3: Unable to connect
>> Database Error Was:
>> Access denied for user: '[EMAIL PROTECTED]' (Using
>> password:
>> YES)
>> 
>> I get the same result from other machines (a Windows machine running
>> WinMythtv and a MacOSX 10.4 (tiger) machine running MacMythtv frontend.
>> 
>> I've also tried setting it to connect as root (just for giggles) with the
>> same result.
>> 
>> I've also tried the security setup described in
>> http://www.mythtv.org/docs/mythtv-HOWTO-6.html#ss6.2 with no joy (Tried
>> all
>> 3 levels.. none, domain level security and ip address security).
>> 
>> It almost seems as though the mythconverg database is all fubar'd.. but
it
>> might be something simple..
>> 
>> Help?
>> 
>> - Michael
>> 
>> 
>>> From: Korey Fort <[EMAIL PROTECTED]>
>>> Reply-To: Discussion about mythtv 
>>> Date: Fri, 1 Jul 2005 03:09:15 -0500
>>> To: 'Discussion about mythtv' 
>>> Subject: RE: [mythtv-users] Frontends can't find database, can't connect
>>> 
>>> 
>>> You can try mysqlaccess mythtv to see what access mythtv has or
>>>  Log into mysql then use mysql; select * from user where User =
>> 'mythtv';
>>> This will show you whe

Re: [mythtv-users] Frontends can't find database, can't connect

2005-07-01 Thread Michael Jones
Marc, 

Thanks.. I'll give that part a shot..

However, 

Acutally I can only connect to the mysql database LOCALLY as root.. I can't
do squat from a remote front end (root or otherwise). .

I may have to dig into the bind addresses or something..

- Michael


> From: Marc Tousignant <[EMAIL PROTECTED]>
> Reply-To: Discussion about mythtv 
> Date: Fri, 1 Jul 2005 21:34:45 -0400
> To: 'Discussion about mythtv' 
> Subject: RE: [mythtv-users] Frontends can't find database, can't connect
> 
> Mike,
> 
> Follow this
> yggdrasil ~ # mysql -uroot -p
> mysql> show databases;
> mysql> use mysql;
> mysql> select * from user where User = 'mythtv';
> 
> you should see atleast 2 records
> | % | mythtv
> | localhost | mythtv
> 
> If you do not see the % one create a the user
> GRANT USAGE ON *.* TO 'mythtv'@'%' IDENTIFIED BY 'mythtv';
> % is the one that would allow the user to connect from a remote location
> 
> You say root can connect remotely so I do not thing the bind address needs
> to be changed.
> 
> 
>> -Original Message-
>> From: [EMAIL PROTECTED] [mailto:mythtv-users-
>> [EMAIL PROTECTED] On Behalf Of Michael Jones
>> Sent: Friday, July 01, 2005 8:20 PM
>> To: Discussion about mythtv
>> Subject: Re: [mythtv-users] Frontends can't find database, can't connect
>> 
>> Ok.. this is getting a little frustrating.. Sorry if this is a little
>> disjointed.. but my brain is bouncing around in my head trying to wrap
>> itself around this properly ;)
>> 
>> 
>> 
>> Note:
>> 
>>> From the machine running the masterbackend I can only access the database
>> as
>> root.. not mythtv as I am assuming I should be.
>> 
>> Everything *SEEMS* to work as root.. but maybe not really.
>> 
>> I can't log into mysql from the command line at all as 'mythtv'
>> 
>> 
>> Transcript: ...
>> 
>> [EMAIL PROTECTED] database]# mysql -u root -p mythconverg
>> Enter password:
>> Reading table information for completion of table and column names
>> You can turn off this feature to get a quicker startup with -A
>> 
>> Welcome to the MySQL monitor.  Commands end with ; or \g.
>> Your MySQL connection id is 84 to server version: 3.23.58
>> 
>> Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
>> 
>> mysql> select * from user where User = 'mythtv';
>> ERROR 1146: Table 'mythconverg.user' doesn't exist
>> mysql>
>> 
>> Kinda weird.  Mysql says I don't have a table called 'user' (tried 'users'
>> too)
>> 
>> 
>> /etc/my.cnf file
>> 
>> [mysqld]
>> datadir=/var/lib/mysql
>> socket=/var/lib/mysql/mysql.sock
>> set-variable = key_buffer = 16M
>> set-variable = table_cache = 128
>> set-variable = sort_buffer = 2M
>> set-variable = myisam_sort_buffer_size = 8M
>> #bind-address = 192.168.0.40
>> 
>> [mysql.server]
>> user=mysql
>> basedir=/var/lib
>> 
>> [safe_mysqld]
>> err-log=/var/log/mysqld.log
>> pid-file=/var/run/mysqld/mysqld.pid
>> 
>> if uncomment the bind-address entry into the mysqld area, mysqld won't
>> start
>> up.  Is this a mysql4 command.. I'm still on 3 it appears.  I've tried
>> different variations with no changes
>> 
>> The only attempt that allowed me to start mysqld was to put the
>> bind-address=x.x.x.x in the [mysql.server] section, but it didn't change
>> the
>> final outcome at all.
>> 
>> the error that I get from the mythtv-setup and mythfrontend entries are:
>> 
>> QMYSQL3: Unable to connect
>> Database Error Was:
>> Access denied for user: '[EMAIL PROTECTED]' (Using
>> password:
>> YES)
>> 
>> I get the same result from other machines (a Windows machine running
>> WinMythtv and a MacOSX 10.4 (tiger) machine running MacMythtv frontend.
>> 
>> I've also tried setting it to connect as root (just for giggles) with the
>> same result.
>> 
>> I've also tried the security setup described in
>> http://www.mythtv.org/docs/mythtv-HOWTO-6.html#ss6.2 with no joy (Tried
>> all
>> 3 levels.. none, domain level security and ip address security).
>> 
>> It almost seems as though the mythconverg database is all fubar'd.. but it
>> might be something simple..
>> 
>> Help?
>> 
>> - Michael
>> 
>> 
>>> From: Korey Fort <[EMAIL PROTECTED]>
>>> Reply-To: Discussion about mythtv 
>>> Date: Fri, 1 Jul 2005 03:09:15 -0500
>>> To: 'Discussion about mythtv' 
>>> Subject: RE: [mythtv-users] Frontends can't find database, can't connect
>>> 
>>> 
>>> You can try mysqlaccess mythtv to see what access mythtv has or
>>>  Log into mysql then use mysql; select * from user where User =
>> 'mythtv';
>>> This will show you where mythtv is allowed to connect from.
>>> 
>>> -Original Message-
>>> From: [EMAIL PROTECTED]
>>> [mailto:[EMAIL PROTECTED] On Behalf Of Michael Jones
>>> Sent: Friday, July 01, 2005 2:30 AM
>>> To: Discussion about mythtv
>>> Subject: [mythtv-users] Frontends can't find database, can't connect
>>> 
>>> When I try to configure 

Re: [mythtv-users] MythTV editing and home key

2005-07-01 Thread shadestalker
On 7/1/05, Fedor Pikus <[EMAIL PROTECTED]> wrote:
> A couple times I accidentally hit "Home" key while editing recordings.
> The result was that the edit bar was cleared of all cut points, and
> frontend froze, I had to kill -9 it.
> 
> What's the key supposed to do, and why would that action hang frontend?

According to the keyboard commands list at 
http://mythtv.org/docs/mythtv-HOWTO-11.html#ss11.1 the Home key isn't
defined for the editing function.
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Remote to use w/ EPIA M10000

2005-07-01 Thread MagicITX
On 6/30/05, Michael Carland <[EMAIL PROTECTED]> wrote:
> 
> On Jun 30, 2005, at 8:54 PM, Pane, Chris wrote:
> 
> 
> > What are people with EPIA m1 doing for remotes.
> 
> 
> I built a serial LIRC receiver, and plugged it into the header on the
> M1 board. I replaced the power button/disk light/power light board
> with a custom board, and lined the IR receiver up with the hole for the
> disk drive, since my frontend is diskless.
> 
> If I was to do it over again, I'd buy an lirc supported usb receiver
> (or wireless keyboard), and save some time and grey hair. I actually
> struggled most with mounting it in the case, the building of the
> circuit wasn't too bad.
> 
> -Michael
> 
> 
> 
> ___
> mythtv-users mailing list
> mythtv-users@mythtv.org
> http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users
> 
> 
> 

We go the wireless keyboard with JP1 programmed remote that emulates
the keyboard.  One ir receiver that gives you a keyboard if you need
it and the remote.  If you get the ir receiver for an Adesso wireless
keyboard, we have the programming file on our website for a JP1 remote
of your choice.

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


Re: [mythtv-users] Overwhelmed

2005-07-01 Thread Chris Lopeman






PAUL WILLIAMSON wrote:

  

  

  "Mark Knecht" <[EMAIL PROTECTED]> 06/30/05 11:48 AM >>>
  

  

On 6/30/05, PAUL WILLIAMSON <[EMAIL PROTECTED]> wrote:


  

  
[EMAIL PROTECTED] 06/29/05 10:09 PM >>>

  

  


  
I am planning on a DVD player and an HDTV antenna.  I know a
lot of people recommend cable or satellite.

  
  Don't get a DVD player.  Get a DVD drive for your Myth box.
  

Maybe, but only for the kid's roomsthe picture from my DVD

  
  drives
  
  
with any of the Linux players I've tried is nowhere near as good as

  
  my
  
  
Denon DVD player. If you care about movies get a really top notch
player and enjoy.

Just my 2 cents,
Mark

  
  
I just got tired of having to replace the media.  I have no more DVDs 
to deal with, except the ones I rent.  And those that are scratched 
enough that if I really cared, I'd buy it, hook up my trusty Denon 
DVD-5910 (which has a nice layer of dust on it), and watch it.

Oh, then I'd rip it and put it in myth as either an ISO or an mpg 
and dare anyone to tell the difference.  The convenience of 
not having to search around for it, while also being able to 
watch it on any TV where I have a myth frontend FAR outweighs 
the picture quality I think might have an advantage by playing 
right through the DVD player itself.

Paul

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

Thank you all for your responses.  This has been extremely helpful and
the fog is starting to clear. 

Paul thanks for your suggestion of dumping my 300 cd carousel.  I like
the carousel but I like the idea better and it should only take about
150 gig hd to do it.  Does mythtv or some addon piece of software
automatically download all the track title and artist info and allow
you
to search your CDs on HD to find and play music?

Also Paul, you stated at one time that "you dare anybody to tell the
difference between a dedicated DVD and MythTV playing it".  Is this
from the DVD drive or after you copied it ot HD.  Later you mention
that HD is worth the image loss.  Please clarify.  Somebody mentioned
that Linux DVD players are not up to par.  If you found one that is
please inform us.  We rent a lot of DVD and I can't see copying them
all to HD before playing them.  

Thanks again for all the help,

Chris Lopeman
     


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


RE: [mythtv-users] Frontends can't find database, can't connect

2005-07-01 Thread Marc Tousignant
Mike,

Follow this
yggdrasil ~ # mysql -uroot -p
mysql> show databases;
mysql> use mysql;
mysql> select * from user where User = 'mythtv';

you should see atleast 2 records
| % | mythtv
| localhost | mythtv

If you do not see the % one create a the user
GRANT USAGE ON *.* TO 'mythtv'@'%' IDENTIFIED BY 'mythtv';
% is the one that would allow the user to connect from a remote location

You say root can connect remotely so I do not thing the bind address needs
to be changed.


> -Original Message-
> From: [EMAIL PROTECTED] [mailto:mythtv-users-
> [EMAIL PROTECTED] On Behalf Of Michael Jones
> Sent: Friday, July 01, 2005 8:20 PM
> To: Discussion about mythtv
> Subject: Re: [mythtv-users] Frontends can't find database, can't connect
> 
> Ok.. this is getting a little frustrating.. Sorry if this is a little
> disjointed.. but my brain is bouncing around in my head trying to wrap
> itself around this properly ;)
> 
> 
> 
> Note:
> 
> >From the machine running the masterbackend I can only access the database
> as
> root.. not mythtv as I am assuming I should be.
> 
> Everything *SEEMS* to work as root.. but maybe not really.
> 
> I can't log into mysql from the command line at all as 'mythtv'
> 
> 
> Transcript: ...
> 
> [EMAIL PROTECTED] database]# mysql -u root -p mythconverg
> Enter password:
> Reading table information for completion of table and column names
> You can turn off this feature to get a quicker startup with -A
> 
> Welcome to the MySQL monitor.  Commands end with ; or \g.
> Your MySQL connection id is 84 to server version: 3.23.58
> 
> Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
> 
> mysql> select * from user where User = 'mythtv';
> ERROR 1146: Table 'mythconverg.user' doesn't exist
> mysql>
> 
> Kinda weird.  Mysql says I don't have a table called 'user' (tried 'users'
> too)
> 
> 
> /etc/my.cnf file
> 
> [mysqld]
> datadir=/var/lib/mysql
> socket=/var/lib/mysql/mysql.sock
> set-variable = key_buffer = 16M
> set-variable = table_cache = 128
> set-variable = sort_buffer = 2M
> set-variable = myisam_sort_buffer_size = 8M
> #bind-address = 192.168.0.40
> 
> [mysql.server]
> user=mysql
> basedir=/var/lib
> 
> [safe_mysqld]
> err-log=/var/log/mysqld.log
> pid-file=/var/run/mysqld/mysqld.pid
> 
> if uncomment the bind-address entry into the mysqld area, mysqld won't
> start
> up.  Is this a mysql4 command.. I'm still on 3 it appears.  I've tried
> different variations with no changes
> 
> The only attempt that allowed me to start mysqld was to put the
> bind-address=x.x.x.x in the [mysql.server] section, but it didn't change
> the
> final outcome at all.
> 
> the error that I get from the mythtv-setup and mythfrontend entries are:
> 
> QMYSQL3: Unable to connect
> Database Error Was:
> Access denied for user: '[EMAIL PROTECTED]' (Using
> password:
> YES)
> 
> I get the same result from other machines (a Windows machine running
> WinMythtv and a MacOSX 10.4 (tiger) machine running MacMythtv frontend.
> 
> I've also tried setting it to connect as root (just for giggles) with the
> same result.
> 
> I've also tried the security setup described in
> http://www.mythtv.org/docs/mythtv-HOWTO-6.html#ss6.2 with no joy (Tried
> all
> 3 levels.. none, domain level security and ip address security).
> 
> It almost seems as though the mythconverg database is all fubar'd.. but it
> might be something simple..
> 
> Help?
> 
> - Michael
> 
> 
> > From: Korey Fort <[EMAIL PROTECTED]>
> > Reply-To: Discussion about mythtv 
> > Date: Fri, 1 Jul 2005 03:09:15 -0500
> > To: 'Discussion about mythtv' 
> > Subject: RE: [mythtv-users] Frontends can't find database, can't connect
> >
> >
> > You can try mysqlaccess mythtv to see what access mythtv has or
> >  Log into mysql then use mysql; select * from user where User =
> 'mythtv';
> > This will show you where mythtv is allowed to connect from.
> >
> > -Original Message-
> > From: [EMAIL PROTECTED]
> > [mailto:[EMAIL PROTECTED] On Behalf Of Michael Jones
> > Sent: Friday, July 01, 2005 2:30 AM
> > To: Discussion about mythtv
> > Subject: [mythtv-users] Frontends can't find database, can't connect
> >
> > When I try to configure a remote frontend (I've tried another FC3 box, a
> Mac
> > OSX box.. haven't tried the Windows front end yet) it tells me that it
> can't
> > find the database.
> >
> > The messages that come up on screen say that the current user isn't
> allowed
> > to connect to the remote machine..
> >
> > I'm not sure where to start looking for a solution to this.
> >
> > Is there some portion of mysql that may not be running (i.e. the
> server?)
> > when mysqld is started?
> >
> > Any ideas.
> >
> > Thanks Much.
> >
> > - Michael
> >
> >
> >
> >
> > ___
> > mythtv-users mailing list
> > mythtv-user

Re: [mythtv-users] Mythstream Tips Tricks

2005-07-01 Thread Phill Edwards
> I tried to install Mythstream a few weekends ago and it refused to show up in 
> Mythtv. I followed all the instructions and kept thinking it was a plugin 
> issue. It 
> wasn't. My Myththemes was messed up. I cleaned and re-installed Myththemes, 
>made the required additions to lirary.xml and media_settings.xml and it works 
>perfectly now. Tips for getting streams. there are 2 websites I found which 
>contain lots of international tv and radio streams. The first one 
>http://www.vtuner.com has literally 1000's of streams. Use this link for basic 
>instructions http://66.102.7.104/search?
>q=cache:Mp65gFdh6MAJ:mysettopbox.tv/phpBB2/viewtopic.php%3Fp%
>3D20239%26+mythstream&hl=en&start=8&lr=lang_en The original post on 
>mysettopbox.tv seems to be missing. The 2nd big site is wwitv.com. It has TV 
>sites from around the world. The trick here is-click on a link>a small popup 
>window will open, it is an .asx file with redirect info in it. Write
the name in the
>title bar down. Run wget http://wwitv.com/_tv/.asx That will
download the file
>to your Mythbox. Run vi .asx and the 'real' stream info is there.
add it to
>streams.res in /home/mythtv/.mythtv/mythstream and you're done. This thing is 
>GREAT! I've been listening to Rockland Radio for 3 days straight.
>

Does anyone know whether it's possible to put the ABC Australia
broadband streams into mythstream. They have a page at
http://www.abc.net.au/broadband/default.htm which has on demand news,
sport and business, but I can't work out how to determine what URL to
put into streams.res. If anyone has already done this or knows how to,
could you please share it?

Also, the instructions at the link given above talk abuot using real
player and ethereal. Does this assume that real and ethereal are on
the same box? I have real on a windows PC and could put ethereal on my
linux internet gateway - would that allow me to find the real rtsp://
URLs for real content?

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


Re: [mythtv-users] [Slightly OT] Recommendations for Joysticks?

2005-07-01 Thread Ross Campbell
> looking at getting a joystick for running the games, I'd love to get
> something close to an arcade style joystick (big frogger and contra fan)
> and was wondering if anyone had some recommendations.

I have a "Super Joybox 5" USB adapter that supports up to 4
playstation controllers.
http://www.spotted-horse.com/product_info.php?products_id=36042

It works pretty much out of the box, and since I had extra PSX
controllers gathering dust, it was an easy decision.

With xmame, you need to enable the i386 joystick type in your build
and the options and then you need to select the analog or digital mode
that corresponds to what they game you're trying to play expects for
input.

The button order is different than what you'd expect from a
playstation controller. Button one is "triangle" at the top, with
2,3,4 going clockwise from there. Next buton is L3, and so on.

For real arcade feel, I've used X-Arcade before, and would definitely
recommend them - http://www.x-arcade.com/products.shtml

Don't know how much of WAF a giant arcade joystick on the floor of the
living room is going to get you though ;)


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


RE: [mythtv-users] Frontends can't find database, can't connect

2005-07-01 Thread Korey Fort
Mythtv lacks permission to log in. Try reading this:
http://dev.mysql.com/doc/mysql/en/adding-users.html


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Michael Jones
Sent: Friday, July 01, 2005 7:20 PM
To: Discussion about mythtv
Subject: Re: [mythtv-users] Frontends can't find database, can't connect

Ok.. this is getting a little frustrating.. Sorry if this is a little
disjointed.. but my brain is bouncing around in my head trying to wrap
itself around this properly ;)



Note:

>From the machine running the masterbackend I can only access the database
as
root.. not mythtv as I am assuming I should be.

Everything *SEEMS* to work as root.. but maybe not really.

I can't log into mysql from the command line at all as 'mythtv'


Transcript: ... 

[EMAIL PROTECTED] database]# mysql -u root -p mythconverg
Enter password: 
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 84 to server version: 3.23.58

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql> select * from user where User = 'mythtv';
ERROR 1146: Table 'mythconverg.user' doesn't exist
mysql> 

Kinda weird.  Mysql says I don't have a table called 'user' (tried 'users'
too)


/etc/my.cnf file

[mysqld]
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
set-variable = key_buffer = 16M
set-variable = table_cache = 128
set-variable = sort_buffer = 2M
set-variable = myisam_sort_buffer_size = 8M
#bind-address = 192.168.0.40

[mysql.server]
user=mysql
basedir=/var/lib

[safe_mysqld]
err-log=/var/log/mysqld.log
pid-file=/var/run/mysqld/mysqld.pid

if uncomment the bind-address entry into the mysqld area, mysqld won't start
up.  Is this a mysql4 command.. I'm still on 3 it appears.  I've tried
different variations with no changes

The only attempt that allowed me to start mysqld was to put the
bind-address=x.x.x.x in the [mysql.server] section, but it didn't change the
final outcome at all.

the error that I get from the mythtv-setup and mythfrontend entries are:

QMYSQL3: Unable to connect
Database Error Was:
Access denied for user: '[EMAIL PROTECTED]' (Using password:
YES)

I get the same result from other machines (a Windows machine running
WinMythtv and a MacOSX 10.4 (tiger) machine running MacMythtv frontend.

I've also tried setting it to connect as root (just for giggles) with the
same result. 

I've also tried the security setup described in
http://www.mythtv.org/docs/mythtv-HOWTO-6.html#ss6.2 with no joy (Tried all
3 levels.. none, domain level security and ip address security).

It almost seems as though the mythconverg database is all fubar'd.. but it
might be something simple..

Help? 

- Michael 


> From: Korey Fort <[EMAIL PROTECTED]>
> Reply-To: Discussion about mythtv 
> Date: Fri, 1 Jul 2005 03:09:15 -0500
> To: 'Discussion about mythtv' 
> Subject: RE: [mythtv-users] Frontends can't find database, can't connect
> 
> 
> You can try mysqlaccess mythtv to see what access mythtv has or
>  Log into mysql then use mysql; select * from user where User = 'mythtv';
> This will show you where mythtv is allowed to connect from.
> 
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On Behalf Of Michael Jones
> Sent: Friday, July 01, 2005 2:30 AM
> To: Discussion about mythtv
> Subject: [mythtv-users] Frontends can't find database, can't connect
> 
> When I try to configure a remote frontend (I've tried another FC3 box, a
Mac
> OSX box.. haven't tried the Windows front end yet) it tells me that it
can't
> find the database.
> 
> The messages that come up on screen say that the current user isn't
allowed
> to connect to the remote machine..
> 
> I'm not sure where to start looking for a solution to this.
> 
> Is there some portion of mysql that may not be running (i.e. the server?)
> when mysqld is started?
> 
> Any ideas. 
> 
> Thanks Much. 
> 
> - Michael
> 
> 
> 
> 
> ___
> mythtv-users mailing list
> mythtv-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] Frontends can't find database, can't connect

2005-07-01 Thread Michael Jones
Just another note..

I did use http://wilsonet.com/mythtv/fcmyth.php#mysql to set this up...

I did receive the error that is mentioned here..

Could this be the issue?






> From: Michael Jones <[EMAIL PROTECTED]>
> Reply-To: Discussion about mythtv 
> Date: Fri, 01 Jul 2005 17:19:47 -0700
> To: Discussion about mythtv 
> Subject: Re: [mythtv-users] Frontends can't find database, can't connect
> 
> Ok.. this is getting a little frustrating.. Sorry if this is a little
> disjointed.. but my brain is bouncing around in my head trying to wrap
> itself around this properly ;)
> 
> 
> 
> Note:
> 
>> From the machine running the masterbackend I can only access the database as
> root.. not mythtv as I am assuming I should be.
> 
> Everything *SEEMS* to work as root.. but maybe not really.
> 
> I can't log into mysql from the command line at all as 'mythtv'
> 
> 
> Transcript: ... 
> 
> [EMAIL PROTECTED] database]# mysql -u root -p mythconverg
> Enter password: 
> Reading table information for completion of table and column names
> You can turn off this feature to get a quicker startup with -A
> 
> Welcome to the MySQL monitor.  Commands end with ; or \g.
> Your MySQL connection id is 84 to server version: 3.23.58
> 
> Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
> 
> mysql> select * from user where User = 'mythtv';
> ERROR 1146: Table 'mythconverg.user' doesn't exist
> mysql> 
> 
> Kinda weird.  Mysql says I don't have a table called 'user' (tried 'users'
> too)
> 
> 
> /etc/my.cnf file
> 
> [mysqld]
> datadir=/var/lib/mysql
> socket=/var/lib/mysql/mysql.sock
> set-variable = key_buffer = 16M
> set-variable = table_cache = 128
> set-variable = sort_buffer = 2M
> set-variable = myisam_sort_buffer_size = 8M
> #bind-address = 192.168.0.40
> 
> [mysql.server]
> user=mysql
> basedir=/var/lib
> 
> [safe_mysqld]
> err-log=/var/log/mysqld.log
> pid-file=/var/run/mysqld/mysqld.pid
> 
> if uncomment the bind-address entry into the mysqld area, mysqld won't start
> up.  Is this a mysql4 command.. I'm still on 3 it appears.  I've tried
> different variations with no changes
> 
> The only attempt that allowed me to start mysqld was to put the
> bind-address=x.x.x.x in the [mysql.server] section, but it didn't change the
> final outcome at all.
> 
> the error that I get from the mythtv-setup and mythfrontend entries are:
> 
> QMYSQL3: Unable to connect
> Database Error Was:
> Access denied for user: '[EMAIL PROTECTED]' (Using password:
> YES)
> 
> I get the same result from other machines (a Windows machine running
> WinMythtv and a MacOSX 10.4 (tiger) machine running MacMythtv frontend.
> 
> I've also tried setting it to connect as root (just for giggles) with the
> same result. 
> 
> I've also tried the security setup described in
> http://www.mythtv.org/docs/mythtv-HOWTO-6.html#ss6.2 with no joy (Tried all
> 3 levels.. none, domain level security and ip address security).
> 
> It almost seems as though the mythconverg database is all fubar'd.. but it
> might be something simple..
> 
> Help? 
> 
> - Michael 
> 
> 
>> From: Korey Fort <[EMAIL PROTECTED]>
>> Reply-To: Discussion about mythtv 
>> Date: Fri, 1 Jul 2005 03:09:15 -0500
>> To: 'Discussion about mythtv' 
>> Subject: RE: [mythtv-users] Frontends can't find database, can't connect
>> 
>> 
>> You can try mysqlaccess mythtv to see what access mythtv has or
>>  Log into mysql then use mysql; select * from user where User = 'mythtv';
>> This will show you where mythtv is allowed to connect from.
>> 
>> -Original Message-
>> From: [EMAIL PROTECTED]
>> [mailto:[EMAIL PROTECTED] On Behalf Of Michael Jones
>> Sent: Friday, July 01, 2005 2:30 AM
>> To: Discussion about mythtv
>> Subject: [mythtv-users] Frontends can't find database, can't connect
>> 
>> When I try to configure a remote frontend (I've tried another FC3 box, a Mac
>> OSX box.. haven't tried the Windows front end yet) it tells me that it can't
>> find the database.
>> 
>> The messages that come up on screen say that the current user isn't allowed
>> to connect to the remote machine..
>> 
>> I'm not sure where to start looking for a solution to this.
>> 
>> Is there some portion of mysql that may not be running (i.e. the server?)
>> when mysqld is started?
>> 
>> Any ideas. 
>> 
>> Thanks Much. 
>> 
>> - Michael
>> 
>> 
>> 
>> 
>> ___
>> mythtv-users mailing list
>> mythtv-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 mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-

Re: [mythtv-users] Frontends can't find database, can't connect

2005-07-01 Thread Michael Jones
Ok.. this is getting a little frustrating.. Sorry if this is a little
disjointed.. but my brain is bouncing around in my head trying to wrap
itself around this properly ;)



Note:

>From the machine running the masterbackend I can only access the database as
root.. not mythtv as I am assuming I should be.

Everything *SEEMS* to work as root.. but maybe not really.

I can't log into mysql from the command line at all as 'mythtv'


Transcript: ... 

[EMAIL PROTECTED] database]# mysql -u root -p mythconverg
Enter password: 
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 84 to server version: 3.23.58

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql> select * from user where User = 'mythtv';
ERROR 1146: Table 'mythconverg.user' doesn't exist
mysql> 

Kinda weird.  Mysql says I don't have a table called 'user' (tried 'users'
too)


/etc/my.cnf file

[mysqld]
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
set-variable = key_buffer = 16M
set-variable = table_cache = 128
set-variable = sort_buffer = 2M
set-variable = myisam_sort_buffer_size = 8M
#bind-address = 192.168.0.40

[mysql.server]
user=mysql
basedir=/var/lib

[safe_mysqld]
err-log=/var/log/mysqld.log
pid-file=/var/run/mysqld/mysqld.pid

if uncomment the bind-address entry into the mysqld area, mysqld won't start
up.  Is this a mysql4 command.. I'm still on 3 it appears.  I've tried
different variations with no changes

The only attempt that allowed me to start mysqld was to put the
bind-address=x.x.x.x in the [mysql.server] section, but it didn't change the
final outcome at all.

the error that I get from the mythtv-setup and mythfrontend entries are:

QMYSQL3: Unable to connect
Database Error Was:
Access denied for user: '[EMAIL PROTECTED]' (Using password:
YES)

I get the same result from other machines (a Windows machine running
WinMythtv and a MacOSX 10.4 (tiger) machine running MacMythtv frontend.

I've also tried setting it to connect as root (just for giggles) with the
same result. 

I've also tried the security setup described in
http://www.mythtv.org/docs/mythtv-HOWTO-6.html#ss6.2 with no joy (Tried all
3 levels.. none, domain level security and ip address security).

It almost seems as though the mythconverg database is all fubar'd.. but it
might be something simple..

Help? 

- Michael 


> From: Korey Fort <[EMAIL PROTECTED]>
> Reply-To: Discussion about mythtv 
> Date: Fri, 1 Jul 2005 03:09:15 -0500
> To: 'Discussion about mythtv' 
> Subject: RE: [mythtv-users] Frontends can't find database, can't connect
> 
> 
> You can try mysqlaccess mythtv to see what access mythtv has or
>  Log into mysql then use mysql; select * from user where User = 'mythtv';
> This will show you where mythtv is allowed to connect from.
> 
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On Behalf Of Michael Jones
> Sent: Friday, July 01, 2005 2:30 AM
> To: Discussion about mythtv
> Subject: [mythtv-users] Frontends can't find database, can't connect
> 
> When I try to configure a remote frontend (I've tried another FC3 box, a Mac
> OSX box.. haven't tried the Windows front end yet) it tells me that it can't
> find the database.
> 
> The messages that come up on screen say that the current user isn't allowed
> to connect to the remote machine..
> 
> I'm not sure where to start looking for a solution to this.
> 
> Is there some portion of mysql that may not be running (i.e. the server?)
> when mysqld is started?
> 
> Any ideas. 
> 
> Thanks Much. 
> 
> - Michael
> 
> 
> 
> 
> ___
> mythtv-users mailing list
> mythtv-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] MythTV Database problem - Credits.MYI

2005-07-01 Thread Scott Carr

Bruce Markey wrote:


Scott Carr wrote:

I have been having problems with MythFillDatabase taking FOREVER to 
input the records.  This process used to take about 5 minutes, now it 
takes close to 24 hours.


I noticed that my Credits.myi has 1400 records and my people 
table only has 80 records.  Is there something going on here?


If I try to list the Credits.myi table it takes forever.




$ mysql -u mythtv -pmythtv mythconverg
mysql> truncate table program;
mysql> truncate table programrating;
mysql> truncate table people;
mysql> truncate table credits;
mysql> quit
$ mysqlcheck -r -u mythtv -pmythtv mythconverg
$ mythfilldatabase


Thanks, this worked like a charm.

--
Scott Carr
OpenOffice.org
Documentation Maintainer
http://documentation.openoffice.org

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


Re: [mythtv-users] PVR250

2005-07-01 Thread Dewey Smolka
Are you sure you put the right card in mythtvsetup? Start mythtvsetup
and check capture card settings -> card type. This should be set to
hardware mpeg-2 card.

You shoudn't have to change any settings in mythfrontend to get the 250 working.
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] PVR250

2005-07-01 Thread Michael Haas

[EMAIL PROTECTED] wrote:

Hi!

Please go back to the setup program and make sure that you've defined 
your PVR 250 correctly. I guess that you entered 'standard v4l' instead 
of 'pvr x50/500' as the card type.




2005-07-02 00:14:22.041 Changing from None to WatchingLiveTV
2005-07-02 00:14:22.075 Unknown video codec
2005-07-02 00:14:22.075 Please go into the TV Settings, Recording Profiles and
2005-07-02 00:14:22.075 setup the four 'Software Encoders' profiles.
2005-07-02 00:14:22.076 Assuming RTjpeg for now.
2005-07-02 00:14:22.076 NVR: Error, unknown audio codec
2005-07-02 00:14:22.087 NVR: Won't work with the streaming interface, falling
back
VIDOCGMBUF:: Argument invalide
2005-07-02 00:14:22.091 TVRec: Recording Prematurely Stopped



 


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


[mythtv-users] PVR250

2005-07-01 Thread mcffeyel
Dear users,

I am very experienced with Linux, but brand new with Mythtv.

I am using a PVR-250 card. This card works fine under linux, using
the appropriate drivers (ie I can see the video input in a window using
mplayer -vo xv /dev/video0).

I did the configuration using mythtvsetup, as described in the howto.

I did configure the mpeg-2 encoders in the front-end.

But LiveTV does not work, the front-end complains with :

2005-07-02 00:14:22.041 Changing from None to WatchingLiveTV
2005-07-02 00:14:22.075 Unknown video codec
2005-07-02 00:14:22.075 Please go into the TV Settings, Recording Profiles and
2005-07-02 00:14:22.075 setup the four 'Software Encoders' profiles.
2005-07-02 00:14:22.076 Assuming RTjpeg for now.
2005-07-02 00:14:22.076 NVR: Error, unknown audio codec
2005-07-02 00:14:22.087 NVR: Won't work with the streaming interface, falling
back
VIDOCGMBUF:: Argument invalide
2005-07-02 00:14:22.091 TVRec: Recording Prematurely Stopped


I tried to look for these "Software Encoders", but I do not have any of
those. I only see "MPEG-2 Encoders (PVR-250,PVR-350)" and "Encodeurs".

What should I do ?

Thx, Frederic.

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


[mythtv-users] tv_grab_za not in mythtvsetup

2005-07-01 Thread Deon Bredenhann
Hi there

I used Jarod's guide in setting up my box with a PVR350.

Now the xmltv package includes tv_grab_za, which I tested, and I get
program listings. The problem is that I cannot select tv_grab_za in
mythtvsetup.
Any idea on how I can get around this problem?

Thanx a mil.


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


Re: [mythtv-users] Frontends can't find database, can't connect

2005-07-01 Thread Michael Jones
Nope.. Didn't find that one the first time I looked.

Thanks for the link.

- Michael


> From: Donavan Stanley <[EMAIL PROTECTED]>
> Reply-To: Donavan Stanley <[EMAIL PROTECTED]>, Discussion about mythtv
> 
> Date: Fri, 1 Jul 2005 12:42:05 -0400
> To: Discussion about mythtv 
> Subject: Re: [mythtv-users] Frontends can't find database, can't connect
> 
> On 7/1/05, Michael Jones <[EMAIL PROTECTED]> wrote:
>> When I try to configure a remote frontend (I've tried another FC3 box, a Mac
>> OSX box.. haven't tried the Windows front end yet) it tells me that it can't
>> find the database.
>> 
>> The messages that come up on screen say that the current user isn't allowed
>> to connect to the remote machine..
> 
> Have you read: http://www.mythtv.org/docs/mythtv-HOWTO-6.html#ss6.2
> especially the section titled "Modifying access to the MySQL database
> for multiple systems"?
> ___
> mythtv-users mailing list
> mythtv-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] [Slightly OT] Recommendations for Joysticks?

2005-07-01 Thread Matt Gorecki
I just bought an USB adapter for a Playstation 2 Controller.  I'm not 
sure how well it'll work for a game like frogger, but everything else 
it's great.


- matt

[EMAIL PROTECTED] wrote:


Hi all.

So I've got everything up and running brilliantly.  A big thanks to Jarod
and his howto and this list (I'm a pretty persistant lurker).  Anyway I'm
looking at getting a joystick for running the games, I'd love to get
something close to an arcade style joystick (big frogger and contra fan)
and was wondering if anyone had some recommendations.

thanks!

- mike

___
mythtv-users mailing list
mythtv-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] mythfrontend segmentation fault

2005-07-01 Thread Chad Sims
I saw somethign similiar with XvMC enabled. Myth would crash when starting 
to watch tv.


- Original Message - 
From: "Sven Richter" <[EMAIL PROTECTED]>

To: "Discussion about mythtv" 
Sent: Friday, July 01, 2005 1:54 PM
Subject: [mythtv-users] mythfrontend segmentation fault


___
mythtv-users mailing list
mythtv-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] [Slightly OT] Recommendations for Joysticks?

2005-07-01 Thread mike
Hi all.

So I've got everything up and running brilliantly.  A big thanks to Jarod
and his howto and this list (I'm a pretty persistant lurker).  Anyway I'm
looking at getting a joystick for running the games, I'd love to get
something close to an arcade style joystick (big frogger and contra fan)
and was wondering if anyone had some recommendations.

thanks!

- mike

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


Re: [mythtv-users] HD capture via Component/RGB/DVI incoming at 720i

2005-07-01 Thread Michael T. Dean

Todd Bailey wrote:

It there anyway to perform an  video + audio mixed in capture on the 
above listed hd signals and resolution?


Not for under $1000.  Maybe for under $10,000.  Probably for under 
$100,000.  At the prices involved and because the solutions available 
are all for "specialized" uses, no one posts prices on the web, but feel 
free to call a few vendors to see for yourself...


Just decoding a High-Def MPEG-2 stream takes significant processing 
power.  Encoding it real-time takes extremely expensive dedicated 
processing devices


(Note, although some of these are listed as DVB, the US's ATSC format is 
basically DVB with some modifications to give the "not invented here 
crowd" a nice warm feeling, so many broadcasters are converting DVB 
equipment for use with ATSC.)

http://www.computermodules.com/broadcast-systems/ATSC-hd-encoder.shtml
http://www.streamtel.com/streamtel/prod_E42-HD%20High%20Definition%20ASI%20DVB%20Encoder_44.htm
http://www.norpak.ca/TES7.htm
http://www.streamtel.com/streamtel/products/det/1_Encoders/76_F4_-_8_Slots_Modular_Multi-Channel_Encoder.htm
http://www.thomsongrassvalley.com/products/transmission/hde/hde8100/stick_desc.html

or, to build your own,

http://www.nel-world.com/products/electronics/hdtv.html

I am on satellite and those are the only hdtv signals available to me, 
cable or off the air is not an option.


I believe there is a something called sdi that is either a interface 
or a signal standard that professionals use for hd video.

perhaps it's something similar to firewire?


SDI is the Serial Digital Interface and is the basis of digital transfer 
mechanisms such as DVI (Digital Video Interface) and HDMI 
(High-Definition Multimedia Interface) as well as other audio and video 
distribution formats.  If you can get this from your receiver (and into 
the computer), you'd be able to use option a) below...


another item to consider is hacking into the sat receiver and getting 
the signal after it's been decrypted and building a interface that way.

I am using one of echostar's dishnetwork receivers (a model 811).


Make sure you read your usage agreement from DISH...

I'd be open to a solution under $1000 to capture hd and time shift for 
later viewing.


I am somewhat new to hd so any suggestions, comments, concerns or 
advice welcome.


If you want the sub-$1000 HDTV encoder, you have two options:  a) tons 
of hard drives, some as-yet-unavailable signal aquisition device, and 
nowhere-near-real-time encoding or b) wait a few years for the prices to 
drop (assuming that special interests--i.e. MPAA--don't prevent this 
from happening).


For a), you'll need some way to get the digital image into the computer 
and a lot of hard drive space.  The BTTV frame grabber cards work with 
NTSC-sized images, so it would require some way of splitting the signal 
and "tiling" the picture among them then "stitching" it back together.  
For DVI or HDMI, I don't know of anything that will dump the digital 
image (with or without conversion to RGB), but there may be devices that 
can do it.


As for the hard drive space, uncompressed 16-bit color video in 720x480 
interlaced (NTSC) takes about 70GiB/hr (or 105GiB/hr in 24-bit color).  
For ATSC, storage requirements are significantly higher.  You mention 
720i format, but that's not a valid format according to ATSC ( 
http://www.hdtvprimer.com/ISSUES/what_is_ATSC.html ), so I'll assume you 
mean 720p.  A single frame of 720p video takes [EMAIL PROTECTED] color or 
[EMAIL PROTECTED] color.  Below are the hourly storage requirements.


Format  16-bit Color24-bit Color
--  
720p24  148 GiB/hr  222Gi B/hr
720p30  185 GiB/hr  278Gi B/hr
720p60  371 GiB/hr  556Gi B/hr=1.33Gb/sec

Note that if you have any 1080i channels, storage requirements will 
increase (uncompressed 1080i60 in 24-bit color requires 626GiB/hr)--and 
none of these numbers include audio.  So, although it's possible, you 
won't get much TV for under $1000.  Especially once you factor in 
encoding time--likely to be (much) greater than 6hrs to encode 1hr of video.


Currently, the only really workable solution is OTA capture cards 
and--for the lucky ones whose cable companies don't encrypt their 
high-def channels--QAM capture cards or firewire capture (with capable 
receivers).  Sorry to be the bearer of bad news.


Mike

BTW, next time you send a message to the list, I suggest you click the 
"New Message" button and copy the address into the "To:" field or right 
click the address and select "Compose Mail To" instead of replying to an 
existing message.  Your message was buried beneath a thread that I 
didn't care about, so it almost got deleted with the rest...

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


Re: [mythtv-users] OT: FedoraCore3 + NFS + XFS + Software Raid = EIP?

2005-07-01 Thread Blammo
On 7/1/05, James Esslinger <[EMAIL PROTECTED]> wrote:
> All the rpms you need for getting XFS running on CentOS 4.0 are located
> in the centosplus repository.
> 
> http://ftp.osuosl.org/pub/centos/4.0/centosplus/i386/RPMS/

WONDERFUL! Thank you

didn't know about that one.
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] OT: FedoraCore3 + NFS + XFS + Software Raid = EIP?

2005-07-01 Thread Blammo
On 7/1/05, Tim Berger <[EMAIL PROTECTED]> wrote:
> I've already stated my piece on this list about using xfs, especially
> with 4k stacks often leading to kernel crashes, so I'm not sending to
> everyone again.  From what I've read, xfs has some serious stack
> problems leading to kernel crashes, even with 8k stacks.  The problem
> is exacerbated when using with raid and/or nfs.
> 
> ext3 works fine with myth.

And is very slow for deletes, which makes deleteing things from the
menus somewhat painful, especially when you're dealing with 6-20gig
files (HD content)

Anyone else able to weight in on if this issue exists with JFS or Reiser?
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


[mythtv-users] Re: [mythtv] one hour offset on current CVS?

2005-07-01 Thread Andrew Wilson
That was it, thanks a lot! Actually, it had the same behaviour in
18.1. I had to change xmltv offet from AUTO to NONE. I have no idea
why this happened now, as I have not fiddled with myth or the timezone
on my pc

Anyway, it's working now - much indebted

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


RE: [mythtv-users] mythfrontend segmentation fault

2005-07-01 Thread Marc Tousignant
The log can not be used to identify the issue. I would recommend getting a
backtrace and posting it to dev. It might already be fixed in svn.

I have been running with cvs/svn with gentoo since December without issues
and update every weekend. 


> -Original Message-
> From: [EMAIL PROTECTED] [mailto:mythtv-users-
> [EMAIL PROTECTED] On Behalf Of Sven Richter
> Sent: Friday, July 01, 2005 2:54 PM
> To: Discussion about mythtv
> Subject: [mythtv-users] mythfrontend segmentation fault
> 
> Hello,
> 
> I just emerged mythtv-0.18.1-r2 at my gentoo box . After all was
> installed successful mythfrontend did not start any more. So I
> reemerged the -r1 version which did run before very stable. But I just
> got the same result. So I deleted the database and started with a clean
> one. No change at all.
> 
> mythfrontend :
> 2005-07-01 20:44:08.616 New DB connection, total: 1
> Total desktop width=800, height=600, numscreens=1
> 2005-07-01 20:44:08.622 Using screen 0, 800x600 at 0,0
> 2005-07-01 20:44:08.626 mythfrontend version: 0.18.1.20050510-1
> www.mythtv.org
> 2005-07-01 20:44:08.627 Enabled verbose msgs : important general
> 2005-07-01 20:44:08.993 Switching to square mode (G.A.N.T.)
> 2005-07-01 20:44:14.903 Registering Internal as a media playback plugin.
> Segmentation fault
> 
> The backend runs without any trouble.
> 
> Does anyone has any idea where to look for the reason of this strange
> behavior?


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


Re: [mythtv-users] Best Nvida & IVTV driver versions for FC1?

2005-07-01 Thread Ross Campbell
> However, if I can improve recorded picture quality (ivtv drivers) or
> output picture quality (nvidia drivers), or get better performance from
> XvMC (nvidia), then it might be worth checking out new drivers.

I tried XvMC and aside from gettting lower CPU usage, I get my OSD in
monochrome :(

Since I still have a fair amount of CPU to burn with NTSC analog
broadcasts, I'd rather get my OSD in color. Please someone tell me if
I'm missing something about XvMC, NVidia, and color OSD.

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


Re: [mythtv-users] Best Nvida & IVTV driver versions for FC1?

2005-07-01 Thread Ross Campbell
On 7/1/05, Joseph A. Caputo <[EMAIL PROTECTED]> wrote:
> Just wondering... my main production box is still running FC1 and I have
> no compelling reason to do a full distro upgrade, but I was wondering
> if I should stick with my current Nvidia driver (6111) or upgrade to
> something a little more recent.

I'm still on 6111 as well and it does everything I need. I tried a few
newer drivers that gave me problems that I had to back out of, so I'm
in no hurry to upgrade.

> Same goes for my ivtv driver -- stick with what I've got (0.2.0-62) or
> upgrade (though there don't seem to be rpms for anything newer for
> FC1)?

If it ain't broke...

Well, okay... I've been using the latest 0.3.6X drivers on FC1 built
from source with no problem, and actually, I believe I can perceive
better quality recently in my recordings. Wishful thinking? I don't
know. YMMV.

> What say ye all?

Long live FC1! I have spent so long tuning and tweaking my system in
attempts to reach mythtv nirvana, that I have little motivation to do
an OS rebuild just to get a 2.6 kernel.

But... there's always the *next* backend server. It's going to have
2tb of hardware RAID storage and 3 PVR500s and ... :)


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


Re: [mythtv-users] Best Nvida & IVTV driver versions for FC1?

2005-07-01 Thread wmaccormack
I second what the last person said.  But if that hasn't convinced you, I've 
heard stories about the newest NVidia driver (1.0-7664) not acting too nicely.  
I'm using 1.0-7664 and haven't run into any problem with it (yet), but some 
people with certain configurations (can't remember off of the top of my head 
what they were) have complained.  FYI

qbert


> if you are happy with your current setup and
> If it ain't broke...
> Don't fix it!
> 
> Happy with 0.18.1 on FC3/x86_64, and not planning to upgrade to FC4 at all.
> 
> Johan
> 
> - Original Message - 
> From: "Joseph A. Caputo" <[EMAIL PROTECTED]>
> To: 
> Sent: Friday, July 01, 2005 11:32 AM
> Subject: [mythtv-users] Best Nvida & IVTV driver versions for FC1?
> 
> 
> > Just wondering... my main production box is still running FC1 and I have
> > no compelling reason to do a full distro upgrade, but I was wondering
> > if I should stick with my current Nvidia driver (6111) or upgrade to
> > something a little more recent.
> >
> > Same goes for my ivtv driver -- stick with what I've got (0.2.0-62) or
> > upgrade (though there don't seem to be rpms for anything newer for
> > FC1)?
> >
> > I've got onboard GF4MX and a pair of M-179's, for the record.
> >
> > What say ye all?
> >
> > -JAC
> >
> 
> 
> 
> 
> 
> ___
> mythtv-users mailing list
> mythtv-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 mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Best Nvida & IVTV driver versions for FC1?

2005-07-01 Thread Joseph A. Caputo
On Friday 01 July 2005 15:36, Johan Reinalda wrote:
> if you are happy with your current setup and
> If it ain't broke...
> Don't fix it!

Yes, of course :-)

However, if I can improve recorded picture quality (ivtv drivers) or 
output picture quality (nvidia drivers), or get better performance from 
XvMC (nvidia), then it might be worth checking out new drivers.

-JAC

> 
> - Original Message - 
> From: "Joseph A. Caputo" <[EMAIL PROTECTED]>
> To: 
> Sent: Friday, July 01, 2005 11:32 AM
> Subject: [mythtv-users] Best Nvida & IVTV driver versions for FC1?
> 
> 
> > Just wondering... my main production box is still running FC1 and I 
have
> > no compelling reason to do a full distro upgrade, but I was 
wondering
> > if I should stick with my current Nvidia driver (6111) or upgrade to
> > something a little more recent.
> >
> > Same goes for my ivtv driver -- stick with what I've got (0.2.0-62) 
or
> > upgrade (though there don't seem to be rpms for anything newer for
> > FC1)?
> >
> > I've got onboard GF4MX and a pair of M-179's, for the record.
> >
> > What say ye all?
> >
> > -JAC
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Best Nvida & IVTV driver versions for FC1?

2005-07-01 Thread Johan Reinalda

if you are happy with your current setup and
If it ain't broke...
Don't fix it!

Happy with 0.18.1 on FC3/x86_64, and not planning to upgrade to FC4 at all.

Johan

- Original Message - 
From: "Joseph A. Caputo" <[EMAIL PROTECTED]>

To: 
Sent: Friday, July 01, 2005 11:32 AM
Subject: [mythtv-users] Best Nvida & IVTV driver versions for FC1?



Just wondering... my main production box is still running FC1 and I have
no compelling reason to do a full distro upgrade, but I was wondering
if I should stick with my current Nvidia driver (6111) or upgrade to
something a little more recent.

Same goes for my ivtv driver -- stick with what I've got (0.2.0-62) or
upgrade (though there don't seem to be rpms for anything newer for
FC1)?

I've got onboard GF4MX and a pair of M-179's, for the record.

What say ye all?

-JAC







___
mythtv-users mailing list
mythtv-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] DVI->HDMI on Toshiba DLP

2005-07-01 Thread Kyle Rose
> Not to go too off topic, but have either of you successfully generated
> a modeline that eliminates most of the vertical overscan when running
> at 1280x720p? I've managed to get rid of most of the horizontal
> overscan, but am at a loss when it comes to the vertical...

What TV do you have?

If you have one of the Samsung DLP's, make sure the video mode isn't set
to "expand", which is the setting that gives 1:1 pixel correspondence.

Personally, I like the sharpness of expand mode, which is better for
reading text; but the overscan means I need to adjust my windows so they
appear on-screen.  6 of one, yadda yadda yadda.

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


Re: [mythtv-users] Seeking commercial hardware

2005-07-01 Thread Meatwad

I incorrectly wrote:

snapshot of a release or CVS and preconfigure COTS hardware. We'll be 
taking a much closer look at them this coming CEDIA but they have had 
penetration in our market (custom install) as far as we and our 
reps/insiders know.


Should have read "but they have had NO penetration in our market"

Apologies to the list for the self-reply.
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


[mythtv-users] HD capture via Component/RGB/DVI incoming at 720i

2005-07-01 Thread Todd Bailey

Hi all,

It there anyway to perform an  video + audio mixed in capture on the above 
listed hd signals and resolution?
I am on satellite and those are the only hdtv signals available to me, cable 
or off the air is not an option.


I believe there is a something called sdi that is either a interface or a 
signal standard that professionals use for hd video.

perhaps it's something similar to firewire?

Anyone have information on this?


another item to consider is hacking into the sat receiver and getting the 
signal after it's been decrypted and building a interface that way.

I am using one of echostar's dishnetwork receivers (a model 811).

I'd be open to a solution under $1000 to capture hd and time shift for later 
viewing.


I am somewhat new to hd so any suggestions, comments, concerns or advice 
welcome.


tia

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


[mythtv-users] mythfrontend segmentation fault

2005-07-01 Thread Sven Richter

Hello,

I just emerged mythtv-0.18.1-r2 at my gentoo box . After all was 
installed successful mythfrontend did not start any more. So I 
reemerged the -r1 version which did run before very stable. But I just 
got the same result. So I deleted the database and started with a clean 
one. No change at all.


mythfrontend :
2005-07-01 20:44:08.616 New DB connection, total: 1
Total desktop width=800, height=600, numscreens=1
2005-07-01 20:44:08.622 Using screen 0, 800x600 at 0,0
2005-07-01 20:44:08.626 mythfrontend version: 0.18.1.20050510-1 
www.mythtv.org

2005-07-01 20:44:08.627 Enabled verbose msgs : important general
2005-07-01 20:44:08.993 Switching to square mode (G.A.N.T.)
2005-07-01 20:44:14.903 Registering Internal as a media playback plugin.
Segmentation fault

The backend runs without any trouble.

Does anyone has any idea where to look for the reason of this strange 
behavior?




PGP.sig
Description: This is a digitally signed message part
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


[mythtv-users] MythTV editing and home key

2005-07-01 Thread Fedor Pikus
A couple times I accidentally hit "Home" key while editing recordings.
The result was that the edit bar was cleared of all cut points, and
frontend froze, I had to kill -9 it.

What's the key supposed to do, and why would that action hang frontend?
-- 
Fedor G Pikus ([EMAIL PROTECTED])
http://www.pikus.net
http://wild-light.com
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


[mythtv-users] Best Nvida & IVTV driver versions for FC1?

2005-07-01 Thread Joseph A. Caputo
Just wondering... my main production box is still running FC1 and I have 
no compelling reason to do a full distro upgrade, but I was wondering 
if I should stick with my current Nvidia driver (6111) or upgrade to 
something a little more recent.

Same goes for my ivtv driver -- stick with what I've got (0.2.0-62) or 
upgrade (though there don't seem to be rpms for anything newer for 
FC1)?

I've got onboard GF4MX and a pair of M-179's, for the record.

What say ye all?

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


[mythtv-users] On Line EPG Getting Stuck

2005-07-01 Thread Dave Ansell

Hi,

For the last couple of weeks I have been having problems with the 
on-air EPG (UK).


Normally it should have one week of data, but every so often it seems 
to stop updating so that the later days have no data.  Sometimes several 
days at the end (of the 7 day period) will be missing, either for all 
channels or sometimes just a few channels.


  I cannot see any obvious problem with the EPG data when viewing from the 
Set Top Box.


 The really wierd thing is that if I completely reboot my myth backend the 
the gaps usually get filled in shortly afterwards.  It is as if something 
"gets stuck" and rebooting releases it.


  I can't track the problem back to any specific Myth release, but I am 
currently on mythtv-backend-0.18.1-113.rhfc3.at, Fedora FC3.


  Any ideas?  It is a pain having to keep watching the EPG to make sure I 
don't miss recordings due to missing EPG data and I can't really be bothered 
setting up the xmltv grabber instead.


Thanks,
Dave 


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


[mythtv-users] Video out issue with mythfrontend

2005-07-01 Thread wmaccormack
Hi folks.  I'm running linux kernel 2.6.9 vanilla, with a WinTV-PVR350 card.  
My video card is a GEForce FX5200, and I've got a dual headed configuration.  
Myth version 0.18.1-3.  All of my modules load correctly, and most everything 
works except for one thing.  If I start mythfrontend on my monitor and select 
watch tv, everything is cool -- good video, good audio, etc. . .  

When I start the mythfrontend on my tv (by typing "env DISPLAY=:0.1 mythfronend 
&") the frontend starts fine, no errors or anything.  If I select watch tv, it 
starts out great.  good video, good audio, but when I move my mouse over to the 
television, my video goes away and is replaced by a big black box, audio still 
works though.  It looks like it's trying to bring some kind of window to the 
foreground.  I've checked the settings in mythfrontend and everything looks 
good to me, but maybe there's something I'm missing.

Has anyone else run into this kind of problem?
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Seeking commercial hardware

2005-07-01 Thread Meatwad

Larry Howe wrote:
I enjoyed the recent discussion about commercial hardware, although it seems 
to have diverged somewhat. Is there a good source of info on available 
commercial open source PVRs? I know I'm not going to have time to build my 
own. My basic requirements are that the box is microsoft-free and does not 
involve a subscription (I prefer to own things rather than rent them). Thanks 
for any leads.


We saw Xperinet at the CEDIA show last year. Looks like they took a 
snapshot of a release or CVS and preconfigure COTS hardware. We'll be 
taking a much closer look at them this coming CEDIA but they have had 
penetration in our market (custom install) as far as we and our 
reps/insiders know.


PlutoHome is making a go at a total convergence solution (A/V, security, 
telco, bluetooth cell-phone 'follow-me', etc.) I think 'sigtom' of this 
august list was trying out their system.


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


Re: [mythtv-users] Re: MythTV Database problem - Credits.MYI

2005-07-01 Thread Bruce Markey

Scott Carr wrote:

Scott Carr wrote:

I have been having problems with MythFillDatabase taking FOREVER to 
input the records.  This process used to take about 5 minutes, now it 
takes close to 24 hours.


I noticed that my Credits.myi has 1400 records and my people table 
only has 80 records.  Is there something going on here?


If I try to list the Credits.myi table it takes forever.

Thanks to the person that stated use truncate.  That worked like a 
charm.  I wonder why that was needed.


Unless you receive between 3,000 and 10,000 channels, there were
way too many rows in your tables. This may have happened do to bad
data in one of your listings grabs that caused it to enter the data
repeatedly or there was memory corruption during the fill or the
DB table was hozed or something else. In any case, mfdb has to
search through all this data for things to remove or replace. These
four tables are all filled with transient data by mfdb and all data
can be replaced with a new grab. Truncate throws away all data for
the table without removing the table definition. The mysqlcheck
was to verify that the DB wasn't still hozed after removing the
data.

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


Re: [mythtv-users] after mythrtvsetup my PVR 250 is recongnized asa PVR150 help!

2005-07-01 Thread Mark Knecht
On 7/1/05, Michael T. Dean <[EMAIL PROTECTED]> wrote:
> PAUL WILLIAMSON wrote:
> 
> [EMAIL PROTECTED] 07/01/05 8:39 AM >>>
> 
> >>Using the how to on wilsonnet.com, I was able to
> >>setup my PVR-250 to capture and dispaly cable tv
> >>video and it worked perfectly.  It was fine.
> >>
> >>After I ran Mythtvsetup. I am no longer to able to
> >>display cable tv video.  and when I the system now
> >>thanks it is a PVR150 instead of a PVR250
> >>
> >>[EMAIL PROTECTED] ~]# /bin/dmesg |grep Initialized
> >>ivtv: Initialized WinTV PVR 150, card #0
> >>
> >>what happend and what do I do?

I believe that this is fixed in ivtv CVS. I'm using 0.3.6p with a
patch. I have both a 150 and a 250 in the same box and they are now
recognized correctly, but only from a cold boot. I had the same
problem where the 150 wasn't recognized and the 250 was seen as a 150.
In my system they are not recognized from a warm boot as something is
messing up the PCI subsystem vendor id.

Please run the command:

/sbin/lspci -xx

from a cold boot and a warm boot and post back the data for your 250.
This will help us tell if it's the same problem.

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


Re: [mythtv-users] Frontends can't find database, can't connect

2005-07-01 Thread Donavan Stanley
On 7/1/05, Michael Jones <[EMAIL PROTECTED]> wrote:
> When I try to configure a remote frontend (I've tried another FC3 box, a Mac
> OSX box.. haven't tried the Windows front end yet) it tells me that it can't
> find the database.
> 
> The messages that come up on screen say that the current user isn't allowed
> to connect to the remote machine..

Have you read: http://www.mythtv.org/docs/mythtv-HOWTO-6.html#ss6.2
especially the section titled "Modifying access to the MySQL database
for multiple systems"?
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


[mythtv-users] DVB USB Ideas

2005-07-01 Thread dhoyos
Im a little confused and was hoping the mailing list could help me out. I got
the mythtv system working but I have come to realize that I am not satisfied
with the analog channels I can record. It seems that the options I have are to
purchase a DVB tuner card or to set up an IR Blaster and connect my myth box
from the cable box. I would rather use a DVB tuner but then my question is,
will this tunner allow me to view all the channels (or the ones I am paying
for)? If so any recomendations on a good one (preferably USB).
Thanks
Daniel
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Frontends can't find database, can't connect

2005-07-01 Thread George Nassas

On 1-Jul-05, at 10:47 AM, Michael Jones wrote:


Here's my my.cnf file..


In my file under [mysqld] I have "bind_address = 192.168.1.11" but of 
course you should use your server's IP numbers. I'm guessing that the 
default is skip networking to be on if it's not specified but the bind 
will override that. This is a helpful page: 
http://dev.mysql.com/doc/mysql/en/server-system-variables.html although 
the bit on bind is awfully brief (follow the link to section 5.3.1).


- George

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


Re: [mythtv-users] after mythrtvsetup my PVR 250 is recongnized asa PVR150 help!

2005-07-01 Thread Daniel Bennett


If the PCI device ID isn't recognized, 0.3 versions assume it's a 
PVR-150.  0.2 versions assume it's a PVR-250, so you could just use 
0.2.x...


The right solution, however, is to get the card recognized (basically, 
the info needs added to ivtv-cards.c)...  From the IvyTV 
initialization log messages:


ivtv:  START INIT IVTV 
ivtv: version x.x.x () loading
ivtv: Linux version: x.x.x
ivtv: In case of problems please include the debug info
ivtv: between the START INIT IVTV and END INIT IVTV lines when
ivtv: mailing the ivtv-devel mailinglist.

(and also post the output of lspci -v and a note saying your card 
isn't recognized.)


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

I have a similar problem, where my 250 works fine as long as its from a 
cold boot, if i reboot it detects as a 150. If I turn the system off for 
a few minutes and fire it up again it detects as a 250.

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


[mythtv-users] Re: MythTV Database problem - Credits.MYI

2005-07-01 Thread Scott Carr

Scott Carr wrote:

I have been having problems with MythFillDatabase taking FOREVER to 
input the records.  This process used to take about 5 minutes, now it 
takes close to 24 hours.


I noticed that my Credits.myi has 1400 records and my people table 
only has 80 records.  Is there something going on here?


If I try to list the Credits.myi table it takes forever.

Thanks to the person that stated use truncate.  That worked like a 
charm.  I wonder why that was needed.


--
Scott Carr
OpenOffice.org
Documentation Co-Lead
http://documentation.openoffice.org

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


[mythtv-users] RE: DVB Subtitles Patch v1.0 released

2005-07-01 Thread Neil
Hi PJ, 

I have applied your patch to the newest svn trunk of mythtv. It's very 
clean. I got it installed without issues. I made it sure that close 
captioning is enabled in my television. I tried different channels and I 
don't see subtitles. I do see key T works. It changes from CC OFF to CC1 and 
vice versa. I have also tried different subtitles in the mythtv menu but 
didn't work. 

Any ideas? 

Neil 




Please test, and also tell if it DOES work for you so I know that I'm
not the only one who it works for :) 

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


Re: [mythtv-users] ERROR - Could not find dvb tuning parameters for transport 0

2005-07-01 Thread Mudit Wahal
Did you scan for channels in myth setup ? Did you see the channels
lineup after they were detected ?



On 7/1/05, Ted Healey <[EMAIL PROTECTED]> wrote:
> I can't get my pchdtv3000 to work with Myth: I am not sure how to set
> up the channels properly (I think). i can capture hidef video with
> both the dvb and atsc drivers, so the card works.
> 
> When I start the backend I get
> 
> 2005-07-01 08:57:53.353 DVB#0 DVB SI Table Parser Started
> 2005-07-01 08:57:53.354 DVB#0 Using DVB card 0, with frontend pcHDTV
> HD3000 HDTV.
> 2005-07-01 08:57:53.357 New DB connection, total: 3
> 2005-07-01 08:57:53.358 DVB#0 ERROR - Could not find dvb tuning
> parameters for transport 0
> 2005-07-01 08:57:53.359 DVB#0 ERROR - Failed to get channel options
> for channel 4_1.
> 
> In mythtv-setup, I've mapped my /dev/video32 to the OTA lineup i set
> up in zaptoit. In the channel setup, I run the Scan and it seems to
> find the right channels. I set the input to US BCAST. I tried changing
> the 4_1 above to 41 (and back). In my database I have:
> 
> -+-+---+---+
> | chanid | channum | freqid | sourceid | callsign | name   |
> icon | finetune | videofilters | xmltvid| recpriority | contrast |
> brightness | colour | hue   | tvformat | commfree | visible |
> outputfilters | useonairguide | mplexid | serviceid | atscsrcid |
> ++-++--+--++--+--+--+-+-+--+++---+--+--+-+---+---+-+---+---+
> |   2015 | 4_1 | 30-1   |2 | WBZDT| WBZDT (WBZ-DT) |
> none | NULL |  | 20431|   0 |32768 |
> 32768 |  32768 | 32768 | ATSC |0 |   1 |
> |   0 |NULL |  NULL |  NULL |
> ++-++--+--++--+--+--+-
> 
> I have looked in the pchdtv forums, gossamer, etc... this seems to
> just work for most people, any urls that explain how to do this that i
> might not have stumbled across yet would be appreciated.
> 
> Ted
> ___
> mythtv-users mailing list
> mythtv-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] when I restart my PC my settings are gone // howdoI solve this?

2005-07-01 Thread Michael T. Dean

Paul Pick wrote:


I do NOT see my TV card initilized...after I run these commands:

#/sbin/depmod -a
#/sbin/modprobe ivtv

I can see the card initiliazed...

So after I reboot the PC I have to run this everytime ...
   


One way to save yourself the typing would be to append those
lines to /etc/rc.d/rc.local.

Or use whatever mechanism your distro uses for auto-loading modules 
(i.e. /etc/modules.conf or /etc/modules.d/* or ...).  Check the 
docs/fora/mailing lists for your distro for more info.


BTW, you only have to do depmod after you change the modules (i.e. add a 
new module, but that's usually taken care of by the packaging mechanism) 
or mod{ules,probe}.conf, so you shouldn't need to do it every time you 
boot (besides, most distros include a depmod somewhere in the init 
scripts just in case, so forcing it to do another would be a complete 
waste).


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


Re: Re: [mythtv-users] Mythtv for INDIA - cant watch LiveTV

2005-07-01 Thread VJ
You do not have to change anything, modprobe does it automatically for you.

On 01/07/05, Dhiraj Kamble <[EMAIL PROTECTED]> wrote:
> 
> here is the output of lsmod 
>   
> i see that ivtv is loading before saa7115, tuner, videodev... 
>   
> can this be the problem why i cant watch Live TV ? 
>   
> how do i change the order in which the modules load ? 
>   
>  
> 
> Module  Size  Used by
> nls_iso8859_15888  1 
> nls_cp437   7552  1 
> sg  30880  0 
> eepro100   29200  0 
> shpchp  91524  0 
> pci_hotplug 31048  1 shpchp
> ehci_hcd31112  0 
> 8250_pnp   10112  0 
> pcspkr  5324  0 
> tsdev   7744  0 
> evdev   9088  0 
> cx8800 27276   0 
> cx88xx  47904  1 cx8800
> ir_common   7300   1 cx88xx
> v4l1_compat14852  1 cx8800
> bttv  144336   0 
> video_buf  18436  3 cx8800,cx88xx,bttv
> firmware_class  9728   1 bttv
> v4l2_common 6528   2 cx8800,bttv
> btcx_risc   5768   3 cx8800,cx88xx,bttv
> lirc_i2c9348  0 
>  lirc_dev14212  1 lirc_i2c
> ivtv_fb29912  1 
> tda988714360  0 
> saa712714236   0 
> tveeprom   13336  2 cx88xx,bttv
>  ivtv   808420  2 ivtv_fb
> saa711513720  0 
> msp340027576  0 
> tuner  26536  0 
> i2c_algo_bit   10504  3 cx88xx,bttv,ivtv
>  videodev 9600  4 cx8800,cx88xx,bttv,ivtv
> md5 5760   1 
> ipv6  235808  12 
> autofs417284  0 
> af_packet  18696  0 
> snd_mixer_oss  18048  0 
> snd_intel8x0   29248  0 
> snd_ac97_codec 68984  1 snd_intel8x0
> snd_pcm79364  2 snd_intel8x0,snd_ac97_codec
> snd_timer   22532  1 snd_pcm
> snd_page_alloc  9348  2 snd_intel8x0,snd_pcm 
> snd47460  5
> snd_mixer_oss,snd_intel8x0,snd_ac97_codec,snd_pcm,snd_timer
> soundcore   9312  1 snd
> e100   34176  0 
> mii 5888  2 eepro100,e100
> i2c_i8019612  0 
> i2c_core20224  11
> cx88xx,bttv,lirc_i2c,tda9887,saa7127,tveeprom,saa7115,msp3400,tuner,i2c_algo_bit,i2c_i801
> mtdcore 8008  0 
> chipreg 4736  0 
> map_funcs3712  0 
> intel_agp  20636  1 
> agpgart 29616  1 intel_agp
> parport_pc 37444  0 
> parport 32456  1 parport_pc
> 825023108  1 8250_pnp
> serial_core 19840  1 8250
> pcmcia 20624  0 
> yenta_socket   20616  0 
> rsrc_nonstatic 10496  1 yenta_socket
> pcmcia_core42656  3
> pcmcia,yenta_socket,rsrc_nonstatic
> video  16260  0 
> thermal12936  0 
> processor  22504  1 thermal
> fan 5252  0 
> container5248  0 
> button  7056  0 
> battery 10372  0 
> ac  5508  0 
> rtc 11980  0 
> ohci1394   31748  0 
> ieee1394  301752  1 ohci1394
> usb_storage63552   1 
> ohci_hcd   20488  0 
> uhci_hcd   30224   0 
> usbcore   101368  5
> ehci_hcd,usb_storage,ohci_hcd,uhci_hcd
> tmscsim22976  0 
> BusLogic   77588 
> 
>  
> ___
> mythtv-users mailing list
> mythtv-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] Mythtv for INDIA - cant watch LiveTV

2005-07-01 Thread Michael T. Dean

Dhiraj Kamble wrote:


i see that ivtv is loading before saa7115, tuner, videodev...


Good.  The module ivtv loads and then loads the other modules it requires.


can this be the problem why i cant watch Live TV ?


Nope.


how do i change the order in which the modules load ?


You can't if you're loading ivtv correctly (i.e. all you should do is 
"modprobe ivtv" and the rest will be done for you).  Of course, as 
described above, you don't need to...


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


Re: [mythtv-users] after mythrtvsetup my PVR 250 is recongnized asa PVR150 help!

2005-07-01 Thread Michael T. Dean

PAUL WILLIAMSON wrote:


[EMAIL PROTECTED] 07/01/05 8:39 AM >>>

Using the how to on wilsonnet.com, I was able to 
setup my PVR-250 to capture and dispaly cable tv 
video and it worked perfectly.  It was fine.  


After I ran Mythtvsetup. I am no longer to able to
display cable tv video.  and when I the system now
thanks it is a PVR150 instead of a PVR250

[EMAIL PROTECTED] ~]# /bin/dmesg |grep Initialized
ivtv: Initialized WinTV PVR 150, card #0

what happend and what do I do?
   

Huh - I had the same problem.  I tried to 
specify cardtype=1, tuner=47 (plus some others) 
with no luck.  


I just ended up going out and buying a pvr150.
Not a bad deal at Circuit City for $60 AR.

Now I have 2 250's waiting to get into a slave backend.
Hopefully the system will recognize thm as such, 
but I'm guessing I'm going to have the same problem.


If you get it working, let us know!

After thinking about it, remove the card and remove 
ivtv (plus the associated ivtv stuff).  Then put the card 
back in and do another apt-get and see if that 
fixes it.
 

If the PCI device ID isn't recognized, 0.3 versions assume it's a 
PVR-150.  0.2 versions assume it's a PVR-250, so you could just use 0.2.x...


The right solution, however, is to get the card recognized (basically, 
the info needs added to ivtv-cards.c)...  From the IvyTV initialization 
log messages:


ivtv:  START INIT IVTV 
ivtv: version x.x.x () loading
ivtv: Linux version: x.x.x
ivtv: In case of problems please include the debug info
ivtv: between the START INIT IVTV and END INIT IVTV lines when
ivtv: mailing the ivtv-devel mailinglist.

(and also post the output of lspci -v and a note saying your card isn't 
recognized.)


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


Re: [mythtv-users] Problem with installing my INFRARED eye on thePVR-350

2005-07-01 Thread Michael T. Dean

iwan wrote:


I did thats just now:
depmod -ae"
 
But it does not do anything?


Good.  That means no errors.


and if I run this command again I get the same:
 
[EMAIL PROTECTED] ~]# /sbin/modprobe lirc_i2c

FATAL: Module lirc_i2c not found.
FATAL: Error running install command for lirc_i2c
[EMAIL PROTECTED] ~]#


Then you don't have the lirc_i2c module for your current kernel.

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


Re: [mythtv-users] Haupauge PVR 150

2005-07-01 Thread Paul Furtado
Right but that isnt the problem. It came with my Fedora 3 installation 
and it works if i try to play from the GUI. I found avisynth.dll online 
and i copied it  into the directory it was looking in and it went away. 
So now it says playing from command line but Mplayer doesnt show up.


Nick Rout wrote:


On Thu, 2005-06-30 at 13:21 -0400, Paul Furtado wrote:
 


When trying to use mplayer I get the following:
[EMAIL PROTECTED] ~]# mplayer /dev/video0
MPlayer 1.0pre7-3.4.3 (C) 2000-2005 MPlayer Team
CPU: Advanced Micro Devices Athlon Thunderbird (Family: 6, Stepping: 2)
Detected cache-line size is 64 bytes
CPUflags:  MMX: 1 MMX2: 1 3DNow: 1 3DNow2: 1 SSE: 0 SSE2: 0


Opening joystick device /dev/input/js0
Can't open joystick device /dev/input/js0 : No such file or directory
Can't init input joystick
Setting up LIRC support...
mplayer: could not connect to socket
mplayer: No such file or directory
Failed to open LIRC support.
You will not be able to use your remote control.
Playing /dev/video0.
Win32 LoadLibrary failed to load: avisynth.dll,
/usr/lib/win32/avisynth.dll, /usr/local/lib/win32/avisynth.dll
MPEG-PS file format detected.
VIDEO:  MPEG2  720x480  (aspect 2)  29.970 fps  9600.0 kbps (1200.0 kbyte/s)
==
Opening audio decoder: [mp3lib] MPEG layer-2, layer-3
AUDIO: 48000 Hz, 2 ch, s16le, 384.0 kbit/25.00% (ratio: 48000->192000)
Selected audio codec: [mp3] afm:mp3lib (mp3lib MPEG layer-2, layer-3)
==
No vidix driver name provided, probing available ones (-v option for details)!
vo: X11 running at 800x600 with depth 24 and 32 bpp (":0.0" => local display)
libdha: DHA kernelhelper failed: No such file or directory


MPlayer interrupted by signal 11 in module: preinit_libvo
- MPlayer crashed by bad usage of CPU/FPU/RAM.
 Recompile MPlayer with --enable-debug and make a 'gdb' backtrace and
 disassembly. Details in DOCS/HTML/en/bugreports_what.html#bugreports_crash.
- MPlayer crashed. This shouldn't happen.
 It can be a bug in the MPlayer code _or_ in your drivers _or_ in your
 gcc version. If you think it's MPlayer's fault, please read
 DOCS/HTML/en/bugreports.html and follow the instructions there. We can't and
 won't help unless you provide this information when reporting a possible bug.

When trying to use the cat command it records to test.mpg then totem
and mplayer cannot play it.
   



bummer, sounds like your mplayer is not compiled with the right options.
I use gentoo, so i compile mplayer with pretty near every  available
option, which includes lots of codecs. 


I dunno where you got your mplayer from, but i suspect they didn't
compile whatever options are required.

try the mplayer support channels. 



 


___
mythtv-users mailing list
mythtv-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] when I restart my PC my settings are gone // howdoI solve this?

2005-07-01 Thread Paul Pick
> I do NOT see my TV card initilized...after I run these commands:
> 
> #/sbin/depmod -a
> #/sbin/modprobe ivtv
> 
> I can see the card initiliazed...
> 
> So after I reboot the PC I have to run this everytime ...

 One way to save yourself the typing would be to append those
lines to /etc/rc.d/rc.local.

-- 
"We are here on Earth to fart around. Don't let anybody tell you any different!"
 -- Kurt Vonnegut
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: Re: [mythtv-users] Mythtv for INDIA - cant watch LiveTV

2005-07-01 Thread Dhiraj Kamble
here is the output of lsmod
 
i see that ivtv is loading before saa7115, tuner, videodev...
 
can this be the problem why i cant watch Live TV ?
 
how do i change the order in which the modules load ?
 

Module  Size  Used bynls_iso8859_1    5888  1 nls_cp437   
7552  1 sg  30880  0 eepro100   29200  0 shpchp  91524  0 pci_hotplug
    31048  1 shpchpehci_hcd    31112  0 8250_pnp   10112  0 pcspkr  
5324  0 tsdev   7744  0 evdev   9088  0 cx8800 27276   0 cx88xx
 47904  1 cx8800ir_common   7300   1 cx88xxv4l1_compat    14852  1 cx8800bttv  
144336   0 video_buf  18436  3 cx8800,cx88xx,bttvfirmware_class  9728   1 bttvv4l2_common 6528
  2 cx8800,bttvbtcx_risc   5768   3 cx8800,cx88xx,bttvlirc_i2c    9348  0 
lirc_dev    14212  1 lirc_i2civtv_fb    29912  1 tda9887    14360  
0 saa7127    14236   0 tveeprom   13336  2 cx88xx,bttv
ivtv   808420  2 ivtv_fbsaa7115    13720  0 msp3400    
27576  0 tuner  26536  0 i2c_algo_bit   10504  3 cx88xx,bttv,ivtv
videodev     9600  4 cx8800,cx88xx,bttv,ivtvmd5 5760   1 ipv6  235808  
12 autofs4    17284  0 af_packet  18696  0 snd_mixer_oss  18048  0 snd_intel8x0   
29248  0 snd_ac97_codec 68984  1 snd_intel8x0snd_pcm    79364  2 snd_intel8x0,snd_ac97_codecsnd_timer   
22532  1 snd_pcmsnd_page_alloc  9348  2 snd_intel8x0,snd_pcm snd    47460  5 snd_mixer_oss,snd_intel8x0,snd_ac97_codec,snd_pcm,snd_timer
soundcore   9312  1 snde100   34176  0 mii 5888  2 eepro100,e100i2c_i801    
9612  0 i2c_core    20224  11 cx88xx,bttv,lirc_i2c,tda9887,saa7127,tveeprom,saa7115,msp3400,tuner,i2c_algo_bit,i2c_i801mtdcore 
8008  0 chipreg     4736  0 map_funcs    3712  0 intel_agp  20636  1 
agpgart     29616  1 intel_agpparport_pc 37444  0 parport     32456  1 parport_pc8250
   23108  1 8250_pnpserial_core     19840  1 8250pcmcia 20624  0 yenta_socket   
20616  0 rsrc_nonstatic 10496  1 yenta_socketpcmcia_core    42656  3 pcmcia,yenta_socket,rsrc_nonstaticvideo  
16260  0 thermal    12936  0 processor  22504  1 thermalfan 5252  0 
container    5248  0 button  7056  0 battery     10372  0 ac  
5508  0 rtc     11980  0 ohci1394       31748  0 ieee1394  301752  
1 ohci1394usb_storage    63552   1 ohci_hcd   20488  0 uhci_hcd   30224   0 usbcore   
101368  5 ehci_hcd,usb_storage,ohci_hcd,uhci_hcdtmscsim    22976  0 BusLogic   77588 
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Can I setup a 'wish list' keyword?

2005-07-01 Thread Donavan Stanley
On 7/1/05, George Styles <[EMAIL PROTECTED]> wrote:
> Hi,
> 
> Im using quite an old version of MythTV (just before the big DVB
> patch, as I want to be able to record radio from DVB).
> 
> I dont use the mythfrontend at all, instead I use mythweb to schedule
> shows, and a custom script to rip them out as mp3/divx/mpeg.
> 
> Is there any way to tell MythTV to record all shows (even those not
> yet in the listings) containing a given keyword (eg everything that
> has "Open University" in the title?

That functionality is included in later versions of Myth.
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Frontends can't find database, can't connect

2005-07-01 Thread Michael Jones
Here's my my.cnf file..


[mysqld]
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
set-variable = key_buffer = 16M
set-variable = table_cache = 128
set-variable = sort_buffer = 2M
set-variable = myisam_sort_buffer_size = 8M

[mysql.server]
user=mysql
basedir=/var/lib

[safe_mysqld]
err-log=/var/log/mysqld.log
pid-file=/var/run/mysqld/mysqld.pid


I haven't had time to check the options within the database yet..

But..  Is there anything that should be here that isn't?

> From: George Nassas <[EMAIL PROTECTED]>
> Reply-To: Discussion about mythtv 
> Date: Fri, 1 Jul 2005 10:18:02 -0400
> To: Discussion about mythtv 
> Subject: Re: [mythtv-users] Frontends can't find database, can't connect
> 
> On 1-Jul-05, at 10:10 AM, Jason Werpy wrote:
> 
>> Make sure you /etc/mysql/my.cnf file does not have skip-networking set
>> as an option or it will disable any network access no matter what your
>> database has for permissions.
> 
> Another place to look is bind_address in my.cnf. If the server is only
> listening on localhost then it'll never hear the network clients.
> Change it to your server's IP number.
> 
> - George
> 
> ___
> mythtv-users mailing list
> mythtv-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] OT: FedoraCore3 + NFS + XFS + Software Raid = EIP?

2005-07-01 Thread James Esslinger
All the rpms you need for getting XFS running on CentOS 4.0 are located
in the centosplus repository.  

http://ftp.osuosl.org/pub/centos/4.0/centosplus/i386/RPMS/

* [EMAIL PROTECTED] [2005.06.30 21:19]:
: On 6/30/05, Nick <[EMAIL PROTECTED]> wrote:
: > On 7/1/05, Blammo <[EMAIL PROTECTED]> wrote:
: > > I know this isn't a kernel mailing list, however, given that this list
: > > has a large number of people who combine these features, I thought I'd
: > > give it a shot.
: > >
: > > I have a backend running (at the moment) 2.6.12.1 w/8k stacks. I've
: > > been fighting this issue however, since about 2.6.7. going from 4k
: > > stacks to 8k stacks helped, but didn't remove the problem.
: > >
: > > Occasionally, specific to heavy IO, I'll have the machine go into a
: > > state of limbo. It will either Hardlock (no keyboard activity) or go
: > > into Limbo. The times it doesn't hard lock, I've been able to track it
: > > back to NFS.
: > >
: > >  I've replaced motherboard, CPU, RAM, Video, ethernet, HD's, power
: > > supplies, and kernel versions, chased IRQ's, etc, so I'm fairly sure
: > > it's a bug.
: > >
: > > Anyone want to field a guess?
: > 
: > Have you tried with any other distros, like CentOS or WBEL, which are
: > RH Enterprise based (may contain specific patches not in FC)?
: > 
: > Assuming the disks are fsck'd without problem and your swap is not
: > corrupted, and this problem is reproducible on a *completely*
: > different system (non-Via), I'd def. take it to linux.kernel if you
: > haven't already with traces at the ready.
: 
: WBEL / Centos based off RHEL4 don't have XFS support (and I haven't
: found any way to get it in), and those based off RHEL3 are on a 2.4
: kernel, which leaves me out-of-luck for DVB.
: 
: The disks all test clean. I've low-leveled them all.
: ___
: mythtv-users mailing list
: mythtv-users@mythtv.org
: http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users
: 

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


Re: [mythtv-users] Mythtv for INDIA - cant watch LiveTV

2005-07-01 Thread Dhiraj Kamble
here is the output of lsmod
 
i see that ivtv is loading before saa7115, tuner, videodev...
 
can this be the problem why i cant watch Live TV ?
 
how do i change the order in which the modules load ?
 

Module  Size  Used bynls_iso8859_1
   5888  1 nls_cp437   7552  1 sg
 30880  0 eepro100   29200  0 shpchp
 91524  0 pci_hotplug    31048  1 shpchpehci_hcd
   31112  0 8250_pnp   10112  
0 pcspkr  5324  0 tsdev   7744  
0 evdev   9088  0 cx8800 27276
  0 cx88xx 47904  1 cx8800ir_common   7300
  1 cx88xxv4l1_compat    14852  1 cx8800bttv  144336
  0 video_buf  18436  3 cx8800,cx88xx,bttvfirmware_class  9728
  1 bttvv4l2_common 6528  2 cx8800,bttvbtcx_risc   5768
  3 cx8800,cx88xx,bttvlirc_i2c    9348  0 lirc_dev
   14212  1 lirc_i2civtv_fb    29912  1 
tda9887    14360  0 saa7127    14236
  0 tveeprom   13336  2 cx88xx,bttvivtv
  808420  2 ivtv_fbsaa7115    13720  
0 msp3400    27576  0 tuner  
26536  0 i2c_algo_bit   10504  3 cx88xx,bttv,ivtvvideodev
    9600  4 cx8800,cx88xx,bttv,ivtvmd5 5760
  1 ipv6  235808  12 autofs4    
17284  0 af_packet  18696  0 snd_mixer_oss  
18048  0 snd_intel8x0   29248  0 snd_ac97_codec 
68984  1 snd_intel8x0snd_pcm    79364  2 snd_intel8x0,snd_ac97_codecsnd_timer
  22532  1 snd_pcmsnd_page_alloc  9348  2 snd_intel8x0,snd_pcm
snd    47460  5 snd_mixer_oss,snd_intel8x0,snd_ac97_codec,snd_pcm,snd_timersoundcore   
9312  1 snde100   34176  0 mii 
5888  2 eepro100,e100i2c_i801    9612  0 i2c_core
   20224  11 cx88xx,bttv,lirc_i2c,tda9887,saa7127,tveeprom,saa7115,msp3400,tuner,i2c_algo_bit,i2c_i801mtdcore 
8008  0 chipreg     4736  0 map_funcs
   3712  0 intel_agp  20636  1 agpgart
    29616  1 intel_agpparport_pc 37444  0 parport
    32456  1 parport_pc8250   23108  1 8250_pnpserial_core
    19840  1 8250pcmcia 20624  
0 yenta_socket   20616  0 rsrc_nonstatic 10496  
1 yenta_socketpcmcia_core    42656  3 pcmcia,yenta_socket,rsrc_nonstaticvideo  
16260  0 thermal    12936  0 processor  
22504  1 thermalfan 5252  0 container
   5248  0 button  7056  0 battery
    10372  0 ac  5508  0 rtc
    11980  0 ohci1394       31748  
0 ieee1394  301752  1 ohci1394usb_storage    63552
  1 ohci_hcd   20488  0 uhci_hcd   30224
  0 usbcore   101368  5 ehci_hcd,usb_storage,ohci_hcd,uhci_hcdtmscsim    
22976  0 BusLogic   77588  0  
 
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Frontends can't find database, can't connect

2005-07-01 Thread George Nassas

On 1-Jul-05, at 10:10 AM, Jason Werpy wrote:


Make sure you /etc/mysql/my.cnf file does not have skip-networking set
as an option or it will disable any network access no matter what your
database has for permissions.


Another place to look is bind_address in my.cnf. If the server is only 
listening on localhost then it'll never hear the network clients. 
Change it to your server's IP number.


- George

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


[mythtv-users] Can I setup a 'wish list' keyword?

2005-07-01 Thread George Styles
Hi,

Im using quite an old version of MythTV (just before the big DVB
patch, as I want to be able to record radio from DVB).

I dont use the mythfrontend at all, instead I use mythweb to schedule
shows, and a custom script to rip them out as mp3/divx/mpeg.

Is there any way to tell MythTV to record all shows (even those not
yet in the listings) containing a given keyword (eg everything that
has "Open University" in the title?

If so, i assume I would need to either delve into mythfrontend, or
insert the SQL manually to do so.

If this is possible, would the programs show up in the scheduled
recordings listings in mythweb?

thanks

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


Re: [mythtv-users] Frontends can't find database, can't connect

2005-07-01 Thread Jason Werpy
On 7/1/05, Michael Jones <[EMAIL PROTECTED]> wrote:
> When I try to configure a remote frontend (I've tried another FC3 box, a Mac
> OSX box.. haven't tried the Windows front end yet) it tells me that it can't
> find the database.
> 
> The messages that come up on screen say that the current user isn't allowed
> to connect to the remote machine..
> 
> I'm not sure where to start looking for a solution to this.
> 
> Is there some portion of mysql that may not be running (i.e. the server?)
> when mysqld is started?
> 
> Any ideas.
> 
> Thanks Much.
> 
> - Michael
> 
> 
> 
> 
> 
> ___
> mythtv-users mailing list
> mythtv-users@mythtv.org
> http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users
> 
> 
> 

Make sure you /etc/mysql/my.cnf file does not have skip-networking set
as an option or it will disable any network access no matter what your
database has for permissions.
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Database setup

2005-07-01 Thread Jason Werpy
On 6/30/05, ian swanson <[EMAIL PROTECTED]> wrote:
>  
> Everytime I attempt to start the MySQL server, whether it be at start up, or
> running the frontend, it says that it can't connect to server through
> /var/lib/mysql/mysql.sock. I assume that this is not the correct place for
> it to look? Where should it look- *(I'm running Fedora Core 3), and how do
> you change the location in which it looks? I have searched my system and
> there isn't any mysql.sock anywhere, and i'm not familar with database
> programs. Any help is appreciated. Ian 
> ___
> mythtv-users mailing list
> mythtv-users@mythtv.org
> http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users
> 
> 
> 

On kubuntu mysql had the skip-networking setting turned on in
/etc/mysql/my.cnf and I was  getting this kind of error.  Perhaps
Fedora Core 3 had the same defaults.  Once I commented that out this
error went away.
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] OT: FedoraCore3 + NFS + XFS + Software Raid = EIP?

2005-07-01 Thread Jason Werpy
On 6/30/05, Blammo <[EMAIL PROTECTED]> wrote:
> I know this isn't a kernel mailing list, however, given that this list
> has a large number of people who combine these features, I thought I'd
> give it a shot.
> 
> I have a backend running (at the moment) 2.6.12.1 w/8k stacks. I've
> been fighting this issue however, since about 2.6.7. going from 4k
> stacks to 8k stacks helped, but didn't remove the problem.
> 
> Occasionally, specific to heavy IO, I'll have the machine go into a
> state of limbo. It will either Hardlock (no keyboard activity) or go
> into Limbo. The times it doesn't hard lock, I've been able to track it
> back to NFS.
> 
>  I've replaced motherboard, CPU, RAM, Video, ethernet, HD's, power
> supplies, and kernel versions, chased IRQ's, etc, so I'm fairly sure
> it's a bug.
> 
> 
> Here's the little present that was left in /var/log/messages for me
> today. This was a limbo-lock, meaning I was able to kill almost all
> processes, but couldn't shut down because nfsd and mountd were hung:
> 
> 
> Jun 30 12:31:52 backend1 kernel: Unable to handle kernel paging
> request at virtual address fff72710
> Jun 30 12:31:52 backend1 kernel:  printing eip:
> Jun 30 12:31:52 backend1 kernel: fff72710
> Jun 30 12:31:52 backend1 kernel: *pde = 2067
> Jun 30 12:31:52 backend1 kernel: Oops:  [#1]
> Jun 30 12:31:52 backend1 kernel: Modules linked in: nfsd lockd md5
> ipv6 parport_pc lp parport autofs4 sunrpc ext3 jbd dm_mod video button
> battery ac i2c_viapro b2c2_flexcop_pci b2c2_flexcop dvb_core mt352
> bcm3510 stv0299 nxt2002 stv0297 mt312 i2c_core r8169 xfs exportfs
> raid5 xor raid0 sata_via libata sd_mod scsi_mod
> Jun 30 12:31:52 backend1 kernel: CPU:0
> Jun 30 12:31:52 backend1 kernel: EIP:0060:[]Not tainted VLI
> Jun 30 12:31:52 backend1 kernel: EFLAGS: 00010286   (2.6.12.1)
> Jun 30 12:31:52 backend1 kernel: EIP is at 0xfff72710
> Jun 30 12:31:52 backend1 kernel: eax: e0f98500   ebx: c75864a0   ecx:
> dc39fde8   edx: d78eda60
> Jun 30 12:31:52 backend1 kernel: esi: d78eda60   edi: da68   ebp:
> e0f98500   esp: dc39fdc4
> Jun 30 12:31:52 backend1 kernel: ds: 007b   es: 007b   ss: 0068
> Jun 30 12:31:52 backend1 kernel: Process nfsd (pid: 3128,
> threadinfo=dc39e000 task=c1720aa0)
> Jun 30 12:31:52 backend1 kernel: Stack: e0c46d62 dc39fdec 
>  dd60a950 dbdab800 d6a97e60 dc39fe10
> Jun 30 12:31:52 backend1 kernel:1000 da68 1000
> d78eda60 0385  e0f98500 e0c4477d
> Jun 30 12:31:52 backend1 kernel: 05000900 0400
> dd60a950 d78eda60 dd60a950 dbdab004 1127
> Jun 30 12:31:52 backend1 kernel: Call Trace:
> Jun 30 12:31:52 backend1 kernel:  []
> cache_make_upcall+0x92/0x270 [sunrpc]
> Jun 30 12:31:52 backend1 kernel:  [] cache_check+0xed/0x180 [sunrpc]
> Jun 30 12:31:52 backend1 kernel:  [] fh_verify+0x428/0x590 [nfsd]
> Jun 30 12:31:52 backend1 kernel:  [] nfsd_open+0x2e/0x1f0 [nfsd]
> Jun 30 12:31:52 backend1 kernel:  [] nfsd_read+0x13d/0xd60 [nfsd]
> Jun 30 12:31:52 backend1 kernel:  [] schedule_timeout+0x97/0xe0
> Jun 30 12:31:52 backend1 kernel:  [] svc_reserve+0xec/0x1b0 [sunrpc]
> Jun 30 12:31:52 backend1 kernel:  [] nfsd3_proc_read+0xb1/0x170 
> [nfsd]
> Jun 30 12:31:52 backend1 kernel:  []
> nfs3svc_decode_readargs+0x0/0x1a0 [nfsd]
> Jun 30 12:31:52 backend1 kernel:  [] nfsd_dispatch+0x8a/0x210 [nfsd]
> Jun 30 12:31:52 backend1 kernel:  [] svc_send+0x9f/0x130 [sunrpc]
> Jun 30 12:31:52 backend1 kernel:  [] fh_put+0x141/0x1a0 [nfsd]
> Jun 30 12:31:52 backend1 kernel:  [] svc_process+0x571/0x600 
> [sunrpc]
> Jun 30 12:31:52 backend1 kernel:  [] sigprocmask+0xee/0x280
> Jun 30 12:31:52 backend1 kernel:  [] nfsd+0x21c/0x550 [nfsd]
> Jun 30 12:31:52 backend1 kernel:  [] nfsd+0x0/0x550 [nfsd]
> Jun 30 12:31:52 backend1 kernel:  [] kernel_thread_helper+0x5/0x18
> Jun 30 12:31:52 backend1 kernel: Code:  Bad EIP value.
> Jun 30 12:31:52 backend1 kernel:  <1>Unable to handle kernel paging
> request at virtual address 490130d5
> Jun 30 12:31:52 backend1 kernel:  printing eip:
> Jun 30 12:31:52 backend1 kernel: e0f72cc3
> Jun 30 12:31:52 backend1 kernel: *pde = 
> Jun 30 12:31:52 backend1 kernel: Oops:  [#2]
> Jun 30 12:31:52 backend1 kernel: Modules linked in: nfsd lockd md5
> ipv6 parport_pc lp parport autofs4 sunrpc ext3 jbd dm_mod video button
> battery ac i2c_viapro b2c2_flexcop_pci b2c2_flexcop dvb_core mt352
> bcm3510 stv0299 nxt2002 stv0297 mt312 i2c_core r8169 xfs exportfs
> raid5 xor raid0 sata_via libata sd_mod scsi_mod
> Jun 30 12:31:52 backend1 kernel: CPU:0
> Jun 30 12:31:52 backend1 kernel: EIP:0060:[]Not tainted VLI
> Jun 30 12:31:52 backend1 kernel: EFLAGS: 00010202   (2.6.12.1)
> Jun 30 12:31:52 backend1 kernel: EIP is at svc_export_lookup+0x53/0x200 [nfsd]
> Jun 30 12:31:52 backend1 kernel: eax: dbf998dc   ebx: 490130c1   ecx:
>    edx: d78fa580
> Jun 30 12:31:52 backend1 kernel: esi: dc223ef4   edi:    ebp:
> dbf998dc   esp: dc223d80
> Jun 30 12:31:52 back

Re: [mythtv-users] Compile error for mythmusic in Ubuntu

2005-07-01 Thread Jason Werpy
On 6/30/05, Robert Tsai <[EMAIL PROTECTED]> wrote:
> On Thu, Jun 30, 2005 at 06:08:24PM -0500, Jason Werpy wrote:
> > I cannot get mythmusic to compile I have all the prerequisites
> > installed, but still get this error, I think it has to do with
> > libid3tag, but thats installed in /usr/local/lib.
> 
> That is for *runtime*; you're having compile problems.
> 
> > Does anyone have any idea why this won't compile?  I have no idea what
> > to try next.
> 
> You probably need libid3tag0-dev
> 
> > g++ -c -pipe -Wall -W -O3 -march=pentiumpro -fomit-frame-pointer
> > -I/usr/include/SDL -D_REENTRANT -D_REENTRANT -fPIC  -D_GNU_SOURCE
> > -DPREFIX=\"/usr/local\" -DHAVE_MMX -DQT_NO_DEBUG -DQT_THREAD_SUPPORT
> > -DQT_PLUGIN -DQT_SHARED -I/usr/share/qt3/mkspecs/default -I.
> > -I/usr/local/include -I/usr/include/cdda -I/usr/include/qt3
> > -I/usr/X11R6/include -o metaioid3v2.o metaioid3v2.cpp
> > metaioid3v2.cpp: In member function `virtual bool 
> > MetaIOID3v2::write(Metadata*,
> >bool)':
> > metaioid3v2.cpp:131: error: `id3_utf8_ucs4duplicate' undeclared (first use 
> > this
> >function)
> > metaioid3v2.cpp:131: error: (Each undeclared identifier is reported only 
> > once
> >for each function it appears in.)
> > metaioid3v2.cpp:133: error: `id3_genre_number' undeclared (first use this
> >function)
> > metaioid3v2.cpp:153: error: `id3_tag_options' undeclared (first use this
> >function)
> > metaioid3v2.cpp:162: error: void value not ignored as it ought to be
> > metaioid3v2.cpp: In member function `virtual Metadata*
> >MetaIOID3v2::read(QString)':
> > metaioid3v2.cpp:233: error: `id3_utf8_ucs4duplicate' undeclared (first use 
> > this
> >function)
> > metaioid3v2.cpp: In member function `void 
> > MetaIOID3v2::removeComment(id3_tag*,
> >const char*, QString)':
> > metaioid3v2.cpp:443: error: `id3_frame_delete' undeclared (first use this
> >function)
> > metaioid3v2.cpp: In member function `bool MetaIOID3v2::setComment(id3_tag*,
> >const char*, QString, QString)':
> > metaioid3v2.cpp:532: error: `id3_frame_new' undeclared (first use this
> >function)
> > metaioid3v2.cpp:540: error: `id3_frame_delete' undeclared (first use this
> >function)
> > metaioid3v2.cpp:547: error: `id3_utf8_ucs4duplicate' undeclared (first use 
> > this
> >function)
> > make[2]: *** [metaioid3v2.o] Error 1
> > ___
> > mythtv-users mailing list
> > mythtv-users@mythtv.org
> > http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users
> 
> --Rob
> 
> 
> BodyID:156091538.2.n.logpart (stored separately)
> 
> 

Thanks for the response.  I looked deeper into the id3tag.h include
file and did indeed find that the functions indicated were not there. 
Upon further review I found a new version of libid3tag that had these
functions included.  Then everything compiled ok.
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


RE: [mythtv-users] MCE cards

2005-07-01 Thread Jim Reith

I meant Non MCE has a remote and no FM Tuner


and the PVR-350 has both


 > -Original Message-

 From: [EMAIL PROTECTED] [mailto:mythtv-users-
 [EMAIL PROTECTED] On Behalf Of Marc Tousignant
 Sent: Friday, July 01, 2005 7:43 AM
 To: 'Discussion about mythtv'
 Subject: RE: [mythtv-users] MCE cards

 MCE has a FM Tuner and no remote.
 Non MCE has a remote and no remote.

 That's it.

 > -Original Message-
 > From: [EMAIL PROTECTED] [mailto:mythtv-users-
 > [EMAIL PROTECTED] On Behalf Of flim
 > Sent: Friday, July 01, 2005 7:40 AM
 > To: mythtv-users@mythtv.org
 > Subject: [mythtv-users] MCE cards
 >
 > I'm having a thick moment...  Can anyone tell me the difference between
 a
 > PVRx50 and a PVRx50MCE?  I've assumed it's just the software on the CD,
 > but are there any implications for Myth before I dive in?
 >
 > Cheers,
 >
 >
 > flim.
 >
 > --
 > Using Opera's revolutionary e-mail client: http://www.opera.com/m2/




___
mythtv-users mailing list
mythtv-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] ERROR - Could not find dvb tuning parameters for transport 0

2005-07-01 Thread Ted Healey
I can't get my pchdtv3000 to work with Myth: I am not sure how to set
up the channels properly (I think). i can capture hidef video with
both the dvb and atsc drivers, so the card works.

When I start the backend I get

2005-07-01 08:57:53.353 DVB#0 DVB SI Table Parser Started
2005-07-01 08:57:53.354 DVB#0 Using DVB card 0, with frontend pcHDTV
HD3000 HDTV.
2005-07-01 08:57:53.357 New DB connection, total: 3
2005-07-01 08:57:53.358 DVB#0 ERROR - Could not find dvb tuning
parameters for transport 0
2005-07-01 08:57:53.359 DVB#0 ERROR - Failed to get channel options
for channel 4_1.

In mythtv-setup, I've mapped my /dev/video32 to the OTA lineup i set
up in zaptoit. In the channel setup, I run the Scan and it seems to
find the right channels. I set the input to US BCAST. I tried changing
the 4_1 above to 41 (and back). In my database I have:

-+-+---+---+
| chanid | channum | freqid | sourceid | callsign | name   |
icon | finetune | videofilters | xmltvid| recpriority | contrast |
brightness | colour | hue   | tvformat | commfree | visible |
outputfilters | useonairguide | mplexid | serviceid | atscsrcid |
++-++--+--++--+--+--+-+-+--+++---+--+--+-+---+---+-+---+---+
|   2015 | 4_1 | 30-1   |2 | WBZDT| WBZDT (WBZ-DT) |
none | NULL |  | 20431|   0 |32768 | 
32768 |  32768 | 32768 | ATSC |0 |   1 |  
|   0 |NULL |  NULL |  NULL |
++-++--+--++--+--+--+-

I have looked in the pchdtv forums, gossamer, etc... this seems to
just work for most people, any urls that explain how to do this that i
might not have stumbled across yet would be appreciated.

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


Re: [mythtv-users] after mythrtvsetup my PVR 250 is recongnized asa PVR150 help!

2005-07-01 Thread PAUL WILLIAMSON
>>> [EMAIL PROTECTED] 07/01/05 8:39 AM >>>
> Using the how to on wilsonnet.com, I was able to 
> setup my PVR-250 to capture and dispaly cable tv 
> video and it worked perfectly.  It was fine.  
>
> After I ran Mythtvsetup. I am no longer to able to
> display cable tv video.  and when I the system now
> thanks it is a PVR150 instead of a PVR250
> 
> [EMAIL PROTECTED] ~]# /bin/dmesg |grep Initialized
> ivtv: Initialized WinTV PVR 150, card #0
> 
> what happend and what do I do?

Huh - I had the same problem.  I tried to 
specify cardtype=1, tuner=47 (plus some others) 
with no luck.  

I just ended up going out and buying a pvr150.
Not a bad deal at Circuit City for $60 AR.

Now I have 2 250's waiting to get into a slave backend.
Hopefully the system will recognize thm as such, 
but I'm guessing I'm going to have the same problem.

If you get it working, let us know!

After thinking about it, remove the card and remove 
ivtv (plus the associated ivtv stuff).  Then put the card 
back in and do another apt-get and see if that 
fixes it.

Paul

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


RE: [mythtv-users] Problem with installing my INFRARED eye on thePVR-350

2005-07-01 Thread iwan
Title: Re: [mythtv-users] Problem with installing my INFRARED eye on thePVR-350
?





Hi, 
 
I did thats just now:
depmod -ae"
 
But it does not do anything?
 
and if I run this command again I get the 
same:
 
[EMAIL PROTECTED] ~]# /sbin/modprobe lirc_i2cFATAL: 
Module lirc_i2c not found.FATAL: Error running install command for 
lirc_i2c[EMAIL PROTECTED] ~]# 
Thanks for your help, 
 
 
 


Iwan HoogendoornCCIE # 
13084

E-mail : [EMAIL PROTECTED]
FAX# 084 736 
0329


From: [EMAIL PROTECTED] on behalf 
of Michael T. DeanSent: Fri 7/1/2005 14:10To: Discussion 
about mythtvSubject: Re: [mythtv-users] Problem with installing my 
INFRARED eye on thePVR-350



iwan wrote:

> I am getting this strange error message when running this command:
> 
> [EMAIL PROTECTED] /]# /sbin/modprobe lirc_i2c
> FATAL: Module lirc_i2c not found.
> FATAL: Error running install command for lirc_i2c
> [EMAIL PROTECTED] /]#
> 
> Can someone please help me to solve this problem?

Did you try "depmod -ae"?

Mike
___
mythtv-users mailing list
mythtv-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] after mythrtvsetup my PVR 250 is recongnized as a PVR150 help!

2005-07-01 Thread Samuel Bousum
Using the how to on wilsonnet.com, I was able to set
up my PVR-250 to capture and dispaly cable tv video 
and it worked perfectly.  It was fine.  

After I ran Mythtvsetup. I am no longer to able to
display cable tv video.  and when I the system now
thanks it is a PVR150 instead of a PVR250

[EMAIL PROTECTED] ~]# /bin/dmesg |grep Initialized
ivtv: Initialized WinTV PVR 150, card #0

what happend and what do I do?

Thanks 
Sam

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


RE: [mythtv-users] when I restart my PC my settings are gone // howdoI solve this?

2005-07-01 Thread iwan
?
Hi, 
 
This is a part of the output of my /etc/modprobe.conf FILE
 
# This is for WinTV PVR-350 IVTV
##
alias char-major-81 videodev
alias char-major-81-0 ivtv
install ivtv /sbin/modprobe --ignore-install ivtv; /sbin/modprobe ivtv-fb
options ivtv ivtv_std=2 tda9887=0  
install lirc_i2c /sbin/modprobe ivtv; /sbin/modprobe --ignore-install lirc_i2c
[EMAIL PROTECTED] ~]# 
 
 
These lines are allready in...
alias char-major-81 videodev
alias char-major-81-0 ivtv
 
But when I do a :
/bin/dmesg |grep Initialized
 
I do NOT see my TV card initilized...after I run these commands:

#/sbin/depmod -a
#/sbin/modprobe ivtv

 

I can see the card initiliazed...

 

So after I reboot the PC I have to run this everytime ...

 

Thanks, 

 
 
 
Iwan Hoogendoorn
CCIE # 13084
E-mail : [EMAIL PROTECTED]  
FAX# 084 736 0329



From: [EMAIL PROTECTED] on behalf of Marc Tousignant
Sent: Fri 7/1/2005 13:52
To: 'Discussion about mythtv'
Subject: RE: [mythtv-users] when I restart my PC my settings are gone // howdoI 
solve this?



#echo 16384 > /proc/sys/vm/min_free_kbytes 
#echo "# Fix ivtv memory allocation problems" >> /etc/sysctl.conf
#echo "vm.min_free_kbytes=16384" >> /etc/sysctl.conf

 

This is only needed for some people. If you are able to load the ivtv module 
before these lines you donâEUR(tm)t need them.

 

# /usr/bin/ivtvctl -u 0xff
# /usr/bin/ivtvctl -p 4
# /usr/bin/ivtvctl -f width=720,height=576 

 

This is only needed for testing and is not required every boot.

 

#/sbin/depmod -a
#/sbin/modprobe ivtv

 

This is only needed if you didnâEUR(tm)t put

 

# ivtv modules setup
alias char-major-81 videodev
alias char-major-81-0 ivtv

 

This into your /etc/modprobe.conf

 

 

 

 



From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of iwan
Sent: Friday, July 01, 2005 7:16 AM
To: mythtv-users@mythtv.org
Subject: [mythtv-users] when I restart my PC my settings are gone // how doI 
solve this?

 

Hi, 

 

When I restart my PC I have to do the following all over again:

 

#/sbin/depmod -a
#/sbin/modprobe ivtv
#echo 16384 > /proc/sys/vm/min_free_kbytes 
#echo "# Fix ivtv memory allocation problems" >> /etc/sysctl.conf
#echo "vm.min_free_kbytes=16384" >> /etc/sysctl.conf 

# /usr/bin/ivtvctl -u 0xff
# /usr/bin/ivtvctl -p 4
# /usr/bin/ivtvctl -f width=720,height=576 

 

I have FEDORA CORE 3 running with a PVR-350

 

Can someone tell me how to keep those settings saved?

 

Thanks, 

 

Iwan Hoogendoorn
CCIE # 13084

E-mail : [EMAIL PROTECTED]  

FAX# 084 736 0329

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


Re: [mythtv-users] Re: Program time/length not correct

2005-07-01 Thread Stephen Williams
On 7/1/05, Brad <[EMAIL PROTECTED]> wrote:
> I have just changd to TS recording on my DVB-T VisionPlus card as
> sound was dropping out occasionally. HAs fixed the sound issue but now
> some channels dont report the correct time of the recording. I am
> using knoppmyth R5A12 which i think is .16

It looks like R5A12 used MythTV 0.17. What you're reporting a known
bug that was fixed way back in April. I suggest you upgrade to 0.18.1
if you want this fixed. Plus, 0.18 fixed a lot of DVB related bugs so
it's probably worth your time upgrading.

In future please only reports bugs that you've verified are still
relevant with the latest release (or even better, latest CVS / SVN).

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


Re: [mythtv-users] Re: Jerky Video after transcode MPEG2->MPEG4

2005-07-01 Thread Michael T. Dean

Mike Harris wrote:


Joseph A. Caputo wrote:


On Wednesday 29 June 2005 7:58, Mike Harris wrote:

It is a P4 2.8Ghz. It barely breaks out a sweat, the CPU fan does 
not come on.
Also, sureley transcoding should just take longer rather than 
dropping frames if CPU speed were an issue? It is not as if it has 
to keep up with broadcast.


And what's more, I did not have this problem with 0.17. 


Just out of curiosity, do you have libmpeg2 decoding enabled?  If so, 
what result do you get if you turn off libmpeg2?


I did not specify libmpeg2 on the configure command line, so I guess I 
am not using it. Here is the ./configure output:



It's a setup option, not a compile-time option.

UseMPEG2Dec

Use libmpeg2 for decoding

If enabled, libmpeg2 will be used instead of ffmpeg for decoding MPEG-1 
and MPEG-2 video frames.  This can be faster.

WARNING: Enabling this option will disable XvMC video output.

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


[mythtv-users] Re: Program time/length not correct

2005-07-01 Thread Brad
>What build are you running? Is this DVB, if so are you recording in TS
>or PS mode?
>
>There was a problem with TS recordings a while ago that resulted in
>this behaviour but you'll need to provide more information.

>Steve


I have just changd to TS recording on my DVB-T VisionPlus card as
sound was dropping out occasionally. HAs fixed the sound issue but now
some channels dont report the correct time of the recording. I am
using knoppmyth R5A12 which i think is .16
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Problem with installing my INFRARED eye on the PVR-350

2005-07-01 Thread Michael T. Dean

iwan wrote:


I am getting this strange error message when running this command:
 
[EMAIL PROTECTED] /]# /sbin/modprobe lirc_i2c

FATAL: Module lirc_i2c not found.
FATAL: Error running install command for lirc_i2c
[EMAIL PROTECTED] /]#
 
Can someone please help me to solve this problem?


Did you try "depmod -ae"?

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


Re: [mythtv-users] Re: Jerky Video after transcode MPEG2->MPEG4

2005-07-01 Thread Mike Harris

Hi JAC,

I did not specify libmpeg2 on the configure command line, so I guess I 
am not using it. Here is the ./configure output:


Warning: DVB location points into kernel (ok if kernel >= 2.6.11)
# Basic Settings
Compile type release
Compiler cache   no
DistCC   no
Install prefix   /usr/local
CPU  x86 (model name: Intel(R) Pentium(R) 4 CPU 2.80GHz)
Big Endian   no
MMX enabled  yes
Vector Builtins  no

# Input Support
Joystick menuyes
lirc support yes
ivtv support yes
FireWire support no
DVB support  yes [/home/harmic/Build/kernel/linux-2.6.6/include/]

# Sound Output Support
OSS support  yes
ALSA support no
aRts support no
JACK support no

# Video Output Support
x11 support  yes
xrandr support   yes
xv support   yes
XvMC support no
XvMC VLD support no
OpenGL vsync no

Creating config.mak and config.h

// Mike

Joseph A. Caputo wrote:


On Wednesday 29 June 2005 7:58, Mike Harris wrote:
 


Hi Devan,

It is a P4 2.8Ghz. It barely breaks out a sweat, the CPU fan does not 
come on.
Also, sureley transcoding should just take longer rather than dropping 
frames if CPU speed were an issue? It is not as if it has to keep up 
with broadcast.


And what's more, I did not have this problem with 0.17.
   



Just out of curiosity, do you have libmpeg2 decoding enabled?  If so, 
what result do you get if you turn off libmpeg2?


-JAC
___
mythtv-users mailing list
mythtv-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] MCE cards

2005-07-01 Thread Marc Tousignant
I meant Non MCE has a remote and no FM Tuner

> -Original Message-
> From: [EMAIL PROTECTED] [mailto:mythtv-users-
> [EMAIL PROTECTED] On Behalf Of Marc Tousignant
> Sent: Friday, July 01, 2005 7:43 AM
> To: 'Discussion about mythtv'
> Subject: RE: [mythtv-users] MCE cards
> 
> MCE has a FM Tuner and no remote.
> Non MCE has a remote and no remote.
> 
> That's it.
> 
> > -Original Message-
> > From: [EMAIL PROTECTED] [mailto:mythtv-users-
> > [EMAIL PROTECTED] On Behalf Of flim
> > Sent: Friday, July 01, 2005 7:40 AM
> > To: mythtv-users@mythtv.org
> > Subject: [mythtv-users] MCE cards
> >
> > I'm having a thick moment...  Can anyone tell me the difference between
> a
> > PVRx50 and a PVRx50MCE?  I've assumed it's just the software on the CD,
> > but are there any implications for Myth before I dive in?
> >
> > Cheers,
> >
> >
> > flim.
> >
> > --
> > Using Opera's revolutionary e-mail client: http://www.opera.com/m2/


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


RE: [mythtv-users] when I restart my PC my settings are gone // how doI solve this?

2005-07-01 Thread Marc Tousignant








#echo 16384 > /proc/sys/vm/min_free_kbytes 
#echo "# Fix ivtv memory allocation problems" >>
/etc/sysctl.conf
#echo "vm.min_free_kbytes=16384" >> /etc/sysctl.conf

 

This is only needed for some people. If you are able to load
the ivtv module before these lines you don’t need them.

 

# /usr/bin/ivtvctl -u 0xff
# /usr/bin/ivtvctl -p 4
# /usr/bin/ivtvctl -f width=720,height=576 

 

This is only needed for testing and is not required every
boot.

 

#/sbin/depmod -a
#/sbin/modprobe ivtv

 

This is only needed if you didn’t put

 

# ivtv modules setup
alias char-major-81 videodev
alias char-major-81-0 ivtv

 

This into your /etc/modprobe.conf

 

 

 

 











From:
[EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of iwan
Sent: Friday, July 01, 2005 7:16
AM
To: mythtv-users@mythtv.org
Subject: [mythtv-users] when I
restart my PC my settings are gone // how doI solve this?



 





Hi, 





 





When I restart my PC I have to do the following all over
again:





 





#/sbin/depmod -a
#/sbin/modprobe ivtv
#echo 16384 > /proc/sys/vm/min_free_kbytes 
#echo "# Fix ivtv memory allocation problems" >>
/etc/sysctl.conf
#echo "vm.min_free_kbytes=16384" >> /etc/sysctl.conf 





# /usr/bin/ivtvctl -u 0xff
# /usr/bin/ivtvctl -p 4
# /usr/bin/ivtvctl -f width=720,height=576 





 





I have FEDORA CORE 3 running with a PVR-350





 





Can someone tell me how to keep those settings saved?





 





Thanks, 





 











Iwan
Hoogendoorn
CCIE # 13084







E-mail : [EMAIL PROTECTED]





FAX# 084 736
0329
















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


RE: [mythtv-users] MCE cards

2005-07-01 Thread Marc Tousignant
MCE has a FM Tuner and no remote.
Non MCE has a remote and no remote.

That's it.

> -Original Message-
> From: [EMAIL PROTECTED] [mailto:mythtv-users-
> [EMAIL PROTECTED] On Behalf Of flim
> Sent: Friday, July 01, 2005 7:40 AM
> To: mythtv-users@mythtv.org
> Subject: [mythtv-users] MCE cards
> 
> I'm having a thick moment...  Can anyone tell me the difference between a
> PVRx50 and a PVRx50MCE?  I've assumed it's just the software on the CD,
> but are there any implications for Myth before I dive in?
> 
> Cheers,
> 
> 
> flim.
> 
> --
> Using Opera's revolutionary e-mail client: http://www.opera.com/m2/

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


[mythtv-users] MCE cards

2005-07-01 Thread flim
I'm having a thick moment...  Can anyone tell me the difference between a  
PVRx50 and a PVRx50MCE?  I've assumed it's just the software on the CD,  
but are there any implications for Myth before I dive in?


Cheers,


flim.

--
Using Opera's revolutionary e-mail client: http://www.opera.com/m2/
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


[mythtv-users] Problem with installing my INFRARED eye on the PVR-350

2005-07-01 Thread iwan
?

Hi, 
 
I am getting this strange error message 
when running this command:
 
[EMAIL PROTECTED] /]# /sbin/modprobe lirc_i2cFATAL: Module 
lirc_i2c not found.FATAL: Error running install command for 
lirc_i2c[EMAIL PROTECTED] /]# 
 
Can someone please help me to solve this problem?
Thanks, 
 
 
 


Iwan HoogendoornCCIE # 
13084

E-mail : [EMAIL PROTECTED]
FAX# 084 736 
0329___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


[mythtv-users] when I restart my PC my settings are gone // how do I solve this?

2005-07-01 Thread iwan
?

Hi, 
 
When I restart my PC I have to do the 
following all over again:
 
#/sbin/depmod -a#/sbin/modprobe 
ivtv#echo 16384 > /proc/sys/vm/min_free_kbytes #echo "# Fix ivtv 
memory allocation problems" >> /etc/sysctl.conf#echo 
"vm.min_free_kbytes=16384" >> /etc/sysctl.conf 
# /usr/bin/ivtvctl -u 0xff# 
/usr/bin/ivtvctl -p 4# /usr/bin/ivtvctl -f width=720,height=576 

 
I have FEDORA CORE 3 running with a 
PVR-350
 
Can someone tell me how to keep those 
settings saved?
 
Thanks, 
 


Iwan HoogendoornCCIE # 
13084

E-mail : [EMAIL PROTECTED]
FAX# 084 736 
0329___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Mythtv for INDIA - cant watch LiveTV

2005-07-01 Thread Dhiraj Kamble
i am resending this mail, cause the previous send mail has bounced back.
 
On 7/1/05, Dhiraj Kamble <[EMAIL PROTECTED]> wrote:

 
ok, now i am able to see video and hear sound,
if i do a "cat /dev/video > /dev/video16", but its, TRANSPARENT.
the channel plays behind the Knoppmyth Desktop.
 
i used the following commands 

ivtvfbctl /dev/fb1 -globalalpha -nolocalalpha and 
ivtvfbctl /dev/fb1 -globalalpha -nolocalalpha -alpha 0 
 
i get a blank screen if i do 
ivtvfbctl /dev/fb1 -noglobalalpha -localalpha 
 
i am attaching the following files
1.  /etc/mythtv/modules/ivtv
2.  /etc/X11/XF86Config-4
3.  Output of "dmesg"
 
I am using a PVR-350 card and ivtv-0.2.0-rc3j drivers.
well there is no "modeprobe.conf", but there is a file called "modules.conf", and i havent changed that.
 
i still cant watch LIVETV.
 -thanks
 
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Differences between PVR-150 & PVR-250

2005-07-01 Thread PAUL WILLIAMSON
Thatr is 100% wrong.  The MCE doesn't come with that
stuff.  I jut bought a 150 a Circuit Ctiy - has the new remote 
and an IR receiver WITH an integrated IR blaster - 
Pretty cool.  I'm not sure if the IR blaster works, 
but it's  a nice touch.

Paul

>>> [EMAIL PROTECTED] 06/30/05 10:15 PM >>>
I think the 150 does not come with the remote or ir recvr.




-Original message-
From: Nick [EMAIL PROTECTED] 
Date: Thu, 30 Jun 2005 18:43:28 -0700
To: Discussion about mythtv mythtv-users@mythtv.org 
Subject: Re: [mythtv-users] Differences between PVR-150 & PVR-250

>  On 7/1/05, Steve Nuffer <[EMAIL PROTECTED]> wrote:
>  > 
>  > 
>  > The Hauppaug site doesn't show much between them except for this
statemen>  t. 
>  > 
>  > "New low cost design. Same video quality as the WinTV-PVR-250 at a
lower
>  > cost. Includes IR Blaster to control your set top box." 
>  > 
>  > I can get a PVR-150 for about $50 and the best price for the
PRV-250 is
>  > around $100. 
>  > 
>  > I already have a PVR-350.  I was going to buy the PVR-150 as my
second
>  > tuner.  
>  > 
>  > Thoughts on the differences? 
>  
>  Some useful info
http://www.gossamer-threads.com/lists/mythtv/users/125030 
>  
>  Nick
>  ___
>  mythtv-users mailing list
>  mythtv-users@mythtv.org 
>  http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users 



**
*  Todd Bailey   *
* toddb (at) toddbailey (dot) net*
*   www.toddbailey.net   *
**



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


Re: [mythtv-users] Remote frontend cannot see EPG

2005-07-01 Thread Nick Rout
On Thu, 2005-06-30 at 23:50 -0400, Isaac Richards wrote:
> On Thursday 30 June 2005 09:43 pm, Nick Rout wrote:
> > I have a myth backend box, with tuner etc in it. On that box I can see
> > the EPG.
> >
> > On the other box, same version of myth (18.1) I can see TV from the
> > backend, but the EPG is blank, and when  I hit an arrow key on the
> > keyboard mythfrontend segfaults and leaves nothing obvious on the
> > commandline (even when started with mythfrontend -v all)
> >
> > Any clues people?
> 
> You likely didn't tell it to use the same mysql database.
> 

errr yes, I see what you mean. I still have more to learn about myth's
architecture - it seems that the frontend's settings like theme, etc are
all stored on the master backend. Logical when you think about ti.

> Isaac
> ___
> mythtv-users mailing list
> mythtv-users@mythtv.org
> http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users
-- 
Nick Rout <[EMAIL PROTECTED]>

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


Re: [mythtv-users] SOLUTION: Seek (FF / Fast foward) does not skip correctly

2005-07-01 Thread Ant Daniel
On 6/30/05, Simon Kenyon <[EMAIL PROTECTED]> wrote:
> On Thursday 30 June 2005 14:29, Walt Howd wrote:
> > After three days...(I know, I'm slow. . .) I noticed that the
> > /etc/localtime was linked to Vienna. The install for Xebian did *not*
> > prompt me for the timezone during setup. I linked the /etc/localtime
> > to my correct timezone, restarted the frontend and it all works fine.
> > I just wanted to send this back to the list to be available for future
> > records.
> 
> oh thank you, thank you, thank you.
> 
> i have had this problem on one of my frontends since april and had given up on
> it ever being fixed. i rebuilt myth and redid the tables (as your mail
> siggests you did).
> 
> this really needs to go in the FAQ.
> 
> regards
> --
> simon
> ___
> mythtv-users mailing list
> mythtv-users@mythtv.org
> http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users
> 

How very strange.

My /etc/localtime was a copy of /usr/share/zoneinfo/GB, even the
checksums where the same, but by linking it to /etc/localtime and
restarting (as you suggested) the problem has gone away. Making me
very happy, and about to add +100 to the WAF.

Thank you very much for finding this problem.
Why it does that I can't even begin to imagine.

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


Re: [mythtv-users] Silent HDTV Front End

2005-07-01 Thread Simon Kenyon
On Thursday 30 June 2005 17:19, Robert S. Kerr wrote:
> Googling around on the web the other day I stumbled across this page
> http://mythhd.info/ that describes a silent HDTV capable front end for
> MythTV.
>
> It uses the COMMELL LV-660 Mini-ITX board with a VT1625 encoder (for
> HDTV YPbPr output).  I was curious if anyone has used this
> configuration, and how successful they've been with it.  Does it do a
> good job, stable rendering, etc?
>
> All the other HDTV discussions I've seen involve insanely new CPUs that
> require big fans and lots of noise.

has anyone looked at the AOpen's i915GMm-HFS Motherboard?

it has composite and dvi output and a socket for a pentium m.
all the reviews seem to suggest that it is quiet

i would buy one - but i cannot find a vendor

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


Re: [mythtv-users] Mythtvosd

2005-07-01 Thread Phill Edwards
> trying to play around with mythtvosd but I can't really find much
> information on it.  I have tried running the following command but I don't
> get any output to the screen while watching a recording.
> 
> # mythtvosd
> --template=/src/mythtv/programs/mythtvosd/alert.xml
> --alert_text='hello' --bcastaddr=127.0.0.1
> Sent UDP/XML packet to IP 127.0.0.1 and port: 6948
> 
> Any hints or good links for more information on this?

I've got this cgi script so you can send a msg from a browser:


#!/usr/bin/perl

use CGI;

# Create the CGI object
my $query = new CGI;

# Output the HTTP header
print $query->header ( );

# Capture the form results
my $msg = $query->param("msg");
my $template = $query->param("template");
my $text_cmd = "";

if ($template eq "alert")
{
   $text_cmd="--alert_text=\"$msg\"";
}
else
{
   $text_cmd="--scroll_text=\"$msg\"";
}

#Send the message using mythvtosd
if( length ("$msg") > 0)
{
   system "/usr/bin/mythtvosd --template=$template $text_cmd";
}

# Print the html form
print <

Send a message using MythTV OSD


Send a message to MythTV
If someone is watching a recording or Live TV your message will be shown on
their screen.
Enter the text of your message here:



Choose whether you want an alert box or a scroller:
Scrolling Text
Alert Box





END_HTML


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


Re: [mythtv-users] Differences between PVR-150 & PVR-250

2005-07-01 Thread Fredrik Karlsson
I have a PVR-150 card also, and it came with a remote, an IR reciever
and an IR blaster.
According to the Hauppauge homepage, MCE cards are the ones without
all of that stuff (but with radio input). The same goes for PVR-250 /
PVR-250MCE..

http://www.hauppauge.com/Pages/compare_pvr.html

/Fredrik

On 7/1/05, Milos Prudek <[EMAIL PROTECTED]> wrote:
> toddb wrote:
> > I think the 150 does not come with the remote or ir recvr.
> 
> Not true.
> 
> I purchased a PVR-150 yesterday and it has both the remote and the ir
> receiver.
> 
> --
> Milos Prudek
> http://www.spoxdesign.com - your web usability testing
> 
> 
> ___
> mythtv-users mailing list
> mythtv-users@mythtv.org
> http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users
> 
> 
> 


-- 
My Gentoo + PVR-350 + IVTV + MythTV blog is on  
http://gentoomythtv.blogspot.com/
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Differences between PVR-150 & PVR-250

2005-07-01 Thread Milos Prudek

toddb wrote:

I think the 150 does not come with the remote or ir recvr.


Not true.

I purchased a PVR-150 yesterday and it has both the remote and the ir 
receiver.


--
Milos Prudek
http://www.spoxdesign.com - your web usability testing
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Haupauge PVR 150

2005-07-01 Thread Nick Rout
On Thu, 2005-06-30 at 13:21 -0400, Paul Furtado wrote:
> When trying to use mplayer I get the following:
> [EMAIL PROTECTED] ~]# mplayer /dev/video0
> MPlayer 1.0pre7-3.4.3 (C) 2000-2005 MPlayer Team
> CPU: Advanced Micro Devices Athlon Thunderbird (Family: 6, Stepping: 2)
> Detected cache-line size is 64 bytes
> CPUflags:  MMX: 1 MMX2: 1 3DNow: 1 3DNow2: 1 SSE: 0 SSE2: 0
> 
> 
> Opening joystick device /dev/input/js0
> Can't open joystick device /dev/input/js0 : No such file or directory
> Can't init input joystick
> Setting up LIRC support...
> mplayer: could not connect to socket
> mplayer: No such file or directory
> Failed to open LIRC support.
> You will not be able to use your remote control.
> Playing /dev/video0.
> Win32 LoadLibrary failed to load: avisynth.dll,
> /usr/lib/win32/avisynth.dll, /usr/local/lib/win32/avisynth.dll
> MPEG-PS file format detected.
> VIDEO:  MPEG2  720x480  (aspect 2)  29.970 fps  9600.0 kbps (1200.0 kbyte/s)
> ==
> Opening audio decoder: [mp3lib] MPEG layer-2, layer-3
> AUDIO: 48000 Hz, 2 ch, s16le, 384.0 kbit/25.00% (ratio: 48000->192000)
> Selected audio codec: [mp3] afm:mp3lib (mp3lib MPEG layer-2, layer-3)
> ==
> No vidix driver name provided, probing available ones (-v option for details)!
> vo: X11 running at 800x600 with depth 24 and 32 bpp (":0.0" => local display)
> libdha: DHA kernelhelper failed: No such file or directory
> 
> 
> MPlayer interrupted by signal 11 in module: preinit_libvo
> - MPlayer crashed by bad usage of CPU/FPU/RAM.
>   Recompile MPlayer with --enable-debug and make a 'gdb' backtrace and
>   disassembly. Details in DOCS/HTML/en/bugreports_what.html#bugreports_crash.
> - MPlayer crashed. This shouldn't happen.
>   It can be a bug in the MPlayer code _or_ in your drivers _or_ in your
>   gcc version. If you think it's MPlayer's fault, please read
>   DOCS/HTML/en/bugreports.html and follow the instructions there. We can't and
>   won't help unless you provide this information when reporting a possible 
> bug.
> 
> When trying to use the cat command it records to test.mpg then totem
> and mplayer cannot play it.

bummer, sounds like your mplayer is not compiled with the right options.
I use gentoo, so i compile mplayer with pretty near every  available
option, which includes lots of codecs. 

I dunno where you got your mplayer from, but i suspect they didn't
compile whatever options are required.

try the mplayer support channels. 


> ___
> mythtv-users mailing list
> mythtv-users@mythtv.org
> http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users
-- 
Nick Rout <[EMAIL PROTECTED]>

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


Re: [mythtv-users] Another commercial MythTV box

2005-07-01 Thread Nick Rout
On Fri, 2005-07-01 at 01:59 -0400, Dewey Smolka wrote:
>  > Oh don't worry, i get it, and i am sympathetic to the cause. However I
> > can't find a copy of the zap2it.com license.
> 
> Neither can I, but it's pretty clear from here:
> docs.tms.tribune.com/tech/tmsdatadirect/zap2it/open_letter.html
> that the data is not meant to be sold. Fair enough.

Its a pretty basic legal principle that that letter does not affect
interpretation of the license.

> 
> > Or are the commercial operators registering for zap2it then preloading
> > the registrations into their boxes?
> 
> All you need to get zap2it data is the certificate code for MythTV
> (which is printed in some of the documentation), a US zip code, and
> the name of your cable co and plan. It's an easy system to abuse, if
> that's what you want to do. I can't say that that's what they're doing
> because I've never seen a commercial Myth box, but if I were a sleazy
> bastard, that's what I'd do.


Just out of interest I tried to register, the license is shown before
you can fill out the form. It is clear that you cannot assign or
transfer the license. Therefore IMHO you cannot register a box for the
service then sell the box with a registration.

However there seems to be nothing stopping you from selling a machine
that is compatible with zap2it.com's listings, and let the user register
it.

And its hard to know how you could do so without subverting the freedom
inherent in the internet and free software. Its a service that you
subscribe to, but otherwise relies on http & xml. And heaven help us if
we are ever prevented from using those standards!

> ___
> mythtv-users mailing list
> mythtv-users@mythtv.org
> http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users
-- 
Nick Rout <[EMAIL PROTECTED]>

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


RE: [mythtv-users] Frontends can't find database, can't connect

2005-07-01 Thread Korey Fort

You can try mysqlaccess mythtv to see what access mythtv has or 
 Log into mysql then use mysql; select * from user where User = 'mythtv';
This will show you where mythtv is allowed to connect from.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Michael Jones
Sent: Friday, July 01, 2005 2:30 AM
To: Discussion about mythtv
Subject: [mythtv-users] Frontends can't find database, can't connect

When I try to configure a remote frontend (I've tried another FC3 box, a Mac
OSX box.. haven't tried the Windows front end yet) it tells me that it can't
find the database. 

The messages that come up on screen say that the current user isn't allowed
to connect to the remote machine..

I'm not sure where to start looking for a solution to this.

Is there some portion of mysql that may not be running (i.e. the server?)
when mysqld is started?

Any ideas. 

Thanks Much. 

- Michael




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


Re: [mythtv-users] Mythtv for INDIA - cant watch LiveTV

2005-07-01 Thread VJ
Hi Dhiraj,

Can you provide more information about your card, driver version and
also the way you load the module (may be via modprobe.conf), and
parameters passed to ivtv driver. Also provide any other ivtvctl
command that you isse before trying to access /dev/video0.

I am not running mythTV in India but may be I could be of some help to you.
VJ
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


[mythtv-users] Frontends can't find database, can't connect

2005-07-01 Thread Michael Jones
When I try to configure a remote frontend (I've tried another FC3 box, a Mac
OSX box.. haven't tried the Windows front end yet) it tells me that it can't
find the database. 

The messages that come up on screen say that the current user isn't allowed
to connect to the remote machine..

I'm not sure where to start looking for a solution to this.

Is there some portion of mysql that may not be running (i.e. the server?)
when mysqld is started?

Any ideas. 

Thanks Much. 

- Michael



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


Re: [mythtv-users] Mythtv for INDIA - cant watch LiveTV

2005-07-01 Thread Dhiraj Kamble
i get a valid Mpeg file when i do a 
"cat /dev/video0 > test.mpg"
 
and i can watch the channel using Mplayer
 
"mplayer -vo x11 /dev/video0"
 
i have set the frequency Id's right, in the channel editor.
I have fields "Callsign" and "XMLTV ID"  - BLANK
 
when i try to watch Live Tv, all i get is a Blank Screen, and, ivtvctl shows the right frequecy.
 
also when i do a "cat /dev/video0 > /dev/video16" all i get is Only SOUND of the channel tuned, NO VIDEO.
 
Is there anybody from INDIA who has got Mythtv running ?
 
any reasons, why i cant watch live tv ?
 
thanks 
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


RE: [mythtv-users] Another commercial MythTV box

2005-07-01 Thread Korey Fort
They actually don't promise any data provision. I attempted to send an image
of where it says this in the pdf but it was too large. Yet, they are still
stealing from trolltech if they haven't purchased an agreement to use Qt.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Dewey Smolka
Sent: Thursday, June 30, 2005 10:05 PM
To: Discussion about mythtv
Subject: Re: [mythtv-users] Another commercial MythTV box

> 
> > > If I buy one of these devices and then use it in my home, that appears
> > > to me to be non-commercial use. As far as zap2it.com is concerned it
> > > places no greater load than if i brewed my own mythbox.
> > >
> > > IMHO commercial use would be, say, downloading information from
> > > zap2it.com and re-selling it.
> >
> > Your HO is flat out 100% wrong.
> 
> Explain? Actually I was only commenting on the previous poster's post,
> and he referred to the "commercial" use. How is it commercial use for me
to access the service?

Nobody is talking about you accessing the service. The commercial part
comes when a company sells Myth boxes with a promise of program data
without monthly fees. It's not exactly copying and reselling
labs.zap2it data, but it's pretty close.

A PVR is pretty much worthless without program data (note, this is
only about the TV recording capabilities of Myth, not the
music/video/weather/etc features). If I start selling Myth boxes (or
worse, closed and rebranded Myth boxes) with the understanding, either
implicit or explicit, that the program data is free, then I am
defrauding the customer because I have no control over the data and
cannot gurantee its availability, and violating the agreement with
zap2it because I don't have the right to use their data for commercial
purposes.

It's not about reselling zap2it's free service, which would get you
hot water very quickly. It's about using zap2it's free service as a
selling point for a decidedly commercial venture -- selling hardware
that runs MythTV (or a closed, rebranded MythTV that violates the
GPL).

That is why your HO is 100% wrong.

We here are very fortunate to have zap2it provide listings for us for
free -- without program data there would be far fewer people using
Myth, and far less development at a much slower pace. We would like to
continue to recieve zap2it data, and therefore do not like it when
people do things that threaten this service (let alone when they try
to rip the GPL out of Myth).

We are also very fortunate to have a commercial venture called LxM
which provides listings and other value-added services for MythTV for
a very reasonable price, and which respects the open foundation upon
which MythTV was built, as well as expressly giving back to the
further development of the project.

The moral of the story is that if you sell Myth boxes, it is a
commercial venture. If it is a commercial venture the seller cannot
give away zap2it's data, but can and should steer the customer to LxM,
which also provides data. This also means that the commercial venture
contributes back to community at least indirectly through LxM
subscriptions, and hopefully directly, since anyone selling them
surely has some ideas how to improve Myth and the time to do so,
especially because working with Myth would be a full-time job.

Get it?
___
mythtv-users mailing list
mythtv-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