Kodi Community Forum
Release script.embuary.helper - a skin helper service / widgets alternative - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Development (https://forum.kodi.tv/forumdisplay.php?fid=32)
+--- Forum: Skinning (https://forum.kodi.tv/forumdisplay.php?fid=12)
+---- Forum: Skin helper addons (https://forum.kodi.tv/forumdisplay.php?fid=300)
+---- Thread: Release script.embuary.helper - a skin helper service / widgets alternative (/showthread.php?tid=345471)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28


RE: script.embuary.helper - a (maybe) skin helper service / widgets alternative - sualfred - 2019-07-29

Just add a label control with <label>$INFO[ListItem.SortLetter]</label> and place it in the front of the list container. It always returns the current active one.


RE: script.embuary.helper - a (maybe) skin helper service / widgets alternative - bsoriano - 2019-07-29

(2019-07-29, 15:57)sualfred Wrote: Just add a label control with <label>$INFO[ListItem.SortLetter]</label> and place it in the front of the list container. It always returns the current active one.
Thanks! I will try that.

Regards,

Bart


RE: script.embuary.helper - a (maybe) skin helper service / widgets alternative - beatmasterrs - 2019-07-29

Is there a possibility in the future with your script to retreive "FileNameAndPath", when there is only DBID? Smile


RE: script.embuary.helper - a (maybe) skin helper service / widgets alternative - sualfred - 2019-07-29

With the getbydbid method you will receive everything what is available. It basically just queries the database with the provided DBID and DBType and returns everything that is available. Incl. FilenameAndPath, ListItem.AudioLanguage(%i), etc.


RE: script.embuary.helper - a (maybe) skin helper service / widgets alternative - Hitcher - 2019-07-29

(2019-07-29, 16:53)sualfred Wrote: With the getbydbid method you will receive everything what is available. It basically just queries the database with the provided DBID and DBType and returns everything that is available. Incl. FilenameAndPath, ListItem.AudioLanguage(%i), etc.
Doesn't that affect performance though?


RE: script.embuary.helper - a (maybe) skin helper service / widgets alternative - sualfred - 2019-07-29

Not really. At least not in my testings. It's just one item that is going to be fetched.


RE: script.embuary.helper - a (maybe) skin helper service / widgets alternative - cartman.dos - 2019-07-29

I really like the implementation concept. Now a service module that sets the ratings in database separately will compliment nicely. (not a request just sharing thoughts on future replacement for SH)


RE: script.embuary.helper - a (maybe) skin helper service / widgets alternative - Hitcher - 2019-07-29

Universal Movie Scraper does TMDB, IMDB, MetaCritic, and Rotten Tomatoes.


RE: script.embuary.helper - a (maybe) skin helper service / widgets alternative - beatmasterrs - 2019-07-29

(2019-07-29, 16:53)sualfred Wrote: With the getbydbid method you will receive everything what is available. It basically just queries the database with the provided DBID and DBType and returns everything that is available. Incl. FilenameAndPath, ListItem.AudioLanguage(%i), etc.

works like a charm Smile


RE: script.embuary.helper - a (maybe) skin helper service / widgets alternative - chrissix666 - 2019-07-30

(2019-07-29, 11:01)sualfred Wrote: It's not limited to Rotten ratings. All possible and available ratings of the library will be filled to the getbydbid hidden list. But to prevent mistakes: I only return what the scraper has added to the database.
Really nice! Cause it's a bypass, have you tested how much the visible delay in views is? 0,5 - 1,0 sec or more?
 
(2019-07-29, 22:19)Hitcher Wrote: Universal Movie Scraper does TMDB, IMDB, MetaCritic, and Rotten Tomatoes.
Media Companion does also the job of all these ratings well. 
Ratings and Votes for tomatometerallcritics is working well up to now.
Unfortunately Ratings and Votes for tomatometerallaudience i get since 4th June 2019 in 90% of cases no more data anymore. -> https://forum.kodi.tv/showthread.php?tid=129134&pid=2860531#pid2860531
It worked 100% well before. Both Rotten Tomatoes data is from OMDB. OMDB maintainer didn't responed to my E-Mails as i demanded. Although I am a patron.
 
(2019-07-29, 19:43)sualfred Wrote: Not really. At least not in my testings. It's just one item that is going to be fetched.
On my side it's also not affecting the performance, on use there is just about a visible delay of approximately 1 second.


RE: script.embuary.helper - a (maybe) skin helper service / widgets alternative - sualfred - 2019-07-30

In my video from a above there is a delay of ~200ms.


RE: script.embuary.helper - a (maybe) skin helper service / widgets alternative - sualfred - 2019-08-02

Big thanks for @jurialmunkey
His recently work on the plugin tmdb data approach made me finally starting to work on something what was on my list since a few months.

Since Phil is missing in action and ExtendedInfo is unmaintained and in a very bad shape:
Embuary Helper will get its rich actor and video info feature. The basics, the queries, the window custructor etc. is already working. Now I only have to deal with all properties and their stored information.

Current WIP stage:



RE: script.embuary.helper - a (maybe) skin helper service / widgets alternative - bsoriano - 2019-08-02

(2019-08-02, 20:37)sualfred Wrote: Big thanks for @jurialmunkey
His recently work on the plugin tmdb data approach made me finally starting to work on something what was on my list since a few months.

Since Phil is missing in action and ExtendedInfo is unmaintained and in a very bad shape:
Embuary Helper will get its rich actor and video info feature. The basics, the queries, the window custructor etc. is already working. Now I only have to deal with all properties and their stored information.

Current WIP stage:
Way to go @sualfred! Smile

Regards,

Bart


RE: script.embuary.helper - a (maybe) skin helper service / widgets alternative - sualfred - 2019-08-02

But before I make wrong promises:
It will be only a lightweight version. Only the regular actor and video info screen. No unnecessary informations like what an actor is wearing at night etc. For all other stuff Jurial's plugin will be the way to go.


RE: script.embuary.helper - a (maybe) skin helper service / widgets alternative - bsoriano - 2019-08-02

(2019-08-02, 21:17)sualfred Wrote: But before I make wrong promises:
It will be only a lightweight version. Only the regular actor and video info screen. No unnecessary informations like what an actor is wearing at night etc. For all other stuff Jurial's plugin will be the way to go.
Understood, and will be greatly appreciated!

Regards,

Bart