Mod Multi-Mod addition for the MQ 7 Krypton Mod - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: Skins Support (https://forum.kodi.tv/forumdisplay.php?fid=67) +---- Forum: Aeon MQ (https://forum.kodi.tv/forumdisplay.php?fid=68) +---- Thread: Mod Multi-Mod addition for the MQ 7 Krypton Mod (/showthread.php?tid=301497) 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
|
RE: Multi-Mod addition for the MQ 7 Krypton Mod - mataus19 - 2019-03-22 @latts9923 Yes I've selected Alphabet scrollbar from the 'KodiFlix Options / change view' dropdown menu at the top. Regards RE: Multi-Mod addition for the MQ 7 Krypton Mod - Noobie76 - 2019-03-23 (2019-03-21, 04:30)latts9923 Wrote: @RonnieG3 Great! Really looking forward to that @latts9923, Hopefully i’ll get those spinning discs working in the mq8 mod, because i think i’ve Tried everything now, but still didn’t manage to get it going. Could it possibly have something to do with the additional repo’s I had to install? Maybe my vector stuff wasn’t the right version? I’ve watched your tutorial 3 times fully, but didn’t get it right. Another thing i’m Doubting on is that I skipped the music adding part and even removed it from my skin, the same with game roms, but as far as I know that shouldn’t affect the rest of the skin? Or am I wrong here? Thanks again for putting all this effort in it so we all can enjoy this beautiful modded skin. RE: Multi-Mod addition for the MQ 7 Krypton Mod - kokobsb - 2019-03-26 @chrissix Hello . Thank you for your hard work .is there a way I can add a tag in the .nfo file to show the statue of Oscar I'm getting the info of win and nomination but nothing is showing up I don't know what to do . RE: Multi-Mod addition for the MQ 7 Krypton Mod - chrissix666 - 2019-03-26 (2019-03-26, 06:04)kokobsb Wrote: @chrissixNothing to thank, thread/skin mod maintainer is @latts9923 I only spam here too often cause i choose this skin mod as base for my own .xml projects. Regarding your question: Unfortunately not! There is no InfoLabel in kodi for that and therefore no slot in the kodi database. It can not be read into kodi. The InfoLabel you are asking for is for is "SkinHelper.ListItem.Awards" and unfortunately remains (like some others) only SkinHelperService over real time fetching over the internet. These are standard InfoLabels that can be read into kodi (storaging in kodi db): https://kodi.wiki/view/InfoLabels These are special InfoLabels that only work with bypass of SkinHelperService (only web fetching): https://github.com/kodi-community-addons/script.skin.helper.service/wiki/Listitem-Properties---All-video-items The question is asked very often, but I do not get tired of answering it. Since it is a very often requested feature, Team Kodi might be willing to expand the internal InfoLabels or "assimilate" SkinHelperService functions at Kodi19 Metropolis. RE: Multi-Mod addition for the MQ 7 Krypton Mod - kokobsb - 2019-03-26 (2019-03-26, 10:38)chrissix Wrote:(2019-03-26, 06:04)kokobsb Wrote: @chrissixNothing to thank, thread/skin mod maintainer is @latts9923 Sorry for the double post .thank you for answering .I understood that the skinhelper service is responsible for real time info fetching so it does cuz I see the oscar win and nominations but is that fetched by the skin helper service or something else ?i need to check that tonight cuz what i understand if it's fetched by skin helper then the statue should appear .I will check furder into info labels thank you again. RE: Multi-Mod addition for the MQ 7 Krypton Mod - shedrock - 2019-03-27 I was testing out this skin under Krypton on Windows and one of the things that has me beat is that I can't seem to find the code for the Extrafanart in the Wall View. The thing is that when I move from poster to poster the fanart takes over 5-10 seconds to show, and sometimes it is just blank until I exit the wall view and go back in, then the cycle repeats itself. Also, I can barely see the fanart, as the overlay is far too dark, which I am sure I can fix. Cheers! Shedrock RE: Multi-Mod addition for the MQ 7 Krypton Mod - chrissix666 - 2019-03-27 @shedrock Quote:I was testing out this skin under Krypton on Windows and one of the things that has me beat is that I can't seem to find the code for the Extrafanart in the Wall View.Extrafanart isn't handled in the views.xml's Cause the Extrafanart handling blong to all views a part of code is in the includes.xml, myvideonav.xml, includesvariables.xml Quote:The thing is that when I move from poster to poster the fanart takes over 5-10 seconds to show, and sometimes it is just blank until I exit the wall view and go back in, then the cycle repeats itself.It should not take that long, but it takes a long time, I agree with you. The code was changed some versions ago to get extrafanart via skinhelper. The advantage was that there are now extrafanarts for moviesets, the disadvantage that everything was much slower. old extrafanart code (bit faster but not working for moviesets): Code: $INFO[ListItem.Path]extrafanart/ Code: $INFO[Window(Home).Property(SkinHelper.ListItem.Art.ExtraFanArt)] There are 3 types to display extrafanart in skin: Kodi internal: Code: $INFO[ListItem.Path]extrafanart/ SkinHelper: Code: $INFO[Window(Home).Property(SkinHelper.ListItem.Art.ExtraFanArt)] ArtworkHelper/ArtworkBeef Code: plugin://script.artwork.helper/multiimage/listitem/?refresh=$INFO[ListItem.DBID]&&arttype=fanart Quote:Also, I can barely see the fanart, as the overlay is far too dark, which I am sure I can fix.This is cause of a texture in the view, you can remove or change transparency in the view.xml RE: Multi-Mod addition for the MQ 7 Krypton Mod - shedrock - 2019-03-27 @chrissix - Thank you very much for the info. Shedrock RE: Multi-Mod addition for the MQ 7 Krypton Mod - flavio1961 - 2019-03-30 Hi everyone, I installed Aeon MQ7 on my Kodi Krypton + Dsplayer following the video instructions. Everything works except the extended information of the movies that do not appear, as you can see in the image below: This is the .nfo file: <?xml version="1.0" encoding="UTF-8" standalone="yes"?> <movie> <fileinfo> <streamdetails> <video> <width>720</width> <height>576</height> <aspect>1.77</aspect> <codec>V_MPEG2</codec> <durationinseconds>7421</durationinseconds> <bitrate>5387</bitrate> <scantype>Progressive</scantype> </video> <audio> <language>ita</language> <codec>ac3</codec> <channels>2</channels> <bitrate>192</bitrate> </audio> <subtitle> <language>ita</language> <default>False</default> <forced>False</forced> </subtitle> </streamdetails> </fileinfo> <title>Movie Title</title> <originaltitle></originaltitle> <sorttitle></sorttitle> <outline> </outline> <plot>plot</plot> <tagline> </tagline> <year>1982</year> <premiered> </premiered> <userrating>0</userrating> <top250>0</top250> <country>United States of America</country> <fanart url="" /> <runtime>123 min</runtime> <mpaa> </mpaa> <genre>Dramma</genre> <tag> </tag> <credits></credits> <director></director> <studio></studio> <trailer> </trailer> <playcount>0</playcount> <lastplayed> </lastplayed> <id>tt0084855</id> <tmdbid>24226</tmdbid> <showlink> </showlink> <createdate>20190223041417</createdate> <stars> </stars> <actor> </actor> </movie> Where am I doing wrong? RE: Multi-Mod addition for the MQ 7 Krypton Mod - flavio1961 - 2019-03-30 I solved my first problem of extend information. Now I have a problem with icons movies genre. My genre are in italian language and MQ don't show the icons, if I change the genre in English all works but isn't possible to change genre for +2000 movies. Is there other possibility? RE: Multi-Mod addition for the MQ 7 Krypton Mod - Wanilton - 2019-03-30 @flavio1961 You need create one second version addon, and rename each image with exact name genre you see in the library, work this way comparing filename genre with genre available in database. You need uncompress textures.xbt, rename and compress to textures.xbt. Will work ok this way. Regards RE: Multi-Mod addition for the MQ 7 Krypton Mod - chrissix666 - 2019-03-31 (2019-03-30, 18:45)flavio1961 Wrote: I solved my first problem of extend information. you can also just manipulate the genre icon addon to your needs. Go into your kodi addon folder, change the images to your needs and name to your needs. If the addon uses the images with a textures.xbt, extract it with TextureTool, change all to your needs and repack it. RE: Multi-Mod addition for the MQ 7 Krypton Mod - Wanilton - 2019-03-31 @"chrissix" The same trouble, when came one add-on update, will overwrite.. RE: Multi-Mod addition for the MQ 7 Krypton Mod - chrissix666 - 2019-03-31 (2019-03-31, 02:21)Wanilton Wrote: @chrissixI forgot to mention, you are completely right. However, i have never experienced a simple once released genre icon addon ever received an update. But you are still right. (I always assume that the users have disabled automatic updates - of course, not everyone makes it so, so well mentioned) RE: Multi-Mod addition for the MQ 7 Krypton Mod - Wanilton - 2019-03-31 Yes, but happen, today White studios add-on was updated, if one person included a few arts changing the previous add-on version, loose all. |