Fri Mar 09, 2007 11:05 pm
I have a newer version that handles commercial skipping more accurately - at least with advancing the stream. It's not automated so just hit the N button when the commercials start to go to the end.
On my web site you will see the need to have a mysql user account without a password. I have tried and cannot get the password part to work despite having followed the directions on the mysql website. As taking off the password is no big deal as you an limit the access to a subnet I am not going to worry about it.
You can add a password back to the access from the backend itself by
set password for 'mythtv'@'localhost' =Password('password of your choice');
This means the roku or other computers on the subnet can acess w/o a password.
My backend is 192.168.1.150 so if you create a user mythtv on that ip and set a password, then the database is password protected only on the backend. I ddi this by
grant all privileges on mythconverg.* to 'mythtv'@'192.168.1.150';
and then
set password for 'mythtv'@'192.168.1.150' =Password('password of your choice');
This overides the removal of password for access from all computers on the subnet. Not sure if this makes sense but I have the database set up so user mythtv is password protected for access on the backend no matter how you log in and not for access from other computers on the subnet.
I have some very terse notes on how to do the admin on mysql, all of this was taken from the mysql online documentation. It is specific to versions 4.1 and above.
I am looking at live tv too, currently you can watch whatever the live tv your tuner is set to but can't change the channel. If you have multiple tuners I am not sure which one you get.
If you would like a version with the livetv option commented out let me know via the forum
Enjoy,
James