2019-01-09, 07:09
Awesome work. Thanks! Is it possible to have the rotten tomatoes rating in the Kodiflix media flags use the same code if its in the nfo? This way it wouldn' t have to wait for skinhelper.
(2019-01-10, 01:19)the_bo Wrote: What are the tags to store the rotten tomatoes and metacritic ratings stored in nfo file?media companion scrapes all ratings
Much rather having them local than relying on skin helper.
Is there an easy way to scrape the ratings and store in nfo. I believe ember media manger may do this.
Thanks for any info.
Happy new year @latts9923
I'm sure not alone in saying would like to donate to you for all your great work.
Do you run your own server hosting the mod files to download. That would be costing you also.
We could all chip in for a big gift for your birthday
<rating name="metacritic" max="10">
<value>5.6</value>
<votes>117</votes>
</rating>
<rating name="tomatometerallaudience" max="10">
<value>4.3</value>
<votes>36951</votes>
</rating>
<rating name="tomatometerallcritics" max="10">
<value>2.8</value>
<votes>112</votes>
</rating>
(2019-01-10, 01:19)the_bo Wrote: What are the tags to store the rotten tomatoes and metacritic ratings stored in nfo file?
<ratings>
<rating name="metacritic" max="10">
<value>7.3</value>
<votes>35</votes>
</rating>
<rating name="imdb" max="10" default="true">
<value>8.7</value>
<votes>1427704</votes>
</rating>
<rating name="themoviedb" max="10">
<value>8.0</value>
<votes>12050</votes>
</rating>
<rating name="tomatometerallcritics" max="10">
<value>8.7</value>
<votes>143</votes>
</rating>
<rating name="tomatometerallaudience" max="10">
<value>8.5</value>
<votes>33323619</votes>
</rating>
</ratings>
(2019-01-09, 07:09)grimmace92 Wrote: Awesome work. Thanks! Is it possible to have the rotten tomatoes rating in the Kodiflix media flags use the same code if its in the nfo? This way it wouldn' t have to wait for skinhelper.
(2019-01-10, 04:01)mataus19 Wrote: Hi, I'm looking for some advice on how to get the Oscars to show on the dialogue page. Is there anything I can add to my NFO files? Thanks
(2019-01-24, 16:28)chrissix Wrote:@chrissix(2019-01-10, 04:01)mataus19 Wrote: Hi, I'm looking for some advice on how to get the Oscars to show on the dialogue page. Is there anything I can add to my NFO files? Thanks
Oscars are working with the Skinhelper InfoLabel "SkinHelper.ListItem.Awards", but unfortunately there is no kodi internal InfoLabel for that and no way to read them from .nfo to kodi.
This are kodi internal InfoLabels:
https://kodi.wiki/view/InfoLabels
This are Skinhelper InfoLabels:
https://github.com/marcelveldt/script.sk...ideo-items
Sure you can show the Oscars on DialogVideoInfo with SkinHelper (only). You have to add little code in your dialogvideoinfo.xml
On my side Oscars in DialogVideoInfo is looking like this:
https://ibb.co/P1XgYXf
(2019-01-25, 15:26)mataus19 Wrote: Thanks for the info. So you can only use skin helper service to implement the Awards information in to Kodi?
This is the first time I've heard of the 'ListItem'... How do I go about implementing the relevant movie awards information using Skin Helper?
(2019-01-26, 18:07)chrissix Wrote:=12ptThat's just the issue I have...on the bottom left in DialogVideoInfo and in the top left in RightListView I cannot get the Oscars or the awards details to show.(2019-01-25, 15:26)mataus19 Wrote: Thanks for the info. So you can only use skin helper service to implement the Awards information in to Kodi?
This is the first time I've heard of the 'ListItem'... How do I go about implementing the relevant movie awards information using Skin Helper?
I have no idea what you want to do
In this skin mod from @latts9923 Award information from Skinhelper is shown on bottom left in DialogVideoInfo, and graphical Oscars on top left in RightListView.