Question about trakt script scrobbling
#1
Question 
I want to scrobble internet streams to trakt.tv (burningseries addon). Is it enough to add listitem.setInfo to xbmc.Player().play for trakt.tv scrobbler to detect and scrobble watched episodes?

Thanks for your help!
Reply
#2
Yes, all you need is to give Player info

PHP Code:
xbmcgui.ListItem(labelpath self.filename.encode('utf-8'))
i.setInfo(type='video'infoLabels={    'title':      label,
                                                        
'episode'self.episodeId,
                                                        
'season'self.seasonId,
                                                        
'tvshowtitle'title})
i.setProperty('IsPlayable''true')
xbmc.Player().play(self.filename.encode('utf-8'), i

not really sure if everything there is necessary, but it works
Reply
#3
Thank you- works like a charm :-) Additionally, there is nice detailed info in OSD, great!
Reply
#4
Hey, it's old, but how do I do this stuff with the code?

Thanks
Reply

Logout Mark Read Team Forum Stats Members Help
Question about trakt script scrobbling0