Release Artist Slideshow addon (with skin and addon integration) - 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: Release Artist Slideshow addon (with skin and addon integration) (/showthread.php?tid=124880) 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
|
RE: [RELEASE] Artist Slideshow 1.3.0 addon (with skin and addon integration) - pkscout - 2012-03-30 (2012-03-30, 19:30)NisseDILLIGAF Wrote: @pkscuot Seems a harmless enough fix. Do a pull request and I'll get it integrated into the main branch. Re: RE: [RELEASE] Artist Slideshow 1.3.0 addon (with skin and addon integration) - Martijn - 2012-03-30 (2012-03-27, 23:52)pkscuot Wrote: Or you're not holding your tongue the right way when you start the music visualization. Either is equally plausible. I think it was my left foot Btw do you know a quick way to alter the script so the images get stored in folders named by artist? (Ofcourse i haven't looked at the code yet) That way i could mass download new backdrops to beef up the fanart.tv site RE: [RELEASE] Artist Slideshow 1.3.0 addon (with skin and addon integration) - pkscout - 2012-03-31 (2012-03-30, 22:11)Martijn Wrote: Btw do you know a quick way to alter the script so the images get stored in folders named by artist? (Ofcourse i haven't looked at the code yet) On line 274 replace: Code: CacheName = xbmc.getCacheThumbName(self.NAME).replace('.tbn', '') with: Code: CacheName = self.NAME I think that should do it. The files themselves will still have hashed names with .tbn as the extension, but changing them to .jpg should be fine. If I recall, the fanart.tv folks were very picky about image size and quality, so you'll probably want to set artist slideshow to only download stuff that's 1920x1080 or larger. Re: [RELEASE] Artist Slideshow 1.3.0 addon (with skin and addon integration) - Martijn - 2012-03-31 Thx will try it tomorrow. If i add .replace('.png','.jpg') that will solve the extention. Maybe need some other tweaking to make nicer filenames for better sorting. Yeah I know they are very picky on quality Luckily I am one of the admins on fanart.tv overseeing the process at the moment So i know what we need. RE: [RELEASE] Artist Slideshow 1.3.0 addon (with skin and addon integration) - ronie - 2012-03-31 (2012-03-31, 02:27)Martijn Wrote: Luckily I am one of the admins on fanart.tv overseeing the process at the moment more beer, right? RE: [RELEASE] Artist Slideshow 1.3.0 addon (with skin and addon integration) - Martijn - 2012-03-31 (2012-03-31, 02:30)ronie Wrote:(2012-03-31, 02:27)Martijn Wrote: Luckily I am one of the admins on fanart.tv overseeing the process at the moment Indeed and preferably the special ones Edit: could you also add PHP Code: option="writeable" Edit2: grrrr same problem again on a new install.... and also on my HTPC RE: [RELEASE] Artist Slideshow 1.3.0 addon (with skin and addon integration) - mehrunes - 2012-03-31 Is there no new version for Dharma? With 0.1.0, I have the problem of the artist slideshow displaying pictures of an artist even if the next song with a different artist has started. I can only solve this with complete restart of XBMC and then it will happen again more sooner than later. Any ideas? RE: [RELEASE] Artist Slideshow 1.3.0 addon (with skin and addon integration) - Martijn - 2012-03-31 OK I found out it has to do with setting the custom paths in the add-on settings Side note: had to do some more code crashing to fix it downloading to the right folders and change the file extension RE: [RELEASE] Artist Slideshow 1.3.0 addon (with skin and addon integration) - pkscout - 2012-03-31 (2012-03-31, 13:47)mehrunes Wrote: Is there no new version for Dharma? Sorry, no. The current version won't be back ported to Dharma. You really should look into upgrading to Eden when you have a chance. RE: [RELEASE] Artist Slideshow 1.3.0 addon (with skin and addon integration) - mehrunes - 2012-04-06 I'm very new to XBMC, can someone please point me to a short explanation of how to update to a new version? There seems to be no included update function. RE: [RELEASE] Artist Slideshow 1.3.0 addon (with skin and addon integration) - fredphoesh - 2012-04-07 (2012-04-06, 15:08)mehrunes Wrote: I'm very new to XBMC, can someone please point me to a short explanation of how to update to a new version? There seems to be no included update function. AFAIK you just need to install the new version, http://xbmc.org/ RE: [RELEASE] Artist Slideshow 1.3.0 addon (with skin and addon integration) - puulima - 2012-04-12 Stumbled upon this add-on while trying to figure out how to the the LastFM add-on to work automatically like a visualization...very cool. But couple of Q's - do mods still need to be made with various xml's to get this add-on to work? - will this work with AEON-NOX (I'm using 3.0) This would be a huge win if I can get this working as my wife hates the other "squirrely" visualizations... Re: [RELEASE] Artist Slideshow 1.3.0 addon (with skin and addon integration) - Martijn - 2012-04-13 Works with Nox3.0 (maybe not fully functional yet) RE: [RELEASE] Artist Slideshow 1.3.0 addon (with skin and addon integration) - puulima - 2012-04-13 Do I need to edit any xml's though? I have it installed and configured...but nothing is happening? Re: RE: [RELEASE] Artist Slideshow 1.3.0 addon (with skin and addon integration) - Martijn - 2012-04-13 (2012-04-13, 00:02)puulima Wrote: Do I need to edit any xml's though? I have it installed and configured...but nothing is happening? No you should not. but like i said.... 3.0 is WIP and every one should just some patience until it is finished!! |