2024-09-03, 18:25
A very important function of Extended Info does not work: "Use as thumbnail" and "Use as fanart".
Is there any chance to fix it?
Is there any chance to fix it?
Quote:A very important function of Extended Info does not work: "Use as thumbnail" and "Use as fanart".
Is there any chance to fix it?
Quote:In Extendedinfo no actor biography is displayed in the selected language, only in English.I put in your fix, but note that if the requested language translation is not available, you will get "No information available". There doesn't seem a convenient way to get a fallback for that.
(2024-06-23, 01:08)Fuchs2468 Wrote: I got the query "seasoninfo" to work.
I changed line 135 in version 6.0.7 or line 137 in version 6.0.8 in the file "windowmanager.py".
Original code (doesn't work):
replaced with (works):Code:season=max(0, season),
Code:season=season,
season=max('0', season),
(2024-09-04, 08:46)voot Wrote: "Use as thumbnail" / "Use as fanart"What skin is that image from?
This function appears as a context menu to a poster or fanart image. It allows you to select any fanart or poster in any language and use them as movie/TV show graphics in Kodi library.
Very useful functionality, I have been using it for many years.
Screenshot:
https://imgur.com/a/r6ScySh
(2024-09-04, 21:43)scott967 Wrote: I admit when I took over maintaining this, it was because I was using it in my Aeon MQ5 skin mods, so my testing was mostly in that skin. I need to build a test window that can call all the entry points into the addon so I can do better testing. That's what I am working on at this moment.
scott s.
.
Quote:The problem is the query "seasoninfo" does not work and returns an error.I see that the proposed mods will get past the immediate issue. But the problem is doing runscript with info=seasoninfo isn't documented in the readme, so I have to reverse engineer what's going on. I found that the underlying windowmanager method is called in couple different places. I need to track down what those calls are doing so I understand the design prior to making a change.
(2024-09-15, 06:11)scott967 Wrote: script.extendedinfo-6.0.9-beta.1 available as zip here:
https://github.com/scott967/script.exten...0.9-beta.1
scott s.
.
Quote:The regionCode parameter instructs the API to return search results for videos that can be viewed in the specified country.
The relevanceLanguage parameter instructs the API to return search results that are most relevant to the specified language. Please note that results in other languages will still be returned if they are highly relevant to the search query term.
(2024-09-15, 06:11)scott967 Wrote: script.extendedinfo-6.0.9-beta.1 available as zip here:It works, except for one thing:
RunScript(script.extendedinfo,info=moviedbbrowser,search=True)
2024-09-16 20:45:58.792 T:4746 error <general>: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<--
- NOTE: IGNORING THIS CAN LEAD TO MEMORY LEAKS!
Error Type: <class 'TypeError'>
Error Contents: '>' not supported between instances of 'str' and 'int'
Traceback (most recent call last):
File "/storage/.kodi/addons/script.extendedinfo/default.py", line 103, in <module>
Main()
File "/storage/.kodi/addons/script.extendedinfo/default.py", line 69, in __init__
listitems = process.start_info_actions(info, self.params)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/storage/.kodi/addons/script.extendedinfo/resources/lib/process.py", line 356, in start_info_actions
if result and result > -1:
^^^^^^^^^^^
TypeError: '>' not supported between instances of 'str' and 'int'
-->End of Python script error report<--