Release script.extendedinfo - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Development (https://forum.kodi.tv/forumdisplay.php?fid=32) +--- Forum: Skinning (https://forum.kodi.tv/forumdisplay.php?fid=12) +---- Forum: Skin helper addons (https://forum.kodi.tv/forumdisplay.php?fid=300) +---- Thread: Release script.extendedinfo (/showthread.php?tid=160558) 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
|
RE: [RELEASE] script.extendedinfo - phil65 - 2013-04-03 no idea. RE: [RELEASE] script.extendedinfo - phil65 - 2013-04-03 i now added a function to add extrathumbs / extrafanart to artwork database. (perhaps i should also add it to script.artwork.downloader?) btw you can start the addon now from programs section. that will give you options to start some functions manually. after running the db update you can get the images with listitem.art(extrathumbX) / listitem.art(extrafanartX) with X = 0,1,2... if pieh / jmarshall is reading this: is there any downside when saving 20+ artwork images per movie? (except disk space usage) RE: [RELEASE] script.extendedinfo - Martijn - 2013-04-03 (2013-04-03, 15:58)phil65 Wrote: i now added a function to add extrathumbs / extrafanart to artwork database. i think we better add it there yes (and definitely create a standard way so we don't create way to much overhead) our idea was to store those images as a single multipath:// image Downside of adding that much images like you do is that in Gotham the select image will search database for available "artwork" labels and this way you get one huge list to select from This way you could use a multiimage control with listitem.art(extrathumb) with extrathumb containing the multipath:// location Didn't get around to it yet to test that out. RE: [RELEASE] script.extendedinfo - phil65 - 2013-04-03 where can i find info about how to use multipath://? RE: [RELEASE] script.extendedinfo - Martijn - 2013-04-03 (2013-04-03, 16:11)phil65 Wrote: where can i find info about how to use multipath://? This is how i split multipath https://github.com/XBMC-Addons/script.artwork.downloader/blob/master/resources/lib/media_setup.py#L190 so basically you need to reverse that process and combine the complete path+file for each image into that single multipath:// and throw that in a multiimage control this is of course theoretical RE: [RELEASE] script.extendedinfo - phil65 - 2013-04-03 ok, looks simple. will give it a try when i find some time. RE: [RELEASE] script.extendedinfo - phil65 - 2013-04-03 had a quick look in xbmc code... is it safe that multipath:// works for single files? i got the impression that it is exclusively for paths... RE: [RELEASE] script.extendedinfo - phil65 - 2013-04-04 tried it, and it seems my suspicion was correct: 03:06:43 T:8292 DEBUG: CMultiPathDirectory::GetDirectory(multipath://C%3a%5c720p%5cthumb2.png/....) 03:06:43 T:8292 DEBUG: Getting Directory (C:\720p\thumb2.png) 03:06:43 T:8292 ERROR: XFILE::CDirectory::GetDirectory - Error getting C:\720p\thumb2.png 03:06:43 T:8292 ERROR: Error Getting Directory (C:\720p\thumb2.png) so I´m right to assume that there is no better way to add extrafanart / extrathumbs to database? RE: [RELEASE] script.extendedinfo - crimsonfury - 2013-04-04 Does this work for making widgets work for Video Addons as well? RE: [RELEASE] script.extendedinfo - phil65 - 2013-04-04 (2013-04-04, 03:14)crimsonfury Wrote: Does this work for making widgets work for Video Addons as well? nothing to do with this, skin-related and wrong subforum (devs only here) RE: [RELEASE] script.extendedinfo - jmarshall - 2013-04-05 Correct, a multipath:// will not work. A stack:// might though maybe - not sure. RE: [RELEASE] script.extendedinfo - phil65 - 2013-04-05 quick test gave me this: 04:16:59 T:8552 WARNING: XFILE::CFileFactory::CreateLoader - Unsupported protocol(stack) in stack://C%3A%2FAMD%2Fthumb1.png 04:16:59 T:8552 DEBUG: CTextureCacheJob::GetImageHash - unable to stat url stack://C:/AMD/thumb1.png i hope i URL encoded correctly. RE: [RELEASE] script.extendedinfo - phil65 - 2013-04-08 in backend mode: on artist level you have: Artist.Album.%d.Title Artist.Album.%d.Plot Artist.Album.%d.PlotOutline Artist.Album.%d.Year Artist.Album.%d.Duration Artist.Album.%d.Thumb Artist.Album.%d.ID Artist.Albums.Newest Artist.Albums.Oldest Artist.Albums.Count Artist.Albums.Playcount RE: [RELEASE] script.extendedinfo - phil65 - 2013-04-08 NearEvents now supports some parameters: prefix: will get added in front of property name festivalsonly: only show festivals (default off) tag: filter by tag (example: tag=rock) Examples: RunScript(script.extendedinfo,info=NearEvents,prefix=Festivals,festivalsonly=true) RunScript(script.extendedinfo,info=NearEvents,prefix=Rock,tag=rock) + new Property NearEvents.%i.Thumb RE: [RELEASE] script.extendedinfo - phil65 - 2013-04-14 the script now shows the busy dialog by default when active. you can suppress that by adding ,silent=True to parameters. |