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 - 2019-05-05 (2019-05-05, 00:59)manfeed Wrote: Hi @pkscoutYea, that's last.fm. They just keep getting more and more stingy with their images. AS dropped support for using last.fm for artist images a few years back because last.fm stopped providing them via the API. I just did some checking, and it looks like during a "clean up" of their APIs they disabled the rest of the images because using images is a violation of their API usage guidelines. I'll update the code when AS 3.0 comes out to remove the similar artist image (and any other images I get back from them), so the only thing last.fm is any good for anymore is some text stuff like bios and lists of albums and similar artists. Which really makes me wonder if I should just drop it all together. It kind of doesn't make sense for an addon that is designed to show images of artists to support a service that doesn't let you use images. RE: [RELEASE] Artist Slideshow 1.3.0 addon (with skin and addon integration) - manfeed - 2019-05-05 It’s a pity I make extensive use of similar artists images in my skin, so I was wondering whether it would be possible to use as a source the names and images of other artists in your local library that share the same genre, instead of lastfm... would that be feasible? Thanks! RE: [RELEASE] Artist Slideshow 1.3.0 addon (with skin and addon integration) - pkscout - 2019-05-05 (2019-05-05, 11:23)manfeed Wrote: It’s a pity I make extensive use of similar artists images in my skin, so I was wondering whether it would be possible to use as a source the names and images of other artists in your local library that share the same genre, instead of lastfm... would that be feasible?There are three potential paths I can take to try and restore this functionality. None of them look particularly easy, so it'll probably be quite awhile (if ever) before I get to it. Note that it isn't just artist thumbnails but also album covers for last.fm stuff that has to be dealt with. 1- Use the artist or album image that Kodi already has stored for local artists and albums. That's fine if you happen to have the artist or album last.fm is returning, but you'd still have no images for anything else. I don't like that inconsistency, but at least it looks like I might be able to do it using the Kodi JSON API. 2- Drop last.fm support and try and rebuild similar artists and album list using only local Kodi db information. Obviously it would be a crippled version of those, as it would include only artists or albums you already have. You'd loose the discoverability last.fm provides because last.fm shows you stuff you might not have. 3- Use the other image sources (i.e. fanart.tv and theaudodb.com) to download artist and album images. This would require a substantive rewrite of AS to support artist thumbnails and album covers, and I really don't like the idea of putting more of a burden on these other services just because the folks at last.fm are hostile to the developer community. It's basically shifting the costs from last.fm to the other services. I'll add this to the list for the next major version (3.x) and see what I can do. I suspect I'll ponder them in the order I listed, but I almost certainly won't do #3. RE: [RELEASE] Artist Slideshow 1.3.0 addon (with skin and addon integration) - manfeed - 2019-05-06 I understand, whatever you choose to do will be ok for me I have thought about something, but it could be a nonsense or just impossible, or maybe both since I don't now a word about addons ... since lastfm still returns artists' names, could be that name used to perform a search in internet and return the very first image found? Thanks for your work! RE: [RELEASE] Artist Slideshow 1.3.0 addon (with skin and addon integration) - pkscout - 2019-05-06 (2019-05-06, 10:26)manfeed Wrote: I understand, whatever you choose to do will be ok for meThat's technically possible but would probably insert an unacceptable amount of unpredictability into things. I'd rather have no image than the wrong image (or a crappy right one). RE: [RELEASE] Artist Slideshow 1.3.0 addon (with skin and addon integration) - pkscout - 2019-09-01 Just a note to let folks know I have a working version of AS that is compatible with both Python2 and Python3. In my limited testing it works fine in the Kodi 19 Alphas. If you want to be way out on the edge, you can download a zip of it from my Github repo at: https://github.com/pkscout/script.artistslideshow/tree/new-version There's also a little (and I mean a tiny amount) of work in there to support the new music artist fanart schema introduced in Kodi 18. I mention this only because there's an advanced setting to enable it, but literally all I've done so far is have AS get the path to the Kodi 18 music artwork directory. So, in essence, that setting does NOTHING right now. RE: Artist Slideshow addon (with skin and addon integration) - sualfred - 2019-09-07 @ronie @pkscout Maybe moving this thread to https://forum.kodi.tv/forumdisplay.php?fid=300 ? RE: Artist Slideshow addon (with skin and addon integration) - pkscout - 2019-09-07 (2019-09-07, 08:50)sualfred Wrote: @ronie @pkscoutAS has, to me, always been an odd thing to categorize. It relates to music, but it isn't a music add-on. It requires skin support, but isn't really a skin helper. It's always lived in the programs area because of the structure of the code which defines it as a program add-on. If there was a way to soft link threads into other parts of the forum I'd argue for it to be in all three areas, but with only one place it can be I think here is the best bet (if for no other reason than a decade plus of history). If it got moved to the skin helper area I think only skinners would really ever find it, and I see many more questions here from people using the add-on than skinners adding support (although I suspect it's partially because the skin support is pretty self-explanatory - and well documented - and partially the fact that the thread is here rather than the skin helper area). RE: Artist Slideshow addon (with skin and addon integration) - hurricane51 - 2019-10-20 (2012-03-06, 22:51)pkscout Wrote: Artist Slideshow Features I'm defeated in my attempts to search thread RE: Artist Slideshow addon (with skin and addon integration) - hurricane51 - 2019-10-20 I'm defeated in my attempts to search this thread. Can I copy my artwork from a working installation of KODI to a new installation. (I also have problems posting and editing messages in this forum, obviously.) RE: Artist Slideshow addon (with skin and addon integration) - Karellen - 2019-10-20 @hurricane51 Editing a post seems to catch a lot of members out as the Edit options are very discrete and easily missed. See image... RE: Artist Slideshow addon (with skin and addon integration) - pkscout - 2019-10-20 (2019-10-20, 10:49)hurricane51 Wrote: I'm defeated in my attempts to search this thread. Can I copy my artwork from a working installation of KODI to a new installation. (I also have problems posting and editing messages in this forum, obviously.)Yes, you can copy art from one install to another. If you didn't set a specific location for the art, it's in your User Data directory: https://kodi.wiki/view/Userdata Specifically it's in: addon_data/script.artistslideshow. If you want to copy just the artwork, you need the ArtistSlideshow directory. If you want the art and all the data downloaded from the various image services, grab the ArtistInformation directory as well. Just put them in the same place on the new installation and you should be set. If you did specify a custom location for your artwork in the settings, you can grab that directory and put it wherever you want. RE: Artist Slideshow addon (with skin and addon integration) - hurricane51 - 2019-10-21 (2019-10-20, 22:06)pkscout Wrote:(2019-10-20, 10:49)hurricane51 Wrote: I'm defeated in my attempts to search this thread. Can I copy my artwork from a working installation of KODI to a new installation. (I also have problems posting and editing messages in this forum, obviously.)Yes, you can copy art from one install to another. Thanks, that's the answer I needed. RE: Artist Slideshow addon (with skin and addon integration) - Karellen - 2019-10-27 Hello @pkscout I haven't listened to music in Kodi for a while, but had occasion to last night. I am using v18.4 with AeonNox Silvo v7.0.8 by @mikeSiLVO and Artist Slideshow v2.1.4 I noticed that for every artist we listened to, Artist Slideshow would (attempt to) download artwork and create new folders titled "extrafanart" and "information". Most of these folders were empty. My queries... 1. It seems to be ignoring local artwork 2. It duplicates already available local artwork 3. It does not use the new method of saving extrafanart eg fanart1, fanart2 etc Any idea why this is happening. Do I have a wrong setting enabled/disabled somewhere? I then disabled all references to external sites in the settings page for the addon, but it continues to create these empty folders. I have since disabled the add-on. Needless to say there was a bit of cleaning up to do. Here is the log. Line 2547... https://paste.kodi.tv/upopigecab.kodi Example of created folders... Judging by the log, it is searching for the \extrafanart\ folder which I don't use, so it does not find any of my extrafanart. Another issue I noticed, and probably more of a Kodi issue, is after I Disabled the add-on, it merrily continued to download artwork. Disabling required a restart of Kodi. Let me know if you need anything else. RE: Artist Slideshow addon (with skin and addon integration) - MB1968 - 2019-10-27 (2019-10-27, 01:08)Karellen Wrote: Hello @pkscouthttps://forum.kodi.tv/showthread.php?pid=2787088#pid2787088 |