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 - 2016-01-02 (2016-01-02, 01:47)Douganator Wrote: I have been reading through this thread and see that AS doesn't read Album Artists tag either yet Kodi must read that tag. I have albums that are tagged as Various Artists and Kodi displays a various artists fanart to match this tag. AS doesn't read any of the tags on the files at all. When a song starts AS asks Kodi what is playing and then figures out the artwork it needs to show. If Kodi actually says the artist is "Various Artists," then AS will show the Various Artists images from fanart.tv (assuming you have the fanart.tv download enabled). If Kodi says that the song has multiple artists (which is different from various artists), then AS will attempt to find, download, and display artwork for every one of the artists. If you have things you think should be showing the Various Artists images that don't, please enable debug logging for AS (in the AS settings) as well as Kodi and then post a link to the log. RE: [RELEASE] Artist Slideshow 1.3.0 addon (with skin and addon integration) - meowmoo - 2016-01-07 Hi i got a question, I use the cdArt Manger addon to get all the extrafanart/logo and stuff for my music collection. cdArt manger have a option to replace illegal Characters, for example all the R.E.M. images are in a folder called R.E.M_ If i play R.E.M., AS dont recognize the folder from cdArt Manager, instead AS download all the pictures again and place them in a Folder named "RP85G1~P" So I have all the Images twice... would it be possible to use the same replace illegal characters option from cdArt Manger in AS? So AS use the images that are downloaded by cdArt Manager. RE: [RELEASE] Artist Slideshow 1.3.0 addon (with skin and addon integration) - pkscout - 2016-01-08 (2016-01-07, 23:48)meowmoo Wrote: Hi i got a question, I have to start by pointing out that a period at the end of the folder name is not an illegal character on any platform as far as I know. So that makes me less inclined to use the illegal character logic used by cdArt manager. If someone can send me the illegal character logic for cdArt Manager, I'll look at it. No promises though. RE: [RELEASE] Artist Slideshow 1.3.0 addon (with skin and addon integration) - meowmoo - 2016-01-08 Thanks for the quick answer on windows a folder named "R.E.M." is missing the last period. not really a illegal character, but the first thing come to my mind I will ask the current author of cdArt manger if he can send you the illegal character logic RE: [RELEASE] Artist Slideshow 1.3.0 addon (with skin and addon integration) - stef.an - 2016-01-09 Hi, meowmoo uses my version of cdART Manager. Windows cannot handle files and directories with names ending on periods. The logic is customizable by the user, he can choose if he wants to use the function at all, only replace certain characters and/or if he wants to remove trailing periods (and spaces). The replacement character is also user definable. So there's no really easy way of "synchronizing" the functionality I think. You can check change_characters in https://github.com/stefansielaff/script.cdartmanager/blob/NG/resources/lib/utils.py for details. I'm currently rebuilding the addon, so everything is subject to review. But I currently don't think I'll change that because it's a pain to remove these folders once they're created from within python. Only possible through cmd oder powershell or... python RE: [RELEASE] Artist Slideshow 1.3.0 addon (with skin and addon integration) - pkscout - 2016-01-10 I took a look at the change_characters from stefan's github, and I see what it's doing. The thing is, implementing this in AS would be a pretty substantial effort. Not only do I have to make sure directories get written out with the right names, I have to rewrite the entire logic for matching an artist name to a folder name. AS originally dealt with this kind of issues by hashing the artist name (and it still does that for stuff that it downloads). So the only time this comes up is if you have your own directory of artwork you want to use. The worst case is that AS can't find a directory match in your stuff and downloads a few extra files. I know that isn't ideal, and I suppose it is technically a bug, but I don't think I'm going to try and address it. If someone gets inspired and wants to implement the cdART Manager exclusion character logic, I'd accept a pull request and review it. RE: [RELEASE] Artist Slideshow 1.3.0 addon (with skin and addon integration) - gibxxi - 2016-01-10 (2016-01-08, 00:12)pkscout Wrote:(2016-01-07, 23:48)meowmoo Wrote: Hi i got a question, If I may chime in here, as I've suffered this very issue with an artist name ending in with a period character. It will work fine on Linux, which is where my media is stored (Linux-based NAS), the problems start in Windows. If you have a folder ending in a trailing period that's synced as it exists in Linux with something like Rsync or another sync tool back to Windows, one of two things will occur. 1. Either windows will give the folder name a differing name (using random characters), or 2. It will treat the folder as if it's a file, not a folder, and then navigation into said folder will be impossible. The only way to then manipulate the folder item is to use a force deletion tool like "Unlocker" to remove the offending entry as Windows will spit out errors whenever you try to do anything with it (Usually file/folder not found errors). Windows also doesn't like folders with leading periods either, and I have an album which comes under that criteria, but I guess that's another issue. Gib. RE: [RELEASE] Artist Slideshow 1.3.0 addon (with skin and addon integration) - 1artner - 2016-02-07 Hi, I've been using your add-on for a long time, on a cubox-i 2, with openelec, Aeon Nox skin. After updating openelec to 6.0.1. the add-on stopped working. Is this a known issue or do I have to change settings / configuration of the add-on or the skin? Thanks for a short feedback. RE: [RELEASE] Artist Slideshow 1.3.0 addon (with skin and addon integration) - pkscout - 2016-02-07 (2016-02-07, 12:16)1artner Wrote: Hi, I don't know of anything off hand that would cause AS to stop working after an OS update. I'd need some debug log files (make sure to turn on debug logging in AS *and* Kodi) to see if anything jumps out. RE: [RELEASE] Artist Slideshow 1.3.0 addon (with skin and addon integration) - brohawk - 2016-02-08 Similar problem for me after updating to 6.0.1. But it didn't stop working, it just stopped working correctly. Now AS cycles through the background images of artists already in my library, but doesn't show artwork for the actual artist playing and doesn't seem to be downloading any new artwork. Same effect whether I play a local file or use an addon. I'm hoping if I go in and delete the cache, that'll fix it, but haven't had time to poke around in there yet. RE: [RELEASE] Artist Slideshow 1.3.0 addon (with skin and addon integration) - pkscout - 2016-02-09 If somebody will post some log files I will look into it. Otherwise there's zero I can do. I don't have an Ubuntu box on which to test this. RE: [RELEASE] Artist Slideshow 1.3.0 addon (with skin and addon integration) - EdKo66 - 2016-02-12 I'll try to find a way to upload some log files. Not sure what version of OpenElec this is, but running Kodi15.2 (Raspberry Pi 2) (Still looking for where to find the log). Edited: Don't know WHAT happend, but just now I see some artwork popup. RE: [RELEASE] Artist Slideshow 1.3.0 addon (with skin and addon integration) - 1artner - 2016-02-13 Pkscout, thanks for your reply. I was a little short on time, lately... I am usually running AS with debugging log on, but haven't been able to locate the actual log files, yet. What path do they go to? Don't know if this helps anything, but here's a link to my latest kodi & system log, as .txt files. I am not too experienced in the forum file [/php][/quote]uploading business, so I hope this works... http://1drv.ms/1PT5mIa RE: [RELEASE] Artist Slideshow 1.3.0 addon (with skin and addon integration) - pkscout - 2016-02-13 (2016-02-13, 14:44)1artner Wrote: Pkscout, thanks for your reply. I was a little short on time, lately... AS adds it's logging to the Kodi log. I looked through the log, I never see any music playing. AS is designed to download and show artwork when music is playing. RE: [RELEASE] Artist Slideshow 1.3.0 addon (with skin and addon integration) - 1artner - 2016-02-13 (2016-02-13, 18:59)pkscout Wrote: AS adds it's logging to the Kodi log. I looked through the log, I never see any music playing. AS is designed to download and show artwork when music is playing. I have updated the log, after music was playing. Please check again. Same link. |