You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
i made some small player with classic method self.session.playService(), and now i am trying to init subssupport classes into my player to download and load downloaded subtitles. Everything is great if the movie has no embedded subtitles. Subtitles are downloaded and loaded. But if the movie has embedded subtitles then the issue is that embedded stays on, downloaded are not loaded at all. Even if i change embeddedSupport=True args to False.
Any idea why?
my example code:
from Plugins.Extensions.SubsSupport import SubsSupport, SubsSupportStatus, initSubsSettings
class my_player(Screen, SubsSupportStatus, SubsSupport):
def __init__(self, session, player):
Screen.__init__(self, session)
initSubsSettings()
SubsSupport.__init__(self, embeddedSupport=True, searchSupport=True)
SubsSupportStatus.__init__(self)
sref = eServiceReference(player, 0, "/path/.../)
# etc ....
# code for playing ...
The text was updated successfully, but these errors were encountered:
Hi,
i made some small player with classic method
self.session.playService()
, and now i am trying to init subssupport classes into my player to download and load downloaded subtitles. Everything is great if the movie has no embedded subtitles. Subtitles are downloaded and loaded. But if the movie has embedded subtitles then the issue is that embedded stays on, downloaded are not loaded at all. Even if i change embeddedSupport=True args to False.Any idea why?
my example code:
The text was updated successfully, but these errors were encountered: