Kodi Community Forum
How do series/show episode scrapers work? - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Development (https://forum.kodi.tv/forumdisplay.php?fid=32)
+--- Forum: Scrapers (https://forum.kodi.tv/forumdisplay.php?fid=60)
+--- Thread: How do series/show episode scrapers work? (/showthread.php?tid=305890)



How do series/show episode scrapers work? - zenwryly - 2017-02-05

I've read the wiki pages about how to develop scraper XML:

http://kodi.wiki/view/How_To_Write_Media_Info_Scrapers
http://kodi.wiki/view/Scraper.xml

and I've made my own movies scraper, but I don't understand how the scraper XML for series/show episodes works and I don't see any documentation for most of the stuff I see in addons/metadata.tvdb.com/tvdb.xml.

How do series/show scrapers work? I'm going blind trying to read the C++.


RE: How do series/show episode scrapers work? - ironic_monkey - 2017-02-09

it it's pretty much the same process except GetDetails is for the show info. this returns an url passed through GetEpisodeList which returns the list of episode info urls from the backend. kodi then enumerates episodes, and does a GetEpisodeDetails for each available episode.


RE: How do series/show episode scrapers work? - zenwryly - 2017-02-09

Thanks! Someone should add that to the wiki. :-)