I'm currently in the process of switching to this scraper from the tvdb scraper. Everything scrapes okay and the switch over process should be pretty painless but I'm coming across a problem with one element in my nfo's. My nfo files are pretty simple as they only contain a title, sort title (sometimes), tags (sometimes), named seasons, a bunch of unique id's and finally a link the correct page to get the rest of the information. To change scraper all I've had to do is change the link from tvdb to tmdb, which I just wrote a script that scanned through all my nfo's and automatically changed the link. I've (double) checked the nfo's and everything is correct.
So the problem is simple, scanning in named seasons doesn't work. So unless tmdb has named the seasons then it'll end up named "Season 1" instead of whatever I named it. Though I know the element is being scanned in correctly because I always include a "Season 99" which I always use namedseason to call it "OP/ED". I have to assume the scraper is overwriting the season names but can't overwrite season 99 as it doesn't exist (hence why I use it).
Here is an example nfo to show more clearly what I am talking about:Thanks for any help you can give.
xml:
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<tvshow>
<title>Arakawa Under the Bridge</title>
<namedseason number="1">Arakawa Under the Bridge</namedseason> <!-- When scanned in this ends up named "Season 1" -->
<namedseason number="2">Arakawa Under the Bridge x Bridge</namedseason> <!-- When scanned in this ends up named "Season 2" -->
<namedseason number="99">OP/ED</namedseason> <!-- This season doesn't exist on tmdb so when scanned in the season is named "OP/ED" -->
<uniqueid default="false" type="tmdb">35423</uniqueid>
<uniqueid default="false" type="tvrage">25620</uniqueid>
<uniqueid default="false" type="imdb">tt1639471</uniqueid>
<uniqueid default="true" type="tvdb">143271</uniqueid>
</tvshow>
https://www.themoviedb.org/tv/35423
Thanks for any help you can give me