Hi guys and happy new year,
I'm using horizontv (romanian and hungarian) as a guide source to create the xml that i'm using afterwards in Plex. For a series to be detected as a series, Plex needs to have the category of the show labeled as "show" which in some circumstanced does not exist. The second thing Plex needs is to have this type of episode numbering system: <episode-num system="original-air-date">2018.01.01 03:03:03</episode-num> and this is not the case as it does not exist.
Needed modification that I would like to add in the ini:
1. Enrich the category type
If "<category lang="hu">Filmvígjáték</category>" exist then
create a new one just under it "<category lang="hu">show</category>"
2. Enrich the episode-num system
If <episode-num system="onscreen"> exist then
create a new one just under it, <episode-num system="original-air-date">"Programme start date in yyyy.mm.dd hh:mm:ss format"</episode-num>
example:
from:
<episode-num system="onscreen">E5</episode-num>
to:
<episode-num system="original-air-date">2019.01.01 01:45:00</episode-num>
knowing the program start time is in the programme start line : <programme start="20190101014500 +0000" stop="20190101020500 +0000" channel="572">
3. Add a category type for each programme that has the <episode-num system="onscreen"> line:
If "<episode-num system="onscreen">E6</episode-num>" exist then create a new line
"<category lang="hu">show</category>"
example:
from:
"<episode-num system="onscreen">E6</episode-num>"
to:
"<episode-num system="onscreen">E6</episode-num>"
"<category lang="hu">show</category>"
This is needed because in some circumstances the only way yo identify that a program is a show is that it has the <episode-num system="onscreen"> line present, the categories are too generic.
Thanks in advance!