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
|
- Martijn - 2011-11-22 Ajedi Wrote:Frist off, i love this addon thanks for creating it. Not planning on it at the time. Still to much other things to do. There are other way you can let it run at startup like autoexec.py however you will need to make this yourself. won't be long now - Martijn - 2011-11-22 Just testing out some more things to make it is XBMC-repo ready. A fairly finished version can be found in the download section on Github. Only for the foolish and impatient ones that like help us testing Find any bugs? Read the first post on how to report these. Message to skinners: Please let me know if I used the wrong file names for the images. - Mudislander - 2011-11-22 Thanks for this script. I'll be inserting it as a required script into my skin as soon as you release a repo version. One request if possible. I'd like the script to be able to return the users choice of central artwork directories when requested. Then I'd not have to have a setting asking for the same directory in my skin. - mad-max - 2011-11-22 Mudislander Wrote:One request if possible. I'd like the script to be able to return the users choice of central artwork directories when requested. Then I'd not have to have a setting asking for the same directory in my skin. Let me guess why you want this feature... You think about the thread yesterday with the movie-fanart as backdrop? cheers, mm - Mudislander - 2011-11-22 mad-max Wrote:Let me guess why you want this feature... You got it in one! - Martijn - 2011-11-22 mad-max Wrote:Let me guess why you want this feature... Mudislander Wrote:You got it in one! Well you're not the only one. BigNoid asked a simulair thing The central Artwork folder is best only used for a fanart slideshow. I wanted to create a true centralized artwork option however current skin labels don't allow that kind of feature. Asked in skin dev thread: http://forum.xbmc.org/showthread.php?tid=114778 Maybe in a future version. First we want evrything working as planned. - Omegatron - 2011-11-22 Machine-Sanctum Wrote:Not planning on it at the time. Still to much other things to do. There are other way you can let it run at startup like autoexec.py however you will need to make this yourself. Ah ok well i can understand dw about it. Since im clueless about programming and thought you were talking chinese when you said "autoexe.py" ill just do it manually. (but if you ever have time it would be awsome to have it implemented) thanks again and keep up the good work! - Martijn - 2011-11-22 Ajedi Wrote:Ah ok well i can understand dw about it. Since im clueless about programming and thought you were talking chinese when you said "autoexe.py" ill just do it manually. (but if you ever have time it would be awsome to have it implemented) Will see if can make a service addon for this tonight. You only need to install a zip file and it will run at startup/login. - Mudislander - 2011-11-22 Machine-Sanctum Wrote:Well you're not the only one. BigNoid asked a simulair thing Fair enough. Although I did want the directory as the source for my $INFOSkin.String(Home_Custom_Back_Movies_Folder) as at present I've just used "special://masterprofile/Thumbnails/Video/Fanart/" which is not the greatest idea. - Martijn - 2011-11-22 Mudislander Wrote:Fair enough. Although I did want the directory as the source for my $INFOSkin.String(Home_Custom_Back_Movies_Folder) as at present I've just used "special://masterprofile/Thumbnails/Video/Fanart/" which is not the greatest idea. You can create an extra button so the user can select it's own custom folder. - Mudislander - 2011-11-22 Yep, working on it now, was just trying to cut down on places for users to set file paths. - mad-max - 2011-11-22 Machine-Sanctum Wrote:Will see if can make a service addon for this tonight. You only need to install a zip file and it will run at startup/login. You can take my basis for the service addon...made one for executing watchlist at start/login see here: http://code.google.com/p/repository-xbmcnerds/source/browse/branches/eden-pre/script.watchlist.service/script.watchlist.service-0.1.zip basically you only need to change addonid in the main.py mad-max - Martijn - 2011-11-22 mad-max Wrote:You can take my basis for the service addon...made one for executing watchlist at start/login Thanks. Already found the example on wiki. Will first test it myself tonight. - Martijn - 2011-11-22 Mudislander Wrote:Yep, working on it now, was just trying to cut down on places for users to set file paths. If there's a way I will definitely add it (if I know how) - Martijn - 2011-11-22 Ajedi Wrote:Ah ok well i can understand dw about it. Since im clueless about programming and thought you were talking chinese when you said "autoexe.py" ill just do it manually. (but if you ever have time it would be awsome to have it implemented) For the ones interested I have made a service plug-in so when XBMC start this will also automaticly start Artwork Downloader using the normal settings. The service .zip file can be downloaded here |