CUE support -> External players (1 Viewer)

Symphy

Retired Team Member
  • Premium Supporter
  • August 25, 2007
    501
    151
    Groningen
    Home Country
    Netherlands Netherlands
    Dear developers,
    Since the CUE support is added, all external player plugins are broken. Can easily be fixed though:

    On the MediaPortal.Player.IPlayer, Replace
    Code:
        public virtual bool Play(string strFile, int beginPositionMS, int startPositionMS, int endPositionMS)
        {
          return false;
        }
    with:
    Code:
        public virtual bool Play(string strFile, int beginPositionMS, int startPositionMS, int endPositionMS)
        {
          return Play(strFile);
        }
    Or something similar on IExternalPlayer.

    Regards, Symphy
     

    Users who are viewing this thread

    Top Bottom