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
with:
Or something similar on IExternalPlayer.
Regards, Symphy
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;
}
Code:
public virtual bool Play(string strFile, int beginPositionMS, int startPositionMS, int endPositionMS)
{
return Play(strFile);
}
Regards, Symphy