Jellyfin Forum
How to make an integration for episode status? - Printable Version

+- Jellyfin Forum (https://forum.jellyfin.org)
+-- Forum: Development (https://forum.jellyfin.org/f-development)
+--- Forum: Plugin Development (https://forum.jellyfin.org/f-plugin-development)
+--- Thread: How to make an integration for episode status? (/t-how-to-make-an-integration-for-episode-status)



How to make an integration for episode status? - PokestarFan - 2023-11-27

I want to make a plugin that updates an external provider whenever I watch an episode of something that is linked to said provider. An example is if I watch an episode of anime and it's an episode that I haven't watched before, I want to update my MyAnimeList entry for that season with the new episode number. I see there is an interface to add stuff to the beginning of a video, so is there an interface to do some action after playback is done (or a sync happens with a client such as Infuse)?


RE: How to make an integration for episode status? - TheDreadPirate - 2023-11-27

Pretty sure this is what you are looking for.

https://github.com/vosmiic/jellyfin-ani-sync


RE: How to make an integration for episode status? - tmsrxzar - 2023-11-27

take a look at the Trakt source, it performs this to the Trakt.tv site so the only real difference for you is the endpoint https://github.com/jellyfin/jellyfin-plugin-trakt


RE: How to make an integration for episode status? - PokestarFan - 2023-11-27

(2023-11-27, 01:53 AM)TheDreadPirate Wrote: Pretty sure this is what you are looking for.

https://github.com/vosmiic/jellyfin-ani-sync

Thank you, this sounds perfect! I wish there was a better way to find plugins because the official plugin repo is very bare.