No rec icon on live tv fullscreen on the OSD !? (1 Viewer)

MoPhat

Retired Team Member
  • Premium Supporter
  • June 17, 2007
    816
    226
    Berg
    Home Country
    Switzerland Switzerland
    Hi, im noticed that if i be on the tv fullscreen mode and hit the y key for the osd no recording logo is showing (of course there was a recording ;) )...

    how and in which screen file can i enable this logo again?
    i think that in the RC versions i have seen this logo on the top...

    p.s. i have tested some skins like the blue wide and monochrome - no rec. logo.

    any idea?

    thanks
    MoPhat
     

    Psycho Reptile

    Retired Team Member
  • Premium Supporter
  • April 19, 2006
    1,316
    787
    Cambridge, England
    Home Country
    United Kingdom United Kingdom
    Using version 1.1 of Monochrome and pressing Y while recording TV you get this. Notice the rec logo below the channel icon :D .

    FYI I'm running MediaPortal-svn--01-07-2008--01-04-Rev16940 ;)
     

    Attachments

    • Untitled-32.jpg
      Untitled-32.jpg
      115.5 KB

    MoPhat

    Retired Team Member
  • Premium Supporter
  • June 17, 2007
    816
    226
    Berg
    Home Country
    Switzerland Switzerland
    i've tested now and i see the rec icon now... but only if i am on the channel which records.

    on other channels is there no rec icon (!?!?!?)

    can this be a bug?
    MoPhat
     

    MoPhat

    Retired Team Member
  • Premium Supporter
  • June 17, 2007
    816
    226
    Berg
    Home Country
    Switzerland Switzerland
    No, it doesnt work with blue two wide - no rec icon on other channels.

    where can i post this bug, or can you post this?

    thanks
    MoPhat
     

    THDBASED

    Portal Pro
    January 30, 2006
    469
    2
    Home Country
    Belgium Belgium
    Maybe it is the way it was meant to be? Only show the rec icon on the channel that is being recorded...
     

    MoPhat

    Retired Team Member
  • Premium Supporter
  • June 17, 2007
    816
    226
    Berg
    Home Country
    Switzerland Switzerland
    thats not very good... because MP+TVS3 avoids not to go into standby if a recording is ongoing on vista (its a bug and in mantis : https://forum.team-mediaportal.com/...n_remote-t33667.html?t=33667&highlight=mophat) :mad:

    the only thing is to check if a recording is ongoing - and i will not check every time the hole channel list and the channel groups... (my wife doesnt understand why she should do that ;) )

    - if the record icon is on every channel then i now => MP is recording something.
    - if i switch to a channel which are currently recordied then i see this on the channel.

    can i modify the skin to display the rec icon on every channel, can i use the object id from the rec icon in the tv home screen?

    thank you
    MoPhat
     

    MoPhat

    Retired Team Member
  • Premium Supporter
  • June 17, 2007
    816
    226
    Berg
    Home Country
    Switzerland Switzerland
    How can i make this that the rec icon is visible on all channels?

    thanks
    MoPhat
     

    MoPhat

    Retired Team Member
  • Premium Supporter
  • June 17, 2007
    816
    226
    Berg
    Home Country
    Switzerland Switzerland
    Hi, i have checked the sources and i think if we change this line of code from


    TvPlugin\TvOSD.cs
    Code:
          // Set recorder status
          if (imgRecIcon != null)
          {
            VirtualCard card;
            TvServer server = new TvServer();
            imgRecIcon.Visible=server.IsRecording(GetChannelName(), out card);
          }

    to

    TvPlugin\TvOSD.cs
    Code:
          // Set recorder status
          if (imgRecIcon != null)
          {
            VirtualCard card;
            TvServer server = new TvServer();
            if (server.IsRecording(GetChannelName(), out card))
            {
                imgRecIcon.Visible = true;
            }
            else
            {
                imgRecIcon.Visible = false;
            }      
           }

    then should the icon on every channel visible.

    i will try this :D
    MoPhat
     

    Users who are viewing this thread

    Top Bottom