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) - pkscout - 2021-01-12 (2021-01-12, 13:20)1dz61 Wrote: First of all, thank you both very much.That's not how Artist Slideshow works, and it makes no sense to me to have it work that way. RE: Artist Slideshow addon (with skin and addon integration) - Jeffers24 - 2021-01-27 @pkscout I have some MP3 tracks on local storage. When I play them I don't get any artist wallpaper or details. I realise this is because when I copied the MP3s I didn't copy the data that your addon needs to search and find relevant details. I would like to edit the MP3 details to include the data your addon needs. Which fields in an MP3 file do I need to add the data to, so your addon finds the artist details and the artist wallpaper? RE: Artist Slideshow addon (with skin and addon integration) - pkscout - 2021-01-27 (2021-01-27, 13:27)Jeffers24 Wrote: @pkscoutI'd suggest using MusicBrainz Picard to add data to the MP3 files. That will add all the needed data (and more). https://picard.musicbrainz.org/ RE: Artist Slideshow addon (with skin and addon integration) - RobinTW - 2021-02-04 AS creates an empty folder if no such artist image/info is available. How do I get AS to stop creating those empty folders? RE: Artist Slideshow addon (with skin and addon integration) - pkscout - 2021-02-04 (2021-02-04, 10:19)RobinTW Wrote: AS creates an empty folder if no such artist image/info is available. How do I get AS to stop creating those empty folders?I could've sworn I had fixed that. AS still creates the folder, but if it's empty at the end I'm pretty sure it deletes it (or is suppose to). If you can tell me an artist where you are seeing that, I can do some checking here on my end. RE: Artist Slideshow addon (with skin and addon integration) - RobinTW - 2021-02-05 (2021-02-04, 23:17)pkscout Wrote:Strange! I updated again to v.3.2.2 (it was v.3.2.2) and that fixed the problem. Anyway, thanks a lot.(2021-02-04, 10:19)RobinTW Wrote: AS creates an empty folder if no such artist image/info is available. How do I get AS to stop creating those empty folders?I could've sworn I had fixed that. AS still creates the folder, but if it's empty at the end I'm pretty sure it deletes it (or is suppose to). If you can tell me an artist where you are seeing that, I can do some checking here on my end. RE: Artist Slideshow addon (with skin and addon integration) - manfeed - 2021-02-08 First of all, thanks for this great add-on! I think I've found a small bug (I'm in Matrix) when using Window(Visualisation).Property(ArtistSlideshow.%.AlbumName). I've uploaded this small video to explain it... https://streamable.com/s1k3dq ...in order to test, I display the 10 first albums for each artist. As you can see, when the current artist has fewer albums than the previous one, some albums from the former list don't get erased and keep showing. When the artists have plenty of albums this doesn't happen. Thanks for having a look! RE: Artist Slideshow addon (with skin and addon integration) - pkscout - 2021-02-08 (2021-02-08, 22:27)manfeed Wrote: First of all, thanks for this great add-on! I think I've found a small bug (I'm in Matrix) when using Window(Visualisation).Property(ArtistSlideshow.%.AlbumName). I've uploaded this small video to explain it...Could you post a debug log of that happening (including turning on debug logging in the AS settings)? I've looked through the code, and I'm not seeing why or how that would be happening. If I can see a log of it happening, it might help me when looking at the code again. RE: Artist Slideshow addon (with skin and addon integration) - manfeed - 2021-02-08 I have also tested with images, with Window(Visualisation).Property(ArtistSlideshow.%.AlbumThumb) and it happens exactly the same, the old images keep showing. This is the log... https://paste.kodi.tv/orefedelur.kodi Thanks. RE: Artist Slideshow addon (with skin and addon integration) - pkscout - 2021-02-09 (2021-02-08, 23:32)manfeed Wrote: I have also tested with images, with Window(Visualisation).Property(ArtistSlideshow.%.AlbumThumb) and it happens exactly the same, the old images keep showing. This is the log...I think I found the problem. I'm not at home (and won't be until next week), so I don't have an easy way to test the fix though. If you're up for it, there are two small changes in one file. file: <kodi userdata folder>/addons/script.artistslideshow/resources/lib/artistslideshow.py change: lines 1076 and 1080 change str( count ) to str( count + 1 ) When you're done, the code in context should look like this: Code: def _set_properties( self ): Basically I didn't properly take into account how the enumerate function generates numbers versus the range function that is used later when unsetting the items. RE: Artist Slideshow addon (with skin and addon integration) - manfeed - 2021-02-09 (2021-02-09, 01:54)pkscout Wrote: I think I found the problem. I'm not at home (and won't be until next week), so I don't have an easy way to test the fix though. If you're up for it, there are two small changes in one file. That was fast! I have made the changes you said and everything seems to work perfect now. Thanks! RE: Artist Slideshow addon (with skin and addon integration) - pkscout - 2021-02-09 (2021-02-09, 02:15)manfeed Wrote:Great. When I get back home I'll get that into the pipeline for an update. There are some other things I wanted to change in the background, so this is the excuse to do those.(2021-02-09, 01:54)pkscout Wrote: I think I found the problem. I'm not at home (and won't be until next week), so I don't have an easy way to test the fix though. If you're up for it, there are two small changes in one file. RE: Artist Slideshow addon (with skin and addon integration) - Bilbo430 - 2021-02-20 Hi, Loved this addon with Kodi but when upgraded to Kodi 19 it doesn't work anymore. Downloaded the latest commit and now getting a python dependency 2.26 error now. What am I doing wrong? Do I need a python addon? Thanks, Bill RE: Artist Slideshow addon (with skin and addon integration) - pkscout - 2021-02-20 (2021-02-20, 20:49)Bilbo430 Wrote: Hi,I just responded to your issue on github. If you installed AS from a zip file from the Github repo (which is not the recommended install method), then Matrix didn't auto update it. You should probably manually delete AS and then install it from the main Kodi addon repo from within Kodi. That way you'll get the auto updates. RE: Artist Slideshow addon (with skin and addon integration) - RobinTW - 2021-03-05 There are two ALBUMARTISTS and one ARTIST in this track. However when I play this track, I only get ARTIST, Johann Strauss, displayed. If I want all three displayed, I need to edit ARTIST to Erich Kunzel / Cincinnati Pops Orchestra / Johann Strauss. Can Artist Slideshow read those two ALBUMARTISTS and one ARTIST tags, and display all three without me editing the tags? Thanks a lot. ALBUM Ein Straussfest ALBUMARTIST Erich Kunzel, Cincinnati Pops Orchestra ALBUMARTISTS Erich Kunzel ALBUMARTISTS Cincinnati Pops Orchestra ALBUMARTISTSORT Kunzel, Erich, Cincinnati Pops Orchestra ARTIST Johann Strauss ARTISTS Johann Strauss ARTISTSORT Strauss, Johann ASIN B000003CTC BARCODE 89408009822 CATALOGNUMBER CD-80098 DISCNUMBER 1 DISCTOTAL 1 LABEL Telarc Digital MEDIA CD MUSICBRAINZ>LBUMARTISTID 99845d0c-f239-4051-a6b1 -4b5e9f7ede0b MUSICBRAINZ.ALBUMARTISTID d8fbd94c-cd06-4e8b-a559-76lad969d07e MUSICBRAINZJXLBUMID 1851c70d-9a3c-4fed-9ca0-40c3ace1 c837 MUSICBRAINZRTISTID 8255db36-4902-4cf6-8612-0f2b4288bc9a MUSICSRAINZ.RELEASEGROUPID 25a2bce8-68b6-387d-893f-c76l 7a99132f MUSICBRAINZ.RELEASETRACKID 2da37050-09ec-450e-9347-ac6ef34b0312 MUSICBRAINZ.TRACKID 38a2f9e1-9db0-454f-8ee6-382lfa1b7950 ORIGINALDATE 1985 ORIGINALYEAR 1985 RELEASECOUNTRY US RELEASESTATUS oHicial RELEASETYPE album SCRIPT Latn TITLE Explosions Polka, op. 43 TOTALDISCS 1 TOTALTRACKS 12 TRACK 1 TRACKTOTAL 12 YEAR 1985 |