Artwork Downloader - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: Add-on Support (https://forum.kodi.tv/forumdisplay.php?fid=27) +---- Forum: Program Add-ons (https://forum.kodi.tv/forumdisplay.php?fid=151) +---- Thread: Artwork Downloader (/showthread.php?tid=114633) 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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
|
- PatK - 2012-01-19 A couple of icons.. http://img813.imageshack.us/img813/4498/iconxx.jpg http://img842.imageshack.us/img842/1926/icon1bh.png - alfe - 2012-01-21 How do i find GUI Mode in Aeon Nox? - Martijn - 2012-01-21 alfe Wrote:How do i find GUI Mode in Aeon Nox? the info window "I" on a tvshow and do "Get Artwork" See here where: http://forum.xbmc.org/showpost.php?p=935632&postcount=4 - keibertz - 2012-01-22 i have updatet to Eden Beta 2 and now i get a script error from the Artwork Downloader Quote:18:38:57 T:1280 NOTICE: Artwork Downloader: [Star Wars: Episode III - Die Rache der Sith] Downloaded: n59RJsEVtbM9LBwQTDIh8JtQeGC.jpg - Martijn - 2012-01-22 keibertz Wrote:i have updatet to Eden Beta 2 and now i get a script error from the Artwork Downloader I doubt it has to do with beta2 but could you try this one: --------------- - keibertz - 2012-01-22 ok will test and report EDIT: With this new Version everything is working big thx Quote:19:21:47 T:1424 NOTICE: Artwork Downloader: [30 Days of Night] Deleted (Rating too low: 4.0): smb://PLUTO/Movies/Movie/1-9/30.Days.of.Night.1.2007/extrafanart/5Fc169O1PRvKSmd9xx4vIemMe9Y.jpgthis means that the script watches over all existing extrafanarts on my hdd and deletes the to low rated ? In my settings is Rating set to 5 - Martijn - 2012-01-22 keibertz Wrote:ok will test and reportThat's great. Gonna do the the other messages the same then to prevent trouble. Quote:this means that the script watches over all existing extrafanarts and deletes the to low rated ? In my settings is Rating set to 5 Correct. The same way it already did for tvshows (ONLY extrafanart. Other artwork is left alone) It only became available yesterday for movies and it is still not fully operational on themovie.org because of some server caching so it might skip a few movies for next 1 or two days. Release 1.0.4 - Martijn - 2012-01-23 AVAILABLE IN XBMC REPO 1.0.4 - Fixed: After doing ID conversion it skipped that movie - Fixed: Some mayor bug that no ones has noticed so far - Fixed: When no exact title match was found it downloaded the entire library - Fixed: Close progress dialog before opening the image selection window - Changed: Reverted old change of using image ID from tmdb as filename. This is not available any more in new API v3 - Changed: Use the new TMDB API v3 - Changed: Use smaller image in GUI dialog for faster loading of images (when posible) - Changed: You can now set preferred language. Will always use English as fallback - Changed: Show yes/no dialog for faulty settings instead of looping - Changed: Only start service when user is logged in (requires minimal XBMC beta2) - Added: Polish translation (thx cienislaw) - Added: Dutch translation (thx Martijn) - Added: German translation (thx Suven) - Added: Download report is accessible from the add-on settings window - Added: Download report is accessible from the yes/no dialog when finished (not when background/silent/custom run) - Added: Extra info to gui dialog (language, rating, votes, season and size) - Added: Ratings for movie artwork - Added: Now tries to look up the 'tmdb ID' if no 'imdb ID' is found and retrieves artwork using that - Added: Added musicvideo section that uses the title to search for artwork on TMDB Needs extra argument from skin (see runscript.txt) Example of extra info when able to choose what image you want: - Gav2 - 2012-01-25 Hi Martijn, Ive struck an issue with XBMC crashing unless this plugin is disabled. I'd really like to enable it again and I wonder if you could help. All details are here: http://forum.xbmc.org/showthread.php?p=999259&posted=1#post999259 Please let me know if you need more detail. Thanks! Gavin - Martijn - 2012-01-25 Gav2 Wrote:Hi Martijn, Replied in that thread. Don't think there is anything I can do about it. The log you posted wasn't the full debug so can't use that. I have no experience with Apple and if it just locks up it might be some XBMC threading issue. - butchabay - 2012-01-26 Hi Martijn, should PHP Code: XBMC.RunScript(script.artwork.downloader,mode=gui, mediatype=movie, medianame=$INFO[ListItem.Title]) still work for movies within video info? Because it doesn't TV Shows works well. Thanx - Martijn - 2012-01-26 butchabay Wrote:Hi Martijn, Not guilty until proven otherwise... Start with testing.... Testing in progress ... Result: works for me PHP Code: XBMC.RunScript(script.artwork.downloader,mode=custom,mediatype=movie,mode=gui,medianame=$INFO[ListItem.Title],mediapath=$INFO[ListItem.Path]) The mediapath is to make sure you download to the correct folder in case you have multiple version of that movie Tested from DialogVideoInfo in Aeon Nox - butchabay - 2012-01-26 Martijn Wrote:Not guilty until proven otherwise... Cheers Working Perfectly Mate! Thanx ... - Martijn - 2012-01-26 butchabay Wrote:Cheers Working Perfectly Mate! Never doubted myself - canadave - 2012-01-28 I'm getting "Dependencies not met" error when trying to update to 1.0.5 from repo. I have been mucking about with the commoncache.db and urlresolver on my system though. Does Artwork Downloader rely on those? If so, I suppose that's the problem... |