OpenELEC Testbuilds for RaspberryPi (Kodi 17.0)
(2016-01-01, 16:31)MikeKL Wrote: No ITV Player catch-up or Live stream play back in#1229, but with #1228 ITV Player streaming works fine?

I've tracked it down to: https://github.com/xbmc/xbmc/pull/8525

The ITV player was using a deprecated API for playback that is now removed. Edit default.py:
Code:
xbmc.Player(xbmc.PLAYER_CORE_MPLAYER).play(pl)
to
Code:
xbmc.Player().play(pl)

and
Code:
player = xbmc.Player(xbmc.PLAYER_CORE_AUTO)
to
Code:
player = xbmc.Player()
and I think it will work again.


Messages In This Thread
RE: OpenELEC Testbuilds for RaspberryPi (Kodi 17.0) - by popcornmix - 2016-01-02, 14:16
RPI 3 no internet access on wifi - by b1m1 - 2016-03-09, 14:44
Logout Mark Read Team Forum Stats Members Help
OpenELEC Testbuilds for RaspberryPi (Kodi 17.0)6