2023-11-28, 03:27
(2023-11-26, 23:47)beeswax Wrote: Great to see you working on this already Mike, props. I read about the Versions/Extras features a while back and was quietly hoping they'd make it to AN:SiLVO some day, but here we are already!
I think having Versions and Extras on separate screens, with a press left to toggle is the better of the two options suggested. Just feels neater and more organised that way.
Would there be a way/option to prompt for version (where more than one exists) when hitting the normal "Play" button? I do have a few movies in my collection with multiple versions but I'm not sure I'd remember that when browsing the library and picking something to watch. The version window popping up at that point would be greatly appreciated. I haven't actually tried this out yet, so maybe this is already standard behaviour but asking just in case it isn't!
I think there might be a Kodi setting to play a default version or it asks with the dialog but I haven't played around with it much yet.
(2023-11-27, 02:11)Karellen Wrote: Hi @mikeSiLVO
Wondering if you can check these couple of PVR releated issues...
1. Reduce size of channel logo to fit allotted area. Also, wondering if the Aeon Nox Silvo banner needs to be there? Maybe even reduce the horizontal width of the logo area, and increase the width of the plot description area?
2. Aeon Nox Silvo logo seems to be a bit distracting. also, the OK button is part off the screen. Probably need to increase the width of the plot description area?
3. Any chance of including an icon in the Guide to show scheduled recordings?
Please try the latest from GitHub.
1. I shortened the width a smidge and removed the skin logo, do not even remember why I added it there in the first place...
2. Not sure if the space I added moved the button enough but I can extend it further if still offscreen.
3. That should already be working
The icons should match the default skin. I used the same variable in Estuary.
(2023-11-27, 15:25)jjd-uk Wrote: Nice work. While not a Aeon Nox user, I'm looking to improve the Estuary look from what was merged for Video Versions. I already have an PR open for chnages to Estuary, but I'm now wondering if something similar to what you've done with the seperated look in test_layout_videoversions branch might suit Estuary also. So thanks for pushing that code publically as it's given me pause for thought for what's best for Estuary.
(2023-11-27, 19:39)CaptainKen Wrote: In post #11,019 I see multiple ratings in the screen shot. How do you get those.
I'm using Ember Media Manager to scrape and the setting for ratings only allows one source.
I don't use any media managers. For Rotten Tomatoes, I have an OMDb API key I use in both script.metadata.editor and TheMovieDb Helper plugin from jurialmunkey.
You can also add the ratings to nfo but I don't know which media managers can do that, if any.
Example ratings for nfo
xml:<ratings>
<rating name="imdb" max="10" default="true">
<value>6.7</value>
<votes>48610</votes>
</rating>
<rating name="themoviedb" max="10" default="false">
<value>6.5</value>
<votes>542</votes>
</rating>
<rating name="tomatometerallaudience" max="10" default="false">
<value>6.8</value>
<votes>47372</votes>
</rating>
<rating name="tomatometerallcritics" max="10" default="false">
<value>3.1</value>
<votes>0</votes>
</rating>
</ratings>