Kodi Community Forum
Adding Addon Videos to Library - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Add-on Support (https://forum.kodi.tv/forumdisplay.php?fid=27)
+---- Forum: Video Add-ons (https://forum.kodi.tv/forumdisplay.php?fid=154)
+---- Thread: Adding Addon Videos to Library (/showthread.php?tid=229561)



Adding Addon Videos to Library - Heggo - 2015-06-14

I am trying to add videos that are accessed through an addon to the video library. This works well for Addons like Amazon Instant Prime, which have an "Add to Library" function. I investigated this and found out, that the addon actually creates a .strm file with the following content:

Code:
plugin://plugin.video.prime_instant/?mode=playVideo&url=xxxxxxxx

Now I am trying to do the same for addons that don´t have that option, but I can´t seem to get it to work. What I did was adding the links to Favourites and afterwards looking at favourites.xml how the addon expects the input. For South Park copying this into another .strm file works:

Code:
plugin://plugin.video.southpark_unofficial/?mode=play&url=5fb5d2aa-ecfd-11e0-aca6-0026b9414f30

However for the Kissanime addon I can´t get it to work. I tried

Code:
plugin://plugin.video.kissanime/?mode=PlayURL&url=http://kissanime.com/Anime/Fairy-Tail-Dub/Episode-175?id=90678
and
Code:
plugin://plugin.video.kissanime/?mode=GetLinks&url=http://kissanime.com/Anime/Fairy-Tail-Dub/Episode-175?id=90678

Do I have to format the URL differently? Does anyone know how this stuff works? Or is there a simpler solution? Smile