Release script.extendedinfo - 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.extendedinfo (/showthread.php?tid=160558) 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
|
RE: script.extendedinfo - senna99 - 2015-08-25 Hi Last two days i have trouble with info=nearevents, there is no info, picture etc... last week it was everything fine. best regards RE: script.extendedinfo - guandms - 2015-08-25 Hi I wanted to ask you guys , on my Windows 10 version 15.1 is working great . And on my OpenELEC machine version 6.0 Beta (Which is also 15.1) the extended info looks entirely different Take a look : OpenELEC View PC View Im using Mad-Nox skin . Please help ... Settings on both machine are the same 100% RE: script.extendedinfo - guandms - 2015-08-25 guys how do i add "Choose Art" option to the option in the extended info script Really need it . Thanks in advance . Need to replace on of the options like in this picture : RE: script.extendedinfo - senna99 - 2015-08-26 (2015-08-25, 10:30)senna99 Wrote: Hi Someone can confirm about info=nearevents does not work? So far I have tried everything, without success. RE: script.extendedinfo - denywinarto - 2015-08-29 Hi, was wondering, is it possible to limit the trending movies/tvshow content to the existing library ? So.. don't display Interstellar if we don't have it in the library.. Something like that.. Googled it but i can't find any info about it RE: script.extendedinfo - badaas - 2015-08-29 (2015-08-24, 19:48)badaas Wrote: https://www.dropbox.com/s/velojlp53gfco6o/kodi.old.log.zip?dl=0 Is this bug me? As nothing works now when I click to goto exinfo on latest Jarvis nightly... RE: script.extendedinfo - kb0n - 2015-08-29 (2015-08-29, 04:14)denywinarto Wrote: Hi, was wondering, is it possible to limit the trending movies/tvshow content to the existing library ?It would require some coding: Either write a new function for this, or edit existing ones withouth breaking functionality with other services (RottenTomatoes, TMDB). A very simple edit would be to change line 99 in 'resources/lib/Trakt.py' in the addon's directory to look like this: Code: library_first=True) No guarantees, this is just from looking at the code, but I guess you can try and give feedback? (2015-04-13, 15:15)jurialmunkey Wrote: No point to getting a log file as this script doesn't do what you think it does.... it used to deal with movie sets but doesn't anymore.FYI, because I just stumbled on this post: I had the same problem with movie sets a few days ago, fixed it and added a pull request (https://github.com/phil65/script.extendedinfo/pull/23). In case you can't wait for it to be merged upstream. RE: script.extendedinfo - denywinarto - 2015-08-30 (2015-08-29, 17:55)kb0n Wrote:(2015-08-29, 04:14)denywinarto Wrote: Hi, was wondering, is it possible to limit the trending movies/tvshow content to the existing library ?It would require some coding: Either write a new function for this, or edit existing ones withouth breaking functionality with other services (RottenTomatoes, TMDB). Hey didn't see your post, tried it but unfortunately it doesn't work.. It's still showing movies that i don't have, probably some kind of filtering function is needed.. Just thought it'd be cool if we could play the trending movies right away.. Oh well if it requires script changes then it's too complicated for me Thanks for answering though RE: script.extendedinfo - hansipi - 2015-08-30 (2015-08-26, 23:12)senna99 Wrote:(2015-08-25, 10:30)senna99 Wrote: Hi Hi, yes i confirm. nothing there. RE: script.extendedinfo - senna99 - 2015-08-31 (2015-08-30, 14:08)hansipi Wrote:(2015-08-26, 23:12)senna99 Wrote:(2015-08-25, 10:30)senna99 Wrote: Hi Thank you, hansipi RE: script.extendedinfo - guandms - 2015-08-31 Hi again , Someone can please help me with that i wrote regarding changing one of the options to "Choose Art" ... Thanks in advance . RE: script.extendedinfo - Lunatixz - 2015-09-02 Can someone explain the internal conversion process for imdb_id? can it convert tvdb ids? does it only except IMDB or TMDB ids? Thanks RE: script.extendedinfo - Angelinas - 2015-09-02 I put info for this in dialogs and have both TheMovieDB ID& imdb number for info (dialog take id from script),both working when have info from this script. I dont understand why you need to convert this number. PHP Code: <label2>$INFO[Window.Property(movie.ID)]</label2> PHP Code: <label2>$INFO[Window.Property(movie.imdb_id)]</label2> RE: script.extendedinfo - im85288 - 2015-09-02 (2015-08-25, 17:34)guandms Wrote: guys how do i add "Choose Art" option to the option in the extended info script As far as I'm aware you cannot. Extended info uses images from tmdb and has nothing to do with your local library. RE: script.extendedinfo - phil65 - 2015-09-03 (2015-09-02, 19:38)Lunatixz Wrote: Can someone explain the internal conversion process for imdb_id? can it convert tvdb ids? does it only except IMDB or TMDB ids? "tvdb_id=" should work. |