• 1
  • 150
  • 151
  • 152(current)
  • 153
  • 154
  • 155
Release script.extendedinfo
A very important function of Extended Info does not work: "Use as thumbnail" and "Use as fanart".
Is there any chance to fix it?
Reply
OK I have a beta ver 6.0.8 on my github.  So far there isn't anything important in the beta but I will be working on an update.
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?

TBH, I didn't even know that feature.  How did you get that?

scott s.
.
Reply
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.

scott s.
.
Reply
"Use as thumbnail" / "Use as fanart"
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
Reply
(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):
Code:
season=max(0, season),
replaced with (works):
Code:
season=season,

What about changing it to
Code:
season=max('0', season),
Reply
(2024-09-04, 09:40)malvinas2 Wrote: What about changing it to
Code:
season=max('0', season),
Yes, that works too.
Reply
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.
.
Reply
(2024-09-04, 08:46)voot Wrote: "Use as thumbnail" / "Use as fanart"
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
What skin is that image from?

scott s.
.
Reply
Aeon Nox SiLVO (little modified by me).
Reply
(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.
.

Titan MOD has complete video info support for "script.extendedinfo", so you can test everything and don't have to create a new test window.
With the latest update for omega from today.

Look here: https://forum.kodi.tv/showthread.php?tid...pid3208779
Reply
OK I have been testing my dev version 6.0.8 and am getting ready to PR to the Kodi script repo.  The release version will be 6.0.9.  What is left is:
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.

I think I have fixed the other known issues.  Once I get this seasoninfo sorted I will post a beta version of 6.0.9 on my github that could be tested prior to submitting a PR to the Kodi script repo.  6.0.9 should work on Matrix -- Piers (I do my testing on Piers).  Pending placing a beta zip I do have a branch for 6.0.9 if you know how to use github branches.

scott s.
.
Reply
script.extendedinfo-6.0.9-beta.1 available as zip here:

https://github.com/scott967/script.exten...0.9-beta.1

scott s.
.
Reply
(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.
.

Good work, the old version had problems with the correct recognition of TV shows, for example ("The Sopranos (1999)").
The recognition now works perfectly.
"info=seasoninfo" and "info=extendedepisodeinfo" now also work as expected.

Another tip for anyone who wants to update to the new version: make sure to check the language settings of the add-on after the update.
Otherwise there will be problems.
Reply
I could probably write something to migrate the language setting.  This is per current tmdb api which wants language as eg de-DE.  Might make a difference for things like pt-BR.  I don't know how internally tmdb handles language (like does pt-BR fall back to just pt).

I also now have all artwork set to priority setting language >> null >> en.

I haven't looked at language filtering for youtube.  Right now there is a limited list of language codes regionCodes hard-coded for the youtube filter.  It seems like relevanceLanguage is a better choice as a filter to me.  From google:
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.

scott s.
.
Reply
(2024-09-15, 06:11)scott967 Wrote: script.extendedinfo-6.0.9-beta.1 available as zip here:
It works, except for one thing:
In the search menu of the Estuary skin, ExtendedInfo is called up using the command
Code:
RunScript(script.extendedinfo,info=moviedbbrowser,search=True)
The virtual keyboard appears, but after entering a search term an error message from extendedinfo appears.
(see also the issue https://github.com/scott967/script.exten...o/issues/3)


Code:
 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<--
Reply
  • 1
  • 150
  • 151
  • 152(current)
  • 153
  • 154
  • 155

Logout Mark Read Team Forum Stats Members Help
script.extendedinfo29