Posts: 777
Joined: Feb 2007
Reputation:
5
What is the oldest version of trakt that will still work with 12.3? and will trakt utilities still work? the only feature I'm interested in is the logging watched eps, not synch or any of that.
HTPC: Motherboard: Asus F2A85-V, CPU: AMD A10 6800K, RAM: Kingston XMP BEAST 16GB, Samsung 840 EVO 250GB, LG CH12NS30 Blu-Ray drive, Samsung, and WD various 2 and 3TB for storage, Windows 8.1, one for all remote/FLIRC, Logitech z906 surround system.
Posts: 532
Joined: Sep 2010
Reputation:
8
I really like the Trakt.tv service and finally made the full switch over from Followshows.com to Trakt.tv. I installed this plugin and have all my watched flags sync'd with my XBMC library perfectly. However I would really like to see this plugin power the "TV Show Next Aired plugin". I would love to see a calendar view (weekly or monthly) like that offered by "TV Show Next Aired" but not dependent on the TV shows I have in my XBMC library since I have PVR enabled in XBMC using the Windows Media Center plugin.
Also is there anyway we can get this to work with PVR? It would be awesome if I just watched an episode live or via a PVR recording to have it update my Trakt.tv watchlist after the episode aired and I actually watched. I understand that figuring out if I watched an episode live would be harder to do then if I watched the recorded version, but I'm still putting the idea out there.
Posts: 90
Joined: Aug 2012
Reputation:
0
2014-01-03, 16:36
(This post was last modified: 2014-01-03, 16:37 by jiggsaw.)
Slightly off topic but is there anything like trakt for music? I know there is last.fm but it only adds tracks to your library once you've listened to it. I want something to scan my entire library. So I can track what albums/songs I'm missing from certain artists, what I've listened to/not listened to, etc.
Posts: 16
Joined: Jan 2011
Reputation:
1
You could try MusicBrainz.org. You can create your own collection of albums, and there is also a program (Picard) which you can use to scan you digital files or CD's.
Their main purpose is to make "The ultimate source of music information" regarding metadata
Posts: 1,739
Joined: Aug 2011
Reputation:
23
Not sure it belongs here but looked most obvious for me.
I know you can activate a option on trakt.tv to share to social media. That's cool and works but it will share everything!
What I would like to see is a function to share such information on user request.
Do you think that's possible to add?
Posts: 191
Joined: Jan 2013
Reputation:
3
If you delete the scrobble on trakt.tv, but leave them marked as watched in XBMC, on next sync (if configured) it will re-mark them as seen on trakt.tv with the date/time. Movies are the only media that pass a date/time when being marked as seen.
If you don't want it to, you need to unmark them in XBMC and delete them in trakt.tv.
Intel i3 NUC | Windows 8.1 | Kodi Helix | Arctic: Zephyr
Posts: 376
Joined: Jun 2013
Reputation:
3
This doesn't seem to work on android for my Samsung phone. Addon doesn't launch.
OSMC Vero 4K, Intel NUC Celeron 847, ODroid N2+, Raspberry Pi3 LibreELEC. Amazon Fire TV
Vizio Atmos 7.1
LG 65" OLED
Posts: 123
Joined: Jan 2012
Reputation:
0
2014-01-19, 06:33
(This post was last modified: 2014-01-19, 06:33 by flitter2009.)
Hi,
This is a great add-on, thanks everyone for your hard work!!! I'm having trouble making it work with the PVR playback via the MythTV add-on. It notices the playback but doesn't update trakt.
The entries in the log file say
15:01:15 T:139799373543168 NOTICE: [trakt] [traktPlayer] onPlayBackStarted() - {u'item': {u'type': u'unknown', u'label': u'Would I Lie To You? - Miranda Hart, Clare Baldin
g, Dale Winton and Richard Bacon'}}
15:01:15 T:139799373543168 NOTICE: [trakt] checkScrobblingExclusion(): Checking exclusion settings for 'pvr://recordings/Default/Would I Lie To You?/Would I Lie To You? -
Miranda Hart, Clare Balding, Dale Winton and Richard Bacon, TV (22 ABC2 / ABC4), 20140115_091000.pvr'.
15:01:15 T:139799373543168 NOTICE: [trakt] [traktPlayer] onPlayBackStarted() - Started playing a non-library file, checking available data.
15:01:15 T:139799373543168 NOTICE: [trakt] [traktPlayer] onPlayBackStarted() - Non-library file, not enough data for scrobbling, skipping.
So it looks like it can't figure out the name of the show from the stream and i'm guessing it's because the show name coming from the PVR client has the description in it.
I'd like to ask a sensible question to the CMyth plugin developers to help the two to work together but i'm not sure what they need to pass to the trakt add-on to have it identify the show.
Can anyone help? What should the onPlayBackStarted line look like for a successful lookup?
Posts: 191
Joined: Jan 2013
Reputation:
3
For a movie, movie title and year are needed.
For a tv show, show title, episode and season are needed, year is optional.
Intel i3 NUC | Windows 8.1 | Kodi Helix | Arctic: Zephyr
Posts: 123
Joined: Jan 2012
Reputation:
0
I presume they need to be accessed via a variable? Are these the variables that are key to making it work?
season = xbmc.getInfoLabel('VideoPlayer.Season')
episode = xbmc.getInfoLabel('VideoPlayer.Episode')
showtitle = xbmc.getInfoLabel('VideoPlayer.TVShowTitle')
year = xbmc.getInfoLabel('VideoPlayer.Year')