Release script.skin.info.service
#31
Hello Sranshaft

You said exactly what I have in info window, title and year for trendingmovies / trendingtvshows.
For boxoffice everything is ok,with plot etc..But there I have another problem with thumbnails have very low resolution.
Reply
#32
boxoffice is scraped from rottentomatoes, not from Trakt. Wink
I just had a look, the Trakt API indeed changed, but they also major-bumped the API version. So under "normal" circumstances the old API should return the same unless completely depracated. (they mention that it is slower though)
Will have a deeper look when I find some time, but it seems as if the new API is much worse than previous one in terms of provided info.
Donate: https://kodi.tv/contribute/donate (foundation), 146Gr48FqHM7TPB9q33HHv6uWpgQqdz1yk (BTC personal)
Estuary: Kodis new default skin - ExtendedInfo Script - KodiDevKit
Reply
#33
I solved the problem,now I use next line
RunScript(script.extendedinfo,info=trendingmovies) with small letters before I have used the following lines
RunScript(script.extendedinfo,info=TrendingMovies) and with new version script.extendedinfo I lost info plot etc..

Thanks to all
Reply
#34
(2015-02-07, 20:37)senna99 Wrote: I solved the problem,now I use next line
RunScript(script.extendedinfo,info=trendingmovies) with small letters before I have used the following lines
RunScript(script.extendedinfo,info=TrendingMovies) and with new version script.extendedinfo I lost info plot etc..

Thanks to all

correct, everything needs to be lowercase.
Donate: https://kodi.tv/contribute/donate (foundation), 146Gr48FqHM7TPB9q33HHv6uWpgQqdz1yk (BTC personal)
Estuary: Kodis new default skin - ExtendedInfo Script - KodiDevKit
Reply
#35
Now everything is running at full steam
Reply
#36
According to a developer in another forum, script.extendedinfo is not Android compatible. Two questions:
  1. Do you concur?
  2. Is this also the case for script.skin.info.service?
Thanks!
Reply
#37
(2015-02-23, 17:47)Don Grimme Wrote: According to a developer in another forum, script.extendedinfo is not Android compatible. Two questions:
  1. Do you concur?
  2. Is this also the case for script.skin.info.service?
Thanks!

1. newest GIT should work on Android. (didnt test myself yet though)
2. no, not the case for script.skin.info.service
Donate: https://kodi.tv/contribute/donate (foundation), 146Gr48FqHM7TPB9q33HHv6uWpgQqdz1yk (BTC personal)
Estuary: Kodis new default skin - ExtendedInfo Script - KodiDevKit
Reply
#38
Thank you ... for your reply and for creating these two scripts!

mikesilvo164 (in his thread about the Aeon Nox-Silvio mod, which uses both of your scripts) said pretty much the same thing. Someone else mentioned that Helix 14.2 also fixes this on Android.

I don't understand such things myself. I just know that I love Aeon Nox and am intrigued by photos of the Silvio mod.
Reply
#39
I have a problem. When in videolibrary (movies) with "Group movies in sets" it's causing problems when Container.Content(movies) because Window(0).property(Set.Movies.Country) isn't getting cleared. I added
Code:
window.clearProperty('Set.Movies.Country')
in utils.py and that fixed my case, though have no idea if it breaks something.

same problem and fix with Set.Movies.Studio.

scott s.
.
Reply
#40
I'm a noob on working in github, but I created a PR that maybe you can take a look at to add the additional clearProperty statements.

scott s.
.
Reply
#41
How do i add this script
Reply
#42
(2015-03-10, 03:56)teegray1124 Wrote: How do i add this script

Download and install from zip
Reply
#43
(2014-08-29, 02:05)phil65 Wrote: hey guys,
I stripped out the daemon part of script.extendedinfo into a separate add-on.
https://github.com/phil65/script.skin.info.service
This also covers all properties from script.videolanguage now (thx to black) so you do not need to have 2 daemons running for setting window properties in media windows.
Documentation (i hope i got everything):
Code:
Start the script with RunScript(script.skin.info.service) in startup.xml
+Properties will then be available in the corresponding media windows.
+
+New properties:
+
+For artists:
+Window(home).Property(...)
+    'Artist.Album.%d.Title' % i
+    'Artist.Album.%d.Plot' % i
+    'Artist.Album.%d.PlotOutline' % i
+    'Artist.Album.%d.Year' % i
+    'Artist.Album.%d.Duration' % i
+    'Artist.Album.%d.Thumb' % i
+    'Artist.Album.%d.ID' % i
+    'Artist.Albums.Newest'  
+    'Artist.Albums.Oldest'  
+    'Artist.Albums.Count'  
+    'Artist.Albums.Playcount'  
+
+For Albums:
+Window(home).Property(...)
+    'Album.Song.%d.Title' % i
+    'Album.Song.%d.FileExtension' % i
+    'Album.Songs.TrackList'  
+    'Album.Songs.Discs'
+    'Album.Songs.Discs'  
+    'Album.Songs.Duration'  
+    'Album.Songs.Count'
+
+For movie sets:
+Window(home).Property(...)
+    'Set.Movie.%d.Art(clearlogo)' % i
+    'Set.Movie.%d.Art(fanart)' % i
+    'Set.Movie.%d.Art(poster)' % i
+    'Set.Movie.%d.Art(discart)' % i
+    'Set.Movies.Plot'  
+    'Set.Movies.ExtendedPlot'  
+    'Set.Movies.Runtime'  
+    'Set.Movies.Writer'  
+    'Set.Movies.Director'  
+    'Set.Movies.Genre'  
+    'Set.Movies.Years'  
+    'Set.Movies.Count'
+
+For movie years, directors, actors, genres, studios countries and tags:
+Window(home).Property(...)
+    'Detail.Movie.%d.Art(poster)' % i
+    'Detail.Movie.%d.Art(fanart)' % i
+    'Detail.Movie.%d.Path' % i
+
+For movies:
+Window(movieinformation).Property(...)
+    AudioLanguage.%d' % i
+    AudioCodec.%d' % i
+    AudioChannels.%d' % i
+    SubtitleLanguage.%d' % i
+    AudioLanguage
+    SubtitleLanguage

Hello, i have installed this script and have no problem to install it but when i close Kodi 14.2 and open it i have an Error message "Error...... info service....."
Did i miss something Huh?

i HAVE INSTALLED THIS ONE script.skin.info.service-master. Thanks a lot.
Reply
#44
(2015-04-15, 10:15)binnugsay Wrote: Hello, i have installed this script and have no problem to install it but when i close Kodi 14.2 and open it i have an Error message "Error...... info service....."
Did i miss something Huh?

i HAVE INSTALLED THIS ONE script.skin.info.service-master. Thanks a lot.

Without a debug log it's going to be hard to help you.
Reply
#45
Hi Phil.

Thanks for this great script.

I know you are busy working on script.extendedinfo, but did this ever get added to the official repo?

I already use this in Rapier for movie sets and have planned support of audio language and subtitle language.

Would it be possible to add something like:

Code:
Window(movieinformation).Property(AudioLanguage.Count)

Code:
Window(movieinformation).Property(SubtitleLanguage.Count)

Cheers
Gade
Reply

Logout Mark Read Team Forum Stats Members Help
script.skin.info.service1