• 1
  • 15
  • 16
  • 17(current)
  • 18
  • 19
  • 151
Release script.extendedinfo
add <onload>RunScript(script.skin.info.service)</onload> to Startup.xml for example.
Donate: https://kodi.tv/contribute/donate (foundation), 146Gr48FqHM7TPB9q33HHv6uWpgQqdz1yk (BTC personal)
Estuary: Kodis new default skin - ExtendedInfo Script - KodiDevKit
Reply
ok thank you phil, i'll try that!
Reply
(2014-04-16, 02:28)toineb Wrote: I am trying to use the extended info (modded) and the movie set automater... The problem I have is that the extended info script appears to put the fanart for each movie in the set in a loop, instead of just showing the fanart for the movieset. No doubt this might be something in my settings but I can't see it.

Basically, I want the movieset info extended info provides but with the fanart for the set not a loop of the fanart for each movie in the set - can anyone point me in the right direct, either a setting or an amended ment to the code ?

thanks guys

any info on this?
Image
Reply
a) i do not support any modded versions.
b) i do not really understand the question
c) this probably is about script.skin.info.service, not about script.extendedinfo.
Donate: https://kodi.tv/contribute/donate (foundation), 146Gr48FqHM7TPB9q33HHv6uWpgQqdz1yk (BTC personal)
Estuary: Kodis new default skin - ExtendedInfo Script - KodiDevKit
Reply
(2014-09-29, 20:21)phil65 Wrote: the script is error is probably caused by an outdated URL you have in your settings somewhere.
If saga means set then that functionality is moved to script.skin.info.service. Reading helps.

Hi everyone,

I have recently have a problem with extendedinfo script, the problem is I have an error on every XBMC startup, and I have notice that sagas are not correctly shown.

Of course, I've been trying the fixes told in this thread:

-Download latest extendedinfo version and update
-Download the new script.skin.info.service and install using "add addons from zip"
-Add <onload>RunScript(script.skin.info.service)</onload> to Startup.xml (this startup.xml file is the only one I found on XBMC folder and its placed on "skin.aeon.nox.gotham\1080i" folder)

Nothing changes, I still have the error on XBMC startup and sagas problem. On addons installed I've not found script.skin.info.service, so I suspect it's not working

Any help?

Many thanks in advance
Reply
If you use script.skin.info.service, no need to install Extended. I had installed extended too and I had error also, I deleted Extended , and fix for me. Maybe it's also the same problem for you?

try this :
PHP Code:
<onload>RunScript(script.skin.info.servicebackend=true)</onload
Reply
(2014-10-01, 12:59)Xander Log Wrote:
(2014-09-29, 20:21)phil65 Wrote: the script is error is probably caused by an outdated URL you have in your settings somewhere.
If saga means set then that functionality is moved to script.skin.info.service. Reading helps.

Hi everyone,

I have recently have a problem with extendedinfo script, the problem is I have an error on every XBMC startup, and I have notice that sagas are not correctly shown.

Of course, I've been trying the fixes told in this thread:

-Download latest extendedinfo version and update
-Download the new script.skin.info.service and install using "add addons from zip"
-Add <onload>RunScript(script.skin.info.service)</onload> to Startup.xml (this startup.xml file is the only one I found on XBMC folder and its placed on "skin.aeon.nox.gotham\1080i" folder)

Nothing changes, I still have the error on XBMC startup and sagas problem. On addons installed I've not found script.skin.info.service, so I suspect it's not working

Any help?

Many thanks in advance

if you want it fixed then the skin dev should ask me. I have no time answerring the same stuff here again and again. (this is a dev subforum, not for end users)
Donate: https://kodi.tv/contribute/donate (foundation), 146Gr48FqHM7TPB9q33HHv6uWpgQqdz1yk (BTC personal)
Estuary: Kodis new default skin - ExtendedInfo Script - KodiDevKit
Reply
(2014-09-29, 02:39)ZexisStryfe Wrote: Re- comments. This definitely existed prior. It pulled the comments from Trakt.TV. Maybe Nessus added this when he was maintaining it? I still have these lines of code in my skin-

Code:
    <onload condition="System.HasAddon(script.extendedinfo) + Container.Content(movies)">RunScript(script.extendedinfo,info=comments,dbid=$INFO[ListItem.DBID],type=movie)</onload>
    <onload condition="System.HasAddon(script.extendedinfo) + Container.Content(tvshows)">RunScript(script.extendedinfo,info=comments,dbid=$INFO[ListItem.DBID],type=tvshow)</onload>
Honestly i cant remember. In any case since Phil is back and continues to maintains the script it's up to him. I am not going to work on this any more. I even deleted all my code about the script.

Cheers
Nessus
Reply
I'm using this content tag below to fill a dynamic playlist list of youtube videos. I was just curious if there was someway to format the content tag in order to by bypass the "maxResults=20" portion of the below code in Youtube.py in order to get a list of 50 videos instead of 20. I'm wanting a Top 50 playlist of results but as of now I have to edit and change "maxResults=20" to 50 in the code below in order to get 50. Maybe some kind of way to add a "limit=50" parameter in the content tag to bypass the maxResults maybe? Thanks Phil.

PHP Code:
<content>plugin://script.extendedinfo?info=youtubeplaylist&amp;&amp;id=PLvLX2y1VZ-tEmqtENBW39gdozqFCN_WZc</content> 

PHP Code:
def GetYoutubeSearchVideos(search_string=""hd=""orderby="relevance"):
    
results = []
    if 
hd and not hd == "false":
        
hd_string "&hd=true"
    
else:
        
hd_string ""
    
search_string urllib.quote(search_string.replace('"'''))
    
base_url 'https://www.googleapis.com/youtube/v3/search?part=id%2Csnippet&maxResults=20&type=video'
    
url '&q=%s&order=%s&key=%s%s' % (search_stringorderbyyoutube_key2hd_string)
    
results Get_JSON_response(base_urlurl0.5)
    if 
results:
        return 
HandleYouTubeVideoResults(results["items"])
    else:
        return []


def GetYoutubePlaylistVideos(playlistid=""):
    
base_url 'https://www.googleapis.com/youtube/v3/playlistItems?part=id%2Csnippet&maxResults=20'
    
url '&playlistId=%s&key=%s' % (playlistidyoutube_key2)
    
results Get_JSON_response(base_urlurl0.5)
    
prettyprint(results)
    if 
results:
        return 
HandleYouTubeVideoResults(results["items"])
    else:
        return [] 
Reply
yes, that´s planned.
Donate: https://kodi.tv/contribute/donate (foundation), 146Gr48FqHM7TPB9q33HHv6uWpgQqdz1yk (BTC personal)
Estuary: Kodis new default skin - ExtendedInfo Script - KodiDevKit
Reply
(2014-10-11, 10:33)phil65 Wrote: yes, that´s planned.
Wink
Reply
Hi I have a raspberry pi running openelec xbmc on Aeon Nox MQ5 however after searching everywhere and being a bit of a noob at this I would like to install the extendedinfo script however Im struggling to find instructions

any help be kindly appreciated

Kunal
Reply
(2014-10-20, 14:14)Kunal100 Wrote: Hi I have a raspberry pi running openelec xbmc on Aeon Nox MQ5 however after searching everywhere and being a bit of a noob at this I would like to install the extendedinfo script however Im struggling to find instructions

any help be kindly appreciated

Kunal

You need this version of the Extended Info Script for Aeon MQ5.

http://www.xbmcbrasil.net/showthread.php?tid=569
Reply
would be great if you could stop distributing outdated versions Rolleyes
Donate: https://kodi.tv/contribute/donate (foundation), 146Gr48FqHM7TPB9q33HHv6uWpgQqdz1yk (BTC personal)
Estuary: Kodis new default skin - ExtendedInfo Script - KodiDevKit
Reply
Sorry cw-kid but I don't understand Spanish and would prefer the most up-to-date version of the script.

Thanks' anyway

Kunal
Reply
  • 1
  • 15
  • 16
  • 17(current)
  • 18
  • 19
  • 151

Logout Mark Read Team Forum Stats Members Help
script.extendedinfo29