TVE2/Powerscheduler: Scheduled recording does not start after resume and blank screen (1 Viewer)

jalaman

Portal Member
January 5, 2006
13
0
TV-Server Version: N/A
MediaPortal Version: MP 0.2.3 RC2
MediaPortal Skin: BlueTwo wide
Windows Version: Windows XP Pro SP2
CPU Type: Intel Core2 Duo 2.13
HDD: Samsung 500GB
Memory: 2GB DDR2
Motherboard: ASUS
Motherboard Chipset:
Motherboard Bios:
Video Card: Nvidia 8500GT
Video Card Driver:
Sound Card: ADI
Sound Card AC3: optical out
Sound Card Driver:
1. TV Card: FloppyDTV
1. TV Card Type: DVB-C
1. TV Card Driver:
2. TV Card: Hauppauge PVR 350
2. TV Card Type: analog
2. TV Card Driver:
3. TV Card:
3. TV Card Type:
3. TV Card Driver:
4. TV Card:
4. TV Card Type:
4. TV Card Driver:
MPEG2 Video Codec: CCCP + Nividia PureVideo
MPEG2 Audio Codec:
Satelite/CableTV Provider: Canal Digital
HTPC Case: Antec Fusion
Cooling:
Power Supply:
Remote: MCE Remote
TV: Samsung LE46M87
TV - HTPC Connection: DVI-HDMI

-Scheduled recording at 23.35
-Powerscheduler wakes the pc up at 23.29 as supposed with 5 min pre event
-1st problem: Screen is blank. Can get the screen back with several CTRL+ALT+DEL
-2nd problem: The recording does not start. If I close MP, and start it, the recording starts
 

Mr Hipp

Retired Team Member
  • Premium Supporter
  • April 2, 2006
    1,261
    188
    56
    Malmö
    Home Country
    Sweden Sweden
    I can confirm that recording does not start. I have testen on two diffreent machines (using DVB-T / analog Tv card). It appears to happend in svn between 27/8 and 3/9.

    Mr Hipp
     

    jalaman

    Portal Member
    January 5, 2006
    13
    0
    The not recording issue seems to be solved in SVN 09-08-2007.

    But the screen blank after resume is still there and [Debug][MPMain]: d3dapp: DeviceLostException is flooding the log until I press a key
     

    Mr Hipp

    Retired Team Member
  • Premium Supporter
  • April 2, 2006
    1,261
    188
    56
    Malmö
    Home Country
    Sweden Sweden
    Can't confirm that this has been fixed. Tried latest SVN

    Roy - can you please check.

    MP is waking up, but nothing is recorded, this is TVE2.

    Regards
    Mr Hipp
     

    Mr Hipp

    Retired Team Member
  • Premium Supporter
  • April 2, 2006
    1,261
    188
    56
    Malmö
    Home Country
    Sweden Sweden
    Found the problem, from mediaportal.cs
    ...
    if (!Recorder.Running)
    {
    Log.Info("Main: OnResume - Starting recorder");

    // this only makes sense if we have cards configured
    // if no cards are configured then we are probably using tve3.
    // when resuming from hibernation
    if (Recorder.Count > 0)
    {
    Recorder.Start();
    }
    if (turnMonitorOn)
    {
    SetThreadExecutionState(oldState);
    }
    }

    But...
    /// <summary>
    /// Returns the number of tv cards configured
    /// </summary>
    static public int Count
    {
    get
    {
    if (!Running) return 0;
    return _commandProcessor.TVCards.Count;
    }
    }

    So recorder is never started. This means that we can scrap RC2.... :-(
     

    Users who are viewing this thread

    Top Bottom