Release script.embuary.info - get TMDb data - the little ExtendedInfo brother - 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.info - get TMDb data - the little ExtendedInfo brother (/showthread.php?tid=346034) |
RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - pfp-az - 2021-07-19 Thank you! I'm all good now. RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - shedrock - 2021-08-12 @sualfred - Is it possible to have Embuary Info just display 1 episode of a TV Show instead of showing for example 3 episodes on the same TV show in the widgets? Maybe it can group them just like Skin Helper Service Widgets does? Regards, Shedrock RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - sualfred - 2021-08-13 what kind of widget RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - Nanomani - 2021-08-13 Ups, I have post at the wrong place. Sorry RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - shedrock - 2021-08-13 (2021-08-13, 07:19)sualfred Wrote: what kind of widgetSorry, I forgot to mention that. I was referring to the Emburay Info - Airing Today Widget. SH Service Widgets has this feature to group all episodes airing today into 1. I've attached a pic for reference. The pic below shows you the setting in SHS Widgets that is used to accomplish that. Regards, Shedrock RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - sualfred - 2021-08-13 Not possible with my simplified next airing feature. RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - shedrock - 2021-08-13 (2021-08-13, 15:46)sualfred Wrote: Not possible with my simplified next airing feature.Thanks RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - manfeed - 2021-11-01 I keep having this kind of errors:
I guess it's not embuary info's fault but of some dependency, could you please tell me if it can be fixed somehow? It's very frustrating since most of times Kodi just crashes after the error. Thanks a lot! RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - rainman74 - 2021-11-03 (2021-11-01, 22:09)manfeed Wrote: I keep having this kind of errors:Same problem here! RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - sualfred - 2021-11-04 That's a Kodi Matrix Python3 bug. Propably caused by Python 3 subinterpreters. Nothing that I can fix. To be honest, I'm also affected and it made Kodi Matrix not useable for me now. I'm also looking forward to get it fixed by someone who knows what to do. RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - manfeed - 2021-11-04 (2021-11-04, 12:30)sualfred Wrote: That's a Kodi Matrix Python3 bug. Propably caused by Python 3 subinterpreters. Nothing that I can fix. To be honest, I'm also affected and it made Kodi Matrix not useable for me now. I'm also looking forward to get it fixed by someone who knows what to do. Thanks for your explanation. I guess that explains many of the errors that I'm getting... The worst is that people blame my skin. Let's hope it gets fixed someday... RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - nonob - 2021-11-09 Hi , I was searching an extended info script alternative and working with Netflix and Amazon addon. I found it with Embuary Info and Embuary Info - Open dialog Thanks a lot @sualfred RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - senna99 - 2021-11-28 Hi, can anyone help with this code, I need it for videoinfo.xml the code is totally stupid just l showing an example: <content>plugin://script.embuary.info/movie/Similar titles,query='"$INFO[ListItem.Label]"')</content> RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - roidy - 2021-11-28 embuary.info has no /movie/Similar endpoint What you need is embuary.helper Code: plugin://script.embuary.helper/?info=getsimilar&dbid=$INFO[ListItem.DBID]&type=movie https://github.com/sualfred/script.embuary.helper/wiki/Widgets:-Movies#get-similar-items-based-on-movie But note that this only returns similar item from within your own library, if you want similar item from the whole of themovieDB then use plugin.video.themoviedb.helper:- Code: plugin://plugin.video.themoviedb.helper?info=similar&type=movie&query=$INFO[ListItem.title] RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - senna99 - 2021-11-29 Thanks for help and advice |