Jump to content


zakrd

Member Since 12 May 2014
Offline Last Active 17 Sep 2024 19:59
-----

Topics I've Started

Is it possible to keep sref info on infobar after starting http stream?

5 April 2023 - 16:26

Let's assume i want to play http stream in this way, with 4097:

 
from enigma import eServiceReference
curr_sref = "1:0:19:1328:CA2:3:EB0000:0:0:0:"

​url = "http://my_stream..."
self.session.nav.stopService()
service = eServiceReference(4097, 1, url)
self.session.nav.playService(service)

It is obvious all info form curr_sref will disappear from the infobar after .stopService() is executed.

But is it possible to get all back on infobar after i start http stream?
So, after all http stream is playing, but i want to keep all info from the curr_sref on Infobar.