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 - 2013-03-22 I just looked through the code. It looks like AS is only really able to handle one artist in the title as a featured artist. I think I can easily update it so that it will work with multiple artists in the featured section. So for right now your only choice if you want art for all the artists is to split them as you have so that XBMC splits them as well. I'll add support for multiple featured artists to the 1.5.1 beta. RE: [RELEASE] Artist Slideshow 1.3.0 addon (with skin and addon integration) - CelticShady - 2013-03-22 (2013-03-22, 02:44)pkscuot Wrote: I just looked through the code. It looks like AS is only really able to handle one artist in the title as a featured artist. I think I can easily update it so that it will work with multiple artists in the featured section. So for right now your only choice if you want art for all the artists is to split them as you have so that XBMC splits them as well. I'll add support for multiple featured artists to the 1.5.1 beta. Ok thank you i will leave it for now, if i split them all that way (artist 1 / artist 2 / artist 3) i will probably have to go back over them again which i definitely dont want to do RE: [RELEASE] Artist Slideshow 1.3.0 addon (with skin and addon integration) - mondog - 2013-03-22 Are other people able to see the Artist Slideshow through Milkdrop? For me, I am only able to see the slideshow through Waveform or with no Visualizer. However, if I don't run AS but show an artists's background image, it can be seen through Milkdrop. So, I guess my question is why can I see an artist background through Milkdrop but not an artist slideshow? RE: [RELEASE] Artist Slideshow 1.3.0 addon (with skin and addon integration) - pkscout - 2013-03-23 Here's a new release of the 1.5.1 beta that should split multiple featured artists in the title of a song. I haven't had a chance to test it extensively, but it at least doesn't crash. Probably the best way to do the song title is like this: SONG TITLE (ft. ARTIST1 / ARTIST2 / ARTIST3) It will also work without the parentheses, and I think ft. ARTIST1 ft. ARTIST2 ft. ARTIST3 will work as well. https://github.com/pkscout/script.artistslideshow/archive/master.zip RE: [RELEASE] Artist Slideshow 1.3.0 addon (with skin and addon integration) - msfc - 2013-03-23 Can you change AS to use the Universal Artist Scraper or theaudiodb.com instead of last.fm so we have a hope of seeing complete artist bios? theaudiodb.com is one of the places UAS goes so using that is probably the better solution. RE: [RELEASE] Artist Slideshow 1.3.0 addon (with skin and addon integration) - pkscout - 2013-03-23 (2013-03-23, 15:04)msfc Wrote: Can you change AS to use the Universal Artist Scraper or theaudiodb.com instead of last.fm so we have a hope of seeing complete artist bios? theaudiodb.com is one of the places UAS goes so using that is probably the better solution. Yea, that's on my list. I think I'm going to try and pull the bio from the XBMC database and then maybe from an Internet source like audiodb if there is no bio locally. This won't make it into the 1.5.1 beta (and therefore won't be in the 1.5.2 production version when it ships), but I'll plan on tackling this next. RE: [RELEASE] Artist Slideshow 1.3.0 addon (with skin and addon integration) - CelticShady - 2013-03-29 (2013-03-23, 02:30)pkscuot Wrote: Here's a new release of the 1.5.1 beta that should split multiple featured artists in the title of a song. I haven't had a chance to test it extensively, but it at least doesn't crash.Script error, no artwork displaying in fullscreen http://xbmclogs.com/show.php?id=7804 Am now using the older version and that works fine RE: [RELEASE] Artist Slideshow 1.3.0 addon (with skin and addon integration) - CelticShady - 2013-03-30 Still not working an issue with the urlresolver affected other programs might be that RE: [RELEASE] Artist Slideshow 1.3.0 addon (with skin and addon integration) - retro83 - 2013-03-31 On my Raspberry Pi running Openelec, I've got a problem with the artist name of "Alain Boublil and Claude-Michel Schönberg". The same album successfully loads local artwork on Windows 7, but it apparently crashes on the Pi with 'plugin has failed to run'. Is this likely to be a problem with Openelec itself or a setting which needs changing (to UTF8 perhaps?) The files play and otherwise work in XBMC okay. Code: 16:08:24 T:2889872480 DEBUG: script.artistslideshow: invalid or missing local xml file for similar Thanks RE: [RELEASE] Artist Slideshow 1.3.0 addon (with skin and addon integration) - diskmemo - 2013-03-31 Hello, i found a writing mistake in the 1.5.1 Version, in the default.py script, so i comes to a script error. In line 498 in default.py the letter s is missing. featured_artist='' (wrong) must be featured_artists='' (work for me) greetings Dieter RE: [RELEASE] Artist Slideshow 1.3.0 addon (with skin and addon integration) - pkscout - 2013-03-31 (2013-03-31, 01:35)retro83 Wrote: On my Raspberry Pi running Openelec, I've got a problem with the artist name of "Alain Boublil and Claude-Michel Schönberg". I'm pretty sure I've previously tracked down all the UTF8 issues in AS. I don't have access to anything to test on Openelec (or the Rasberry Pi). If someone else could check this on Openelec then maybe we can figure out where the issue is and help get it resolved. (2013-03-31, 12:29)diskmemo Wrote: Hello, That wasn't the only inconsistency in that routine. I think I've got the variable name consistent now and have uploaded the changes. RE: [RELEASE] Artist Slideshow 1.3.0 addon (with skin and addon integration) - pkscout - 2013-03-31 (2013-03-29, 16:58)CelticShady Wrote: Script error, no artwork displaying in fullscreen Same problem diskmemo was seeing. The beta code has been updated on github and is available at the same URL as before. RE: [RELEASE] Artist Slideshow 1.3.0 addon (with skin and addon integration) - CelticShady - 2013-04-01 (2013-03-31, 21:26)pkscuot Wrote:(2013-03-29, 16:58)CelticShady Wrote: Script error, no artwork displaying in fullscreen Still gives script errors when songs are named the way you say to name them SONG TITLE (ft. ARTIST1 / ARTIST2 / ARTIST3) If i play a song not named like that it works fine but as soon as i go to a song named like that there is a script error RE: [RELEASE] Artist Slideshow 1.3.0 addon (with skin and addon integration) - pkscout - 2013-04-02 (2013-04-01, 23:01)CelticShady Wrote:(2013-03-31, 21:26)pkscuot Wrote:(2013-03-29, 16:58)CelticShady Wrote: Script error, no artwork displaying in fullscreen OK, I'll have to look at it more closely and carve out some time to do some more detailed testing. It'll probably be a couple of weeks before I can get to it though, so in the meantime I would just go back to the production version. RE: [RELEASE] Artist Slideshow 1.3.0 addon (with skin and addon integration) - beatmasterrs - 2013-04-02 Hi, i get the following error. PHP Code: 14:53:01 T:2012 ERROR: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<-- I get it on Song "DJ Project feat. Giulia - Nu" ID3 Tags are imho ok. Is there any reason or solution for this? |