I found another thread somewhere else that is talking about the delay was needed before you start playing the stream. it is DVB Owners Discussion Forum - dvbowners.com > Latest version of XBMC Script v0.63.
Thanks for that thread, I will try adding the delay into the xbmcplugin_list.py before the play starts:
...
ok = xbmcplugin.addDirectoryItem( handle=int( self._handle ), url=url, listitem=listitem, isFolder=False, totalItems=2 )
time.sleep(2)
xbmc.Player().play(result)
....
Let me know if I did something wrong, I am totally new to Python scripting.
I will try it tonight and possibly fiddle with the delay value to see how it goes.
Thanks for that thread, I will try adding the delay into the xbmcplugin_list.py before the play starts:
...
ok = xbmcplugin.addDirectoryItem( handle=int( self._handle ), url=url, listitem=listitem, isFolder=False, totalItems=2 )
time.sleep(2)
xbmc.Player().play(result)
....
Let me know if I did something wrong, I am totally new to Python scripting.
I will try it tonight and possibly fiddle with the delay value to see how it goes.