2021-07-03, 17:33
Still appears to not be working for me.. i get an error message on the screen but can't identify the error from the log annoyingly..my version shows 3.2.6
(2021-07-03, 17:33)danmedhurst Wrote: get an error message on the screen but can't identify the error from the log annoyingly..my version shows 3.2.6Provide the Debug Log that captures the error
(2021-07-02, 23:30)zer0ner0 Wrote: Is the transition to python versions mandatory as I am waiting for the matrix 19 (osmc)?
(2021-06-22, 11:20)olympia Wrote: I think your situation is extremely rare, but a valid use case, so I added back scraping of runtime at UMS v5.5.3.
(2021-07-03, 23:02)olympia Wrote:(2021-07-03, 13:59)milaq Wrote: Posters and fanart can now be scraped but they are always in english language (en) instead of the configured language (e.g. DE-de).
This is fixed in v3.2.16
(2021-07-03, 13:59)milaq Wrote: Thanks for you endeavours.
But unfortunately, this does _not_ fix the issue correctly.
Posters and fanart can now be scraped but they are always in english language (en) instead of the configured language (e.g. DE-de).
Is there anything I overlooked or is anyone else noticing this?
(2021-07-03, 23:10)olympia Wrote:What's the reason for the slowness of the python scrapers? Is there anything that can be done to speed them up? I've noticed with tv shows, the more seasons & episodes, the slower and very noticeable it is. Is it fetching the entire tv show every scan rather than just fetching episodes that aren't already found in the database?(2021-07-02, 23:30)zer0ner0 Wrote: Is the transition to python versions mandatory as I am waiting for the matrix 19 (osmc)?
No, it's not mandatory. However, there is probably not a lot of reason to use tmdb xml scrapers. Maybe there are a little bit faster, but that's it.
xml:46c46
< <RegExp input="$$1" output="<url>https://www.imdb.com/find?q=\1&s=tt|accept-language=en-us</url>" dest="17">
---
> <RegExp input="$$1" output="<url>https://www.imdb.com/find?q=\1&s=tt/|accept-language=en-us</url>" dest="17">
112c112
< <RegExp input="$INFO[imdbsearchlanguage]" output="<url function="GetAKASearchResults">https://www.imdb.com/find?q=$$9&s=tt|accept-language=$INFO[imdbsearchlanguage]</url>" dest="5+">
---
> <RegExp input="$INFO[imdbsearchlanguage]" output="<url function="GetAKASearchResults">https://www.imdb.com/find?q=$$9&s=tt/|accept-language=$INFO[imdbsearchlanguage]</url>" dest="5+">
(2021-07-05, 18:14)feuxeu77 Wrote: Hi
I faced issues adding some movies to my Library. Namely "Coco", "Dumbo" and "Taxi". UMS could not propose any match, even after I entered the movie title, like "Coco".
Checking the debug logs, I found this line:
2021-07-04 21:40:38.324 T:140491560040192 DEBUG: scraper: CreateSearchUrl returned <url>https://www.imdb.com/find?q=Coco&s=tt/|accept-language=en-us</url>
As you can see, there is a trailing slash after the "tt". Because of this, IMDb doesn't search into titles only but also in names, etc.... If you try with "Coco", you will find in the web page that the first table class="findList" is actually the "Names" section and, as the Regexp doesn't really go into the next sections (I guess because it encounters a </div> before), it fails to parse the Titles list. All this is probably the result of the new IMDb appearance.
I fixed it locally by slightly changing the universal.xml this way (removing the trailing slash in the generated URL):
xml:46c46
< <RegExp input="$$1" output="<url>https://www.imdb.com/find?q=\1&s=tt|accept-language=en-us</url>" dest="17">
---
> <RegExp input="$$1" output="<url>https://www.imdb.com/find?q=\1&s=tt/|accept-language=en-us</url>" dest="17">
112c112
< <RegExp input="$INFO[imdbsearchlanguage]" output="<url function="GetAKASearchResults">https://www.imdb.com/find?q=$$9&s=tt|accept-language=$INFO[imdbsearchlanguage]</url>" dest="5+">
---
> <RegExp input="$INFO[imdbsearchlanguage]" output="<url function="GetAKASearchResults">https://www.imdb.com/find?q=$$9&s=tt/|accept-language=$INFO[imdbsearchlanguage]</url>" dest="5+">
I let you check if this change makes sense or not.
Also note that searching by IMDb ID (like tt2380307) doesn't seem to work neither.
Thanks for your amazing job!
This will allow the regexp to go into the next sections and it seems to give pretty good results (not at many titles as my initial proposal but I can at least find my movies)xml:
<expression repeat="yes" noclean="1"><table class="findList"(.*?)</div</expression>