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: Artist Slideshow addon (with skin and addon integration) - scott967 - 2020-01-25 (2020-01-24, 13:32)roura97311 Wrote: Hello and thank you for this great update. AS only makes images available to a skin to display. Any text that is displayed is a function of the skin and how the song is stored in the music database, which in turn is a function of the metadata tags. Alternatively, if the song is derived from a plugin, then it's up to the plugin developer to provide the text that the skin displays. If you mean the filename that the download image is given, not how Kodi displays, that I guess is a function of how the source names a file (I might be wrong about this). What's important is that the artist name for the song agrees with what the scrape sites expect. I'd have to look, but I think AS does do some normalization of names, so certain variations in the exact way the name is stored (utf-8 encoded) can still find the right artist at the scrape sites. scott s. . RE: Artist Slideshow addon (with skin and addon integration) - pkscout - 2020-01-25 (2020-01-24, 13:32)roura97311 Wrote: Hello and thank you for this great update. That's the name of the file from the source. I think that's from fanart.tv. They apparently deal with extended character sets by simply deleting any character that isn't either a standard letter or number. RE: Artist Slideshow addon (with skin and addon integration) - marson - 2020-01-25 HI , I have Xonfluence skin v 4.0.10 installed using Kodi v 18.5 , Is the Xonfluence skin compable using Artist slideshow v3.1.0 , Having proplems getting Artist Slideshow to work Thanks.. RE: Artist Slideshow addon (with skin and addon integration) - pkscout - 2020-01-25 (2020-01-25, 16:56)marson Wrote: HI , I have Xonfluence skin v 4.0.10 installed using Kodi v 18.5 , Is the Xonfluence skin compable using Artist slideshow v3.1.0 , Having proplems getting Artist Slideshow to work Thanks..You'll need to check with the skin authors about that. It looks like there's a Xonfluence thread at: https://forum.kodi.tv/showthread.php?tid=346302 edit: nevermind, I see you posted the same question there. Please try and avoid posting the same question in multiple places on the forum. RE: Artist Slideshow addon (with skin and addon integration) - VelvetKevorkian - 2020-01-26 Seems like AS ignores images stored in subfolders. My art is in Artist information/Artist/extrafanart Only art in Artist root is shown, those stored in extrafanart aren't. RE: Artist Slideshow addon (with skin and addon integration) - pkscout - 2020-01-26 (2020-01-26, 18:02)VelvetKevorkian Wrote: Seems like AS ignores images stored in subfolders. Yes, that is true. AS only shows information from a given folder, not it's sub folders. But which folder it uses depends on the settings you are using. 1- addon_data folder For this setting AS looks in addon_data/script.artistslideshow/Artist Slideshow/<ARTISTNAME>/ for images. 2- custom folder For this setting you set a directory (I'll call it DIR). By default AS then looks in DIR/<ARTISTNAME>/extrafanart/ for art. You can tell as to use a name different than extrafanart to look in something like DIR/<ARTISTNAME>/myart/. You can also turn off the extrafanart option and have it look in just DIR/<ARTISTNAME>/. 3- Kodi 18 Artist Information Folder AS looks in the directory defined by Kodi for Artist Information (I'll call it KDIR) for files that start with the name fanart. So AS looks in KDIR/<ARTISTNAME>/fanart* I hope this helps you figure out, based on your needs, what settings to use. There is complete documentation for all the settings on the Artist Slideshow Wiki page (link in my signature). RE: Artist Slideshow addon (with skin and addon integration) - nessus - 2020-01-27 @pkscout I am kinda confused on how the new version is working. I've changed the code to a simple image control but the only image that i see (after 4-5 seconds) is the player fanart. I checked the AS addon_data folder but the folders there are all empty. What am i missing here? Also, why we need the multiimage control for the old version while the addon has updated to 3.x.x? Thanks Nessus RE: Artist Slideshow addon (with skin and addon integration) - pkscout - 2020-01-27 (2020-01-27, 12:13)nessus Wrote: @pkscoutBy default all the download services are disabled (that was an intentional choice to reduce load on those services). So if you want to download art you need to go into the AS settings (the IMAGES section) and turn one (or both) of them on. The example for the skin XML was done during transition, so the idea was to provide a way for skins to update *before* AS 3.x came out that still worked with 2.x. At this point that could still be a choice you make (in case some folks using your skin haven't updated yet), but you don't need the multi-image control if you're sure everyone is on (or can upgrade to) AS 3.x. RE: Artist Slideshow addon (with skin and addon integration) - nessus - 2020-01-28 @pkscout ok, make sense. Thanks for the info. FYI, the first time that i enabled the service i got the following script error and AS was not working...
After restarting Kodi everything worked fine. Cheers Nessus RE: Artist Slideshow addon (with skin and addon integration) - pkscout - 2020-01-29 (2020-01-28, 21:11)nessus Wrote: @pkscout ok, make sense. Thanks for the info. The error is isolation is not of any help. I would need to see a full debug log with the error. RE: Artist Slideshow addon (with skin and addon integration) - Manimax - 2020-01-30 Hello, I have a problem with AS The background done that: "Artist Slideshow Update Alert Your recently updated Artist Slideshow, and the skin you are using does not yet support the new sideshow display method." Please can you help me Thanks RE: Artist Slideshow addon (with skin and addon integration) - pkscout - 2020-01-30 (2020-01-30, 01:47)Manimax Wrote: Hello,You will need to contact the author of the skin you are using and ask them to update it. Alternatively, you can download the old 2.x version of AS and keep using it. If you do that, you need to uninstall AS, then install from the zip, then set it not to update. You can get 2.1.5 (the last 2.x version) at: https://github.com/pkscout/repository.beta.pkscout/raw/helix/download/script.artistslideshow/script.artistslideshow-2.1.5.zip RE: Artist Slideshow addon (with skin and addon integration) - Manimax - 2020-01-31 (2020-01-30, 06:10)pkscout Wrote:(2020-01-30, 01:47)Manimax Wrote: [font][font]Bonjour, [/font][/font][font][font]Vous devrez contacter l'auteur du skin que vous utilisez et lui demander de le mettre à jour. [/font][font]Alternativement, vous pouvez télécharger l'ancienne version 2.x d'AS et continuer à l'utiliser. [/font][font]Si vous faites cela, vous devez désinstaller AS, puis installer à partir du zip, puis le configurer pour ne pas mettre à jour. [/font][font]Vous pouvez obtenir 2.1.5 (la dernière version 2.x) sur: [/font][/font] [font][font]Ça ne marche pas[/font][/font] RE: Artist Slideshow addon (with skin and addon integration) - Karellen - 2020-01-31 @Manimax We are an English forum. Please also post the English translation. RE: Artist Slideshow addon (with skin and addon integration) - meowmoo - 2020-02-07 AS is crashing for me when I play an Artist where all the info (nfos) is already stored (on my nas), when changing the Storage option for the info to the addon folder it works fine. Quote:2020-02-07 14:17:11.720 T:3927069408 ERROR: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<-- full log: https://paste.kodi.tv/vavusacoxa.kodi |