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 - Jumpy73 - 2018-10-18 (2018-10-15, 03:11)latts9923 Wrote: @Jumpy73Yes... The problem occurs because, if I have a movie set with at least one movie with uhd resolution, all the movie set is stored in UHD folder (ex. Z:\MOVIES\UHD\Thor - Set (2011-2017)\Thor (2011)\Thor (2011).1080p x264.6ch AC3.mkv) RE: Multi-Mod addition for the MQ 7 Krypton Mod - latts9923 - 2018-10-18 @"chrissix" Good catch...I never noticed that. I'll fix the landscape layout and make it part of the next update. On another note, is the "SkinHelper.ListItem.RottenTomatoes.Consensus" property working for you? I've tried it and I get nothing. RE: Multi-Mod addition for the MQ 7 Krypton Mod - latts9923 - 2018-10-18 @Jumpy73 I'll see what I can do to remedy that problem. RE: Multi-Mod addition for the MQ 7 Krypton Mod - chrissix666 - 2018-10-19 (2018-10-18, 23:30)latts9923 Wrote: On another note, is the "SkinHelper.ListItem.RottenTomatoes.Consensus" property working for you? I've tried it and I get nothing. nope, great sry for missinformation a few posts ago. This Skinhelper command is dead. I only get more rotten data in my version and also other ratings cause i read them to the kodi sql db without skinhelper. ListItem.Ratings(metacritic) ListItem.Votes(metacritic) ListItem.Ratings(imdb) ListItem.Votes(imdb) ListItem.Ratings(themoviedb) ListItem.Votes(themoviedb) ListItem.Ratings(metacritic) ListItem.Votes(metacritic) ListItem.Ratings(tomatometerallcritics) ListItem.Votes(tomatometerallcritics) ListItem.Ratings(tomatometerallaudience) ListItem.Votes(tomatometerallaudience) ListItem.Ratings(anidb) ListItem.Votes(anidb) e.g. Terminator 2: <ratings> <rating name="metacritic" max="10"> <value>7.5</value> <votes>22</votes> </rating> <rating name="imdb" max="10" default="true"> <value>8.5</value> <votes>863803</votes> </rating> <rating name="themoviedb" max="10"> <value>7.9</value> <votes>5640</votes> </rating> <rating name="tomatometerallcritics" max="10"> <value>9.2</value> <votes>77</votes> </rating> <rating name="tomatometerallaudience" max="10"> <value>9.4</value> <votes>747476</votes> </rating> </ratings> RE: Multi-Mod addition for the MQ 7 Krypton Mod - nomnom27 - 2018-10-19 Hello there. I don't know exactly where to ask but is there a way to add rotten tomotoes score, rating, imdb rating, metacritic score, user votes ect in my <baseFileName>.nfo file instead of using omdb key? RE: Multi-Mod addition for the MQ 7 Krypton Mod - chrissix666 - 2018-10-19 (2018-10-19, 21:43)nomnom27 Wrote: Hello there. I don't know exactly where to ask but is there a way to add rotten tomotoes score, rating, imdb rating, metacritic score, user votes ect in my <baseFileName>.nfo file instead of using omdb key? see post #1951 RE: Multi-Mod addition for the MQ 7 Krypton Mod - nomnom27 - 2018-10-19 (2018-10-19, 21:46)chrissix Wrote:I already have an omdb key and it works fine for most of my movies. I just want to know if I'm able to put all of that info in an nfo file instead of relying on my omdb key because some of my movies won't show rotten tomatoes score, rating, metacritic rating, critics consensus, awards ect. For example the following movie Dead Rising: Watchtower is completely blank except for the imdb rating, which shows that omdb key is working but it has a lot of missing info for this movie.(2018-10-19, 21:43)nomnom27 Wrote: Hello there. I don't know exactly where to ask but is there a way to add rotten tomotoes score, rating, imdb rating, metacritic score, user votes ect in my <baseFileName>.nfo file instead of using omdb key? I checked in rotten tomatoes and it has a 30% and themoviedb has 50% rating. Is there a way to add that info to an nfo file? RE: Multi-Mod addition for the MQ 7 Krypton Mod - chrissix666 - 2018-10-19 https://kodi.wiki/view/NFO_files https://sourceforge.net/projects/mediacompanion/ https://www.rottentomatoes.com/m/dead_rising_watchtower/ Full Dead Rising Watchtower ratings for me aviable in .nfo scraper. Code: <ratings> RE: Multi-Mod addition for the MQ 7 Krypton Mod - nomnom27 - 2018-10-19 (2018-10-19, 22:17)chrissix Wrote: https://kodi.wiki/view/NFO_filesIt worked for themoviedb but not for rotten tomatoes. I'm I doing something wrong? RE: Multi-Mod addition for the MQ 7 Krypton Mod - JanM201 - 2018-10-20 Hi @latts9923 Thank you very much for the new update. Your work is greatly appreciated. Everything is working fine except for the following, see pictures: Widgets are still showing on the left side. Not centered as in your video. I have no ratings for these even though I've got API Keys. Could you please point me in the right direction. Maybe a setting or something I've missed. Thanks very much RE: Multi-Mod addition for the MQ 7 Krypton Mod - Edworld - 2018-10-20 (2018-10-20, 13:54)JanM201 Wrote: Hi @latts9923Dud you install skinhelper? RE: Multi-Mod addition for the MQ 7 Krypton Mod - grimmace92 - 2018-10-20 Chrissix, Can you post the section of your videodialoginfo.xml file so people can try to use the ratings without skinhelper? Most people don’t know what to do. You seem to avoid showing that for some reason and it clogs up the thread with people asking. Is there some reason you are unwilling to share? RE: Multi-Mod addition for the MQ 7 Krypton Mod - JanM201 - 2018-10-20 (2018-10-20, 14:03)Edworld Wrote:Did you mean this?(2018-10-20, 13:54)JanM201 Wrote: Hi @latts9923Dud you install skinhelper? RE: Multi-Mod addition for the MQ 7 Krypton Mod - chrissix666 - 2018-10-20 Wich version of Addons "SkinHelperService" and "Metadata and Artwork Module" installed? RE: Multi-Mod addition for the MQ 7 Krypton Mod - chrissix666 - 2018-10-20 (2018-10-20, 14:57)grimmace92 Wrote: Chrissix, Unfortunately, this is not a feature in the official mod, so we are here in principle in the thread wrong. Create a thread with an exactly formulated question or maybe someone comes up with the idea to write a PM. It is a not easy way that I have developed step by step. At least you need the following prerequisites. Kodi Scraper have to be the Local Information Only Scraper. Every Movie need a .nfo file. For that you need a Media Manager. My Media Manager is MediaCompanion, there extended ratings are aviable. And at pretty last you need to change some codes in dialogvideoinfo.xml |