WebgrabPlus using linuxserver docker image on ubuntu (probably v2.1.0/beta v2.1.9)
I am new to webgrabplus and try to use it with emby and/or plex. I am using vodafone.de.ini and try to convert onscreen to xmltv_ns, at least I think that is the format plex and/or emby can use.
The ini is still the unchanged http://www.webgrabplus.com/sites/default/files/download/ini/info/siteini...
Will it be the same solution for other sites like tvdigital.de.ini or klack.de.ini?
Thank you a lot in advance.
Edit:
Just to add to the subject, I found out that emby/plex indeed require xmltv_ns to correctly display episode/season, so at least I am on the right track here.
Should be enough to change in "site" line to episodesystem=xmltv_ns instead of "onscreen"
Lol really that simple? Thanks. In the mean time a found a solution on the Plex forum, I added
episode.modify {set('episode' not= "")|'episode'\|'episode'(system=xmltv_ns)}
after the episode scrub, which gives me an extra entry with xmltv_ns, as well as the old onscreen one.
Lol good for you, anyway that was "the old way" which is now automated,
"episode.modify {set('episode' not= "")|'episode'\|'episode'(system=xmltv_ns)}"
if you analyze the string you say:
set and modify the episode element (if episode not empty) to episode and episode system=xmltv_ns (if you need both systems...very rare cases)
which is now automated to site line episodesystem=xxxxx wg++ will do the trick ;) of course a media player use only one or the other
Good to know, thanks for your input!