righteousbs wrote:S7eele wrote:If I use the script without using PLEX or Pushover will the Trakt scrobbling from PMS still work?
No, the script pulls videos and metadata hosted from your Plex library, the videos get served through PMS and the respective metaData gets used for Trakt.
S7eele wrote:Is there a way I could implement just the PMS to Trakt scrobbling feature?
Yes, you certainly can customize the script, but you'll need to provide the parameters that associate your video file to Trakt's library in another manner (Trakt Seen Show API). If you are able to provide the meta data required for the Trakt API then you are set to customize the Interfaced script (delete,remove, or diasble the Plex/Pushover classes, add in hooks to your file association software, and rewrite the PMS callback portion to display your preferred folder structure).
you would need to to do something like this...
(Sudo code)
listoffiles = MyInterestingVideos # i use Plex.Unwatched and Plex.RecentlyAdded
for file in listoffiles {
PushFileToPMS(file) # see the "Interface with PMS" portion of the script
}
# scrobble to trakt
if userCommandsScrobble {
metaData = MethodX.CorrelateMetaData(fileToScrobble) # i call Plex.MetaData...you can supplement your own method
trakt.Scrobble(metaData)
}
I used to do my own tv show file association using python and the thetvdb api but I have no need to use it anymore since discovering Plex, I just leave that bit to the professionals. I choose Plex because its a great media library organizer, simple to use and is an accurate meta data matcher, it offers an API to easily pull this sort of information, and supports a number of clients with a great ui (i mainly use it on my ios devices). Okay enough love on Plex. Let me know if you come up with something.
Return to Additions and Plugins
Users browsing this forum: Alexa [Bot] and 8 guests