MediaPortal Forums HTPC/MediaCenter

Go Back   MediaPortal Forum » MediaPortal TV-Server 1 » Get Support


Get Support Problems with the TV-Server or Client? Post them in here.

Reply
 
LinkBack Thread Tools Display Modes
Old 2007-06-24, 11:32   #1 (permalink)
Portal Member
 
mycrow's Avatar
 
Join Date: Jul 2006
Location: Berlin
Posts: 43
Thanks: 0
Thanked 0 Times in 0 Posts

My System

Question Sleep/Standy issue for single seat setup

TV-Server Version: latest SVN
MediaPortal Version: latest SVN
MediaPortal Skin: Replicant
Windows Version: XP SP2 + updates
CPU Type: Athlon64 3700+
HDD: Samsung 250GB
Memory: 1 GB DDR400
Motherboard: AsRock dual VSTA
Motherboard Chipset: ALI M1563
Motherboard Bios:
Video Card: Asus EN7600GS silent
Video Card Driver: latest Nvidia
Sound Card: onboard
Sound Card AC3:
Sound Card Driver:
1. TV Card: DNTV Live! Tiny USB2
1. TV Card Type: DVB-T
1. TV Card Driver: 1.6.1
MPEG2 Video Codec: Nvidia Purevideo
MPEG2 Audio Codec: ffdshow
HTPC Case: Arctic Cooling T1
Cooling: Coolermaster HyperTX
Power Supply: Arctic Cooling 340W
Remote: Logitech Harmony 555


Using the new TVEngine since yesterday and i love it !!
Unfortunately i am not able to put the computer to standby while TV is running.

I'm aware it's probably not a bug but a feature. Standy is prevented by the server
when streams are active.
But can I switch this feature off or even better:
Have the option of allowing standby while watching tv but not while recording ?
I had a look at the settings in the TVE setup and the powerscheduler but no luck.

I think in a single seat environment, it should be possible to put the computer to standby while tv is running.
At the moment, I have to quit Mediaportal, wait for the server to go idle and then put the machine to standby.

Any solution that i've missed ?

Last edited by mycrow; 2007-06-24 at 11:35.
mycrow is offline   Reply With Quote
Old 2007-09-01, 22:51   #2 (permalink)
Portal Member
 
Join Date: Jan 2007
Posts: 55
Thanks: 5
Thanked 5 Times in 4 Posts

Country:

My System

Default

bump... i'm having this issue too, it was extremely nice when TV .2 would go into standby when the TV is running.
bobbyd87 is offline   Reply With Quote
Old 2007-09-04, 10:22   #3 (permalink)
Portal Member
 
Join Date: Sep 2004
Location: Austria/Styria
Posts: 51
Thanks: 0
Thanked 0 Times in 0 Posts


Default

Hi,

I had this problem in the TV engine 3.0 too. I personally have changed the following routine in TVController to ...

public bool CanSuspend
{
get
{
//Log.Debug("TVController.CanSuspend: checking cards");

User user = new User();
Dictionary<int, ITvCardHandler>.Enumerator enumer = _cards.GetEnumerator();
while (enumer.MoveNext())
{
int cardId = enumer.Current.Key;
User[] users = _cards[cardId].Users.GetUsers();
if (users != null)
{
for (int i = 0; i < users.Length; ++i)
{
if (_cards[cardId].Recorder.IsRecording(ref users[i]))
{
Log.Debug("TVController.CanSuspend: Recording of user {0} is running -> cannot suspend", users[i].Name);
return false;
}
if ( _cards[cardId].TimeShifter.IsTimeShifting(ref users[i]) && users[i].Name != user.Name)
{
Log.Debug("TVController.CanSuspend: User {0} has timeshift running -> cannot suspend", users[i].Name);
return false;
}
}
}
}

.
.
.


this allows for me in a single seat setup to go standby if TV is running. Maybe there are some drawbacks - maybe a developer can check the code.


Regards

Joe
styriaman is offline   Reply With Quote
Old 2007-09-04, 11:09   #4 (permalink)
MP Donator
 
joystick's Avatar
 
Join Date: Jan 2006
Posts: 331
Thanks: 7
Thanked 14 Times in 11 Posts

Country:

My System

Send a message via ICQ to joystick Send a message via Skype™ to joystick
Default

hm, I don't get the point, where is the advantage of going to standby (automatically) with TV running?

I mean, if you tell MP to go to sleep after 10 min. when your watching TV doesn't seem to make sense to me. Except you actually need a "sleeptimer", which is something different.
MP goes to standby in Homescreen (!) after the time set in Powerscheduler.

cheers

joystick
__________________
C2D 6550, 3gb, ASUS P5K-E WiFi AP, 2*500 GB Samsung Sata, 3TB Nas over Powerline,2x FloppyDTV DVB-C+, Alphacrypt, HIS ATI HD2600XT 256MB, Zalman HD160+Irmon, Harmony One + DiNovo Mini, MP 0.2.3 + Tv Server latest SVN, WinXP SP2
joystick is offline   Reply With Quote
Old 2007-09-04, 15:48   #5 (permalink)
Portal Member
 
Join Date: Jan 2007
Posts: 55
Thanks: 5
Thanked 5 Times in 4 Posts

Country:

My System

Default

The issue here is that TVServer 3 prevents you from hitting the Sleep/Suspend button on both your keyboard and remote while it is streaming. This is particularly an issue for single seat setups when you are pretty much done watching tv and want to hit the sleep button to turn off the computer like you were able to do with myTV .2. Instead you have to quit to the home screen, then manually stop the TVstream, then after a few seconds you can power down. Quite a few more steps on a process that was as easy as hitting the power button on your remote before.
Quote:
Originally Posted by joystick View Post
hm, I don't get the point, where is the advantage of going to standby (automatically) with TV running?

I mean, if you tell MP to go to sleep after 10 min. when your watching TV doesn't seem to make sense to me. Except you actually need a "sleeptimer", which is something different.
MP goes to standby in Homescreen (!) after the time set in Powerscheduler.

cheers

joystick
bobbyd87 is offline   Reply With Quote
Old 2007-10-22, 16:24   #6 (permalink)
Portal Member
 
Join Date: Mar 2007
Posts: 66
Thanks: 0
Thanked 1 Time in 1 Post

Country:

My System

Default

Hi there!

I am having the same problem (cannot turn off resp. suspend my HTPC via my remote's sleep button using TvServer single-seat). As an intermediate solution, I have written a small app that on "suspend" 1) terminates client 2) stops TvService 3) kills TvService. After resume, it does everything reverse.

I am still waiting for this issue fixed in TvServer, since this way I cannot let the machine wake up for pending recordings... Please help!
tatus is offline   Reply With Quote
Old 2007-10-22, 20:35   #7 (permalink)
Portal Member
 
Join Date: Oct 2006
Posts: 19
Thanks: 0
Thanked 0 Times in 0 Posts

Country:

My System

Default

Hi, This is what I did: Configure the Power-button of your remote to switch to the homescreen, and then use the <normal> powerscheduler.
wimpies is offline   Reply With Quote
Reply

Bookmarks

Tags
seat, setup, single, sleep or standy

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
No video on single seat sdalberg Get Support 28 2007-11-13 15:41
Single seat without networking risu Improvement Suggestions 16 2007-08-01 21:06
Help! 100 % CPU usage on single seat setup Sethiano support 4 2007-06-18 18:53
Single-Seat setup fails when wireless is interrupted Noelix pre 1.0 RC1 6 2007-05-31 04:47
How to detect single seat setup? gemx General Development (no feature request here!) 0 2007-03-08 08:21


All times are GMT +1. The time now is 16:35.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0 Protected by Akismet Blog with WordPress