elgatito / plugin.video.elementum

Elementum add-on for Kodi. Development of this addon has been stopped!
http://elementum.surge.sh
MIT License
472 stars 157 forks source link

[Request] Add the possibility of choosing the quality of the artwork #945

Closed matke-84 closed 5 months ago

matke-84 commented 11 months ago

As the title says, it would be very good if this possibility existed. It's not just about the visuals, but it has a lot of influence on the speed of creation of the list. I participated in the improvement of the tmdb helper and the implementation of this option. You have a link with the discussion. The plug-in fen, which has a similar purpose as an elementum, also has this option and works fast as lightning. Currently, elementum pulls artwork of the highest quality, which affects performance, and it is especially pronounced on android devices and custom skins. Tmdb api supports this feature, fanart does not. But you can also do a combination of artwork from tmdb and fanart. Read the discussion a bit when you have time. I think you will be surprised at the difference in performance. 😉

https://github.com/jurialmunkey/plugin.video.themoviedb.helper/issues/617 https://github.com/jurialmunkey/plugin.video.themoviedb.helper/pull/638

matke-84 commented 6 months ago

Hi @elgatito @antonsoroko. I see you are working hard on the new update, and I am very happy about it. Elemntum has been one of my favorite addons for years. Is there any chance that this request of mine will be taken into consideration? I think it will mean a lot in the speed of opening any list. Thanks in advance.

antonsoroko commented 6 months ago

@matke-84

  1. If I understand correctly, this change will improve performance only for skins that use script.module.metadatautils. I checked 3 standard skins that I used (Confluence, Mimic-LR, Aeon Nox: SiLVO) - I do not see it in their dependencies. So for standard skins - maybe there will be some minor speed improvement because of smaller download size and maybe faster resize if skin uses even smaller size than the smallest size from your proposed sizes.

  2. We use w1280 for tmdb for all image types. Not sure if it is big resolution. See https://github.com/elgatito/elementum/blob/efdcb9af863f3fca5cf63afe3c80da8249cc0ccb/tmdb/show.go#L507 for more technical details.

  3. For fanart tv we use what they provide, since they have only 1 size. But you already know that. But unlike that tmdb helper we completely override all tmdb images with images from fanart tv if you enabled setting to use fanart tv, which makes more sense, imho.

  4. But I think we can add simple option to change this default w1280 to different size, without changes like mixing images from tmdb and fanart tv. Personally I do not care about images, latest changes that I made were to simplify and standardize the image related code and to remove any image related discrepancies between trakt and tmdb lists (code was different , now it is the same). Thus it would be nice to have some pre-defined sizes, instead of defining out own sizes. I guess we can re-use sizes from https://github.com/jurialmunkey/plugin.video.themoviedb.helper/pull/638#issuecomment-1031073847 Does it sound ok?

matke-84 commented 6 months ago

@antonsoroko No. Nothing to do with metadatautils. My skin no longer uses metadatautils. The bottom line is not to use the highest resolution images when it is not necessary. Fanart images, posters and clearlogos are very often very high resolution from tmdb by default. Most skins do not need such a high resolution. This is to be noticed when you scroll through movies and tv shows, that all fanarts are displayed with delay. Images from fanart.tv serve mainly as a fallback for tmdb images because there is a much larger base on fanart.tv. Fanart.tv also offers some artwork that tmdb doesn't offer (tmdb only offers posters, fanart and clearlogo) so it is used for that as well. I see now that you downsized to w1280 but I think it was 4k for fanart some time ago. In principle, the scheme from the tmdb helper can be used. Just a note about the tmdb artworks. A lot of fanarts have text with roles, synopsis... on them and it looks very ugly. Try using it backdrop without iso_639_1 value for fanarts and backdrop with iso_639_1 value for landscape art. Unfortunately, fanart.tv is sometimes slow, but it is necessary and you have to leave it as an option when you turn on fanart.tv to display all other artworks (banners, cleararts, disk...). If I can do anything else, feel free to contact me.

antonsoroko commented 6 months ago

@matke-84

  1. it was w1280 for last 3.5 years, before that it was w500, see https://github.com/elgatito/elementum/commit/a4a3cc807e327cc333686c97d623eec6f0b7cf31
  2. Elementum actually prefer images with iso_639_1 because elementum has language settings and supports localization. I do not think this will be changed. But maybe @elgatito has different opinion.
  3. As I wrote above, if fanart.tv is enabled, Elementum uses fanart.tv for everything, not only for fanarts (but it can use tmdb as fallback, e.g. if fanart.tv does not have image at all or does not have image for user's language). If I understood correctly the "issue" you linked - tmdbhelper uses fanart.tv only for fanarts. I do not think we should do the same, but again, maybe elgatito has different opinion.
  4. Btw, what is the name and repo of your skin?
  5. So in the end, in your opinion as skin developer, does it make sense to use images smaller than w1280? If yes, we can add such option.
matke-84 commented 6 months ago

@antonsoroko

  1. I was convinced that he used the original quality and not w1280. I just got the impression that the fanart was opening with a delay.
  2. I meant only for tmdb backdrops, i.e. fanarts, there's really no need for iso_639_1 because fanart or background should not have any inscription.
  3. Of course, that's something we did with the tmdb helper and the decision is up to you, just like everything else. Through testing, we discovered that it is the best combination.
  4. Titan bingie mod. But it's still an old version that used shs, metadatautils... I'm preparing a new version that's a completely different story without all of this.
  5. W1280 for fanarts, W500 for posters and w500 for clearlogo. It is the most optimal combination, but I would also leave the other variant (w1280 or original for all) that would be used for large screens where a higher resolution is needed. That's why tmdb helper has original, high, medium and low. Depending on the screen you use, you will set the resolution. Of course, depending on the device you use, on the computer it will not be a problem to use a higher resolution, but on the android you will reduce the resolution in order to reduce the load on the processor.
elgatito commented 6 months ago

This request requires properly rewritten Art selection. Taking in mind Trakt is not providing art at all, we first select Art from TMDB, and then if Fanart is available and configured - we overwrite TMDB Art with Fanart. And we always check for language in Fanart Arts, for any type of Art.

I don't see anything bad with implementing a proper Art selection, but this needs a good refactoring and clean setup for each Art type.

antonsoroko commented 6 months ago

But just for "choosing size of image" - we can make simple change - set of sizes (borrowed from link i posted above) that user can select. Instead of hardcoded w1280, I mean.

elgatito commented 6 months ago

But just for "choosing size of image" - we can make simple change - set of sizes (borrowed from link i posted above) that user can select. Instead of hardcoded w1280, I mean.

Yes, I support proposed setting to select quality that would translate into different sizes, depending on the type of Art. (as done in tmdbhelper)

antonsoroko commented 6 months ago

@matke-84 please test these builds: windows x64 - plugin.video.elementum-v0.1.99-23-gd8f7ef7.windows_x64.zip android arm - https://disk.yandex.by/d/xjkApNnetlff4A

i used the following sizes:

https://github.com/elgatito/elementum/pull/111/files#diff-2a10e699183778675910d9b2aa96b31a37981b5c0c9df1e256e582d45ed76dd5R29-R31

    //                                  Original    High    Medium  Low
    ImageQualitiesPoster    = []string{"original", "w780", "w500", "w185"}
    ImageQualitiesFanArt    = []string{"original", "w1280", "w780", "w300"}
    ImageQualitiesThumbnail = []string{"original", "w780", "w500", "w185"}

you can see all available sizes here https://github.com/elgatito/elementum/pull/111

so if something does now look good - please tell me and i will change those values.

(also this build will post log messages into log file with the sizes that were used.)

matke-84 commented 6 months ago

Hi @antonsoroko. This is great news. First of all, thank you. I tested it. Here is my suggestion.

        //                                  Original    High    Medium  Low
    ImageQualitiesPoster    = []string{"original", "w780", "w500", "w342"}
    ImageQualitiesFanArt    = []string{"original", "w1280", "w1280", "w780"}
    ImageQualitiesThumbnail = []string{"original", "w780", "w500", "w342"}

Any resolution below w342 is too poor quality even for smaller screens. I see that you use a poster for thumbs, so that's what I wrote to you. In TMDb helper I think backdrop is used for thumbnail so it took me a while to figure it out. :-) I think you forgot about clearlogo (logo). It also supports the TMDb api. In that case, it would go like this.

        //                                  Original    High    Medium  Low
    ImageQualitiesClearLogo    = []string{"original", "w500", "w500", "w300"}

elementum1 This is why I mentioned that iso_639_1 is not used for fanart. It looks great for landscape thumb, but the fanart itself is pointless with this inscription. In TMDb helper how it is solved (it should be this). https://github.com/jurialmunkey/plugin.video.themoviedb.helper/commit/e622468dadc91dcc353817223e942c3bca2348f5 Again, I'm just talking about the backdrop (fanart). I just don't know how it was solved in the elementum. I would certainly separate fanart and landscape thumbs images. I'm here for anything you need.

antonsoroko commented 6 months ago

@matke-84

  1. ok, i increased sizes, thank you for testing.
  2. I see that you use a poster for thumbs,

as i can see in Kodi wiki

The thumb.jpg image should only be used for episode artwork. It should not be used in any other area of the video library.

so despite the fact that we set it - it is used only for episodes, and in episodes TMDB only has "stills" (and we use that "still image" for everything in episode, see code in my PR for tmdb/episode.go file)

  1. that's b/c we never used Logos from TMDB (only from fanart.tv if enabled, with many other art types). but i added them now (they exist only for movie and show).
  2. your image and what you wrote is confusing me, to be honest. first of all, there is no such thing as "landscape thumb" (see wiki link above) - do you mean just "landscape"? second, on your screenshot, what is the background image? i guess that is landscape, b/c wiki says that landscape is "fanart with text. If not available, skins can use fanart+clearlogo". so landscape must have text - so this is ok. then i do not understand where is "fanart" on your screenshot?
  3. but as you requested - i made fanart without text, since wiki says it should not have text. but you shpuld use different skin view to test it. your current view looks like banner+landscape.
  4. May I ask you to verify my new mapping of TMDB->Kodi art? Please read https://kodi.wiki/view/Artwork_types and then decide what should be what. TMDB provides only backdrops, posters, logos, stills - but not for every type of video. So i made new mapping based on what i read, but i have not thoroughly tested it with different skins and views. see detailed mapping here - https://github.com/elgatito/elementum/pull/111/commits/2b7aedd93e0107750b06cfad75fc76ab0e8b816f

in a nutshell:

Movie/Show: FanArt/Banner/Landscape = Backdrop Poster = Poster ClearLogo = Logo

Season: FanArt/Banner/Landscape = Backdrop Poster = Poster

Episode: FanArt/Banner/Landscape/Poster/Thumbnail = Still


Here is new build. Changes:

see new logic here - https://github.com/elgatito/elementum/pull/111/commits/2b7aedd93e0107750b06cfad75fc76ab0e8b816f

Download: plugin.video.elementum-v0.1.99-23-gd8f7ef7.windows_x64.zip

(tell me if you need build for different platform)

antonsoroko commented 6 months ago

@burekas7 i guess you also might be interested in these new Art changes. at least you will not be surprised after new version will come out.

matke-84 commented 6 months ago

@antonsoroko First of all, thank you for the effort and time you invest together with @elgatito to improve our favorite plugin.

  1. Great, thank you.
  2. I asked because tmdb helper uses fanart (backdrop) for thumbs in movies and tv shows. If it skin used, for example, squared shape, an image without text looks better than a poster (very often the titles are cut as well as the pictures themselves.). Now that I've read what you wrote, I'm not sure how he achieved it but I noticed that some other plugins use the same as tmdb helper. TMDb helper tmdb helper Elementum elementum

P.S. Speaking of episode thumbs, is it also covered by these changes, does the quality change with the settings change?

  1. Take care of one thing about the logo. Kodi doesn't support svg so it should skip somehow. Some movies and tv shows don't display the logo for this reason. Example, tv show Supernatural: https://www.themoviedb.org/tv/1622-supernatural/images/logos As resolved in the tmdb helper: https://github.com/jurialmunkey/plugin.video.themoviedb.helper/commit/9273c1a871974c2877180fb9afb8a953fcd859cd
  2. Yes, I mean landscape. My mistake, I wanted to write thumbs, then I remembered that it was landscape, so both remained. :-) Yes, landscape must have text, fanart doesn't.

    then i do not understand where is "fanart" on your screenshot?

I wrote on the picture. :-) But as far as I can see, you have taken care of it now. Thanks.

  1. And thanks again. ;-)
  2. I have to look at this. Give me little time to look and test everything with a few skins. You could send it to me for Android, so I can test it on a Xiaomi TV stick.
antonsoroko commented 6 months ago

@matke-84

2.

tmdb helper uses fanart (backdrop) for thumbs in movies and tv shows.

looks like this is very specific for the skin you use. that's why i never have seen such issue. and Kodi official wiki says that thumbs is used ONLY for episodes. so looks like your skin for some reason use thumbs instead of fanart - which is incorrect, in my opinion. why? because thumbnail is basically a screenshot (that's why it makes sense only for episodes). and even this "tmdb helper" had to use a hack for this view - they set thumbs=fanart. standard skins does not use "thumbs" for movies/shows as i can see. even view called "Thumbs" in titan mod/titan bingie mod use "landscapes" but not "thumbs".

but that "Square" view in those titan skins uses thumbs. skin views2

my guess is that "Square" view was originally designed for episodes, but now you use it for movies/shows. which is not correct, imho. ideally, you should use different "views" for different video types. elementum supports that, click "Default view for ..." in context menu of any item to set default view. Also check elementum settings - bottom of appearance tab - it has all "Default view for ..." options.

but okay, i also will set thumbs=fanart. but this is a hack.

this is the result: titan mod Screenshot_Kodi_20240303_134549 titan bingie mod Screenshot_Kodi_20240303_134341

P.S. Speaking of episode thumbs, is it also covered by these changes, does the quality change with the settings change?

yes. i use new "image quality settings" for everything.

you can read the code changes in PR - it is quite human readable, no need to know golang.

  1. thanks for info! fixed.

  2. I wrote on the picture. :-)

looks like i was mistaken about purpose of fanart and landscape. i thought that landscape must be used as background and fanart as "icon", but looks it it is vice versa. thanks.

  1. please test this new build:

windows https://disk.yandex.by/d/20qkkSdga6RHFA android tv https://disk.yandex.by/d/6sRgkYf8qmPxRQ

it also will log sizes and images used for different art - so if unsure about some image - you can check log file.

matke-84 commented 6 months ago

@antonsoroko

  1. I think you are absolutely right. I immediately changed this in my skin. Thanks. I didn't think about this at all. I'm not sure why plugins use this hack then. As far as I've noticed all the ones I use. There must be some reason.
  2. I tested with yesterday's build and the banners have no alternative. I would leave it as it was. If there is no real banner, the skin decides what will be used. On this way, if you force some artwork for banner, it looks very strange in some skins, trying to fit an image into a very specific banner container. Thats why TMDb helper uses fanart.tv as a fallback for artworks that don't exist in the tmdb database. It exists as an option, so it can be turned on. The actual tmdb helper uses three display modes:
    • only tmdb default like elementum now
    • only fanart - elementum has same option
    • tmdb and fallback fanart.tv when there are no artwoks from tmdb - this would be good if possible with elementum also.

FanArt/Banner/Landscape/Poster/Thumbnail = Still

I think the poster when entering the episode level should show the poster of the season or the poster of the whole series if there is no season poster and not thumbs of an episode. It's like that in other plugins and it looks better.

I haven't had time to test it on Android yet, but I'll do that today, so I'll report the results. ;-)

antonsoroko commented 6 months ago

@matke-84 1.

There must be some reason.

maybe they just do not want to explain to people why thumbnail is only for episodes :-) or they have not read Kodi wiki. or there is some old/historical reason that is obsolete now, but hacky code still exists. or there is undocumented reason. since i do not develop skins - i dunno :-)

anyway, now we also use this hack. test latest build plz.

2.

I tested with yesterday's build

please test the latest build, otherwise it is confusing to understand what is not okay from your point of view.

3.

the banners have no alternative. I would leave it as it was.

not sure what you mean. banner logic have not changed! we set banner to backdrop, and if TMDB has more backdrops - then we also do addAvailableArtwork() for banner (like for fanart and others). see current version of code here: https://github.com/search?q=repo%3Aelgatito%2Felementum+item.Art.AvailableArtworks.Banner+item.Art.Banner&type=code

and see my changes here https://github.com/elgatito/elementum/pull/111/files (search on page for item.Art.AvailableArtworks.Banner and item.Art.Banner)

4.

I think the poster when entering the episode level should show the poster of the season or the poster of the whole series if there is no season poster and not thumbs of an episode.

you can see the code

    if episode.StillPath != "" {
        item.Art.FanArt = ImageURL(episode.StillPath, fanArtQuality)
        item.Art.Banner = ImageURL(episode.StillPath, fanArtQuality)
        item.Art.Landscape = ImageURL(episode.StillPath, fanArtQuality)
        item.Art.Thumbnail = ImageURL(episode.StillPath, thumbnailQuality)
        item.Art.Poster = ImageURL(episode.StillPath, posterQuality)
        item.Art.TvShowPoster = ImageURL(episode.StillPath, posterQuality)
    } else {
        // Use the season's artwork as a fallback
        season.SetArt(show, item)
    }

i think i already do exactly what you said. (and in season i have:

    // Use the show's artwork as a fallback
    show.SetArt(item)

)

5.

tmdb and fallback fanart.tv when there are no artwoks from tmdb - this would be good if possible with elementum also.

please create new issue about this. i have no plans to implement this feature in this PR since it is not connected to "choosing the quality of the artwork". our conversation is already diverted to TMDB->Kodi art mapping, which is also not connected to "choosing the quality of the artwork". let's keep things separated, otherwise it is hard to keep track of them and implement them without messing thing up. thank you.

matke-84 commented 5 months ago
  1. Everything I write below has been tested with the latest version.
  2. I will try to explain. Pictured is the current version of the elementum. My skin and some others, when there is no banner, displays the fanart image and over the clearlogo, when there is no clearlogo, then it displays the text. Since the current version of elementum does not have a clearlogo, on the picture, you can see fanart (old fanart with text) and over text (movie title). banner The last version you sent me, Kodi recognizes that it is actually a real banner and it is actually a backdrop with text which also doesn't look good. That's why I mentioned that it's not good to force the banner look, because Kodi now sees that it's a real banner even if it's not. banner2 Here's how it looks with another plugin. So this is not a real banner, but it looks very similar. Many skins use this trick. benner3 So something was changed during the changes, as you can see.
  3. It doesn't do what I mentioned. This is what it looks like with the version you sent me. I think you mentioned that you use the skin Aeon Nox: SiLVO, so I'll give you that screenshot. aeonnox1 And this is how it looks with other plugins. aeonnox2
  4. You're right, sorry. Let's take care of this first.

P.S. The version you sent me works well on Android, all of what I have listed also happens on Android, but what is more noticeable is the difference in the speed of opening and switching between movies. We are going in the right direction. Great job so far. :-)

matke-84 commented 5 months ago

@antonsoroko

  1. I forgot to tell you that in the episode level as a fanart (on the screenshot is image in the background) set a backdrop without text if possible (as in the second picture in tmdb helper). The thumb of the episode is often of lower resolution, so it looks bad as a background, and when moving it changes like the thumb and it should be a static image.
antonsoroko commented 5 months ago

@matke-84

1.

So something was changed during the changes, as you can see. Kodi recognizes that it is actually a real banner and it is actually a backdrop with text

Even before this conversation I added banner, but new version was not released yet. Then during this conversation i added logo, as you requested.

But now i can see that our "fake" banners does not look good. I used backdrop as banner, but backdrop is much higher than banner supposed to be. from https://kodi.wiki/view/Artwork_types#banner

In the video library, banners are wide and short images that contain recognizable characters or props from the video and typically includes a clearly visible logo or the name of the movie, movie set or tv show.

To be clear - all 3 (1 elementum's old, 1 elementum's new, and 1 from other plugin) screenshots with banners looks bad in my opinion, since they use not a real banners.

(note about screenshots below: look at "Logan" on all my screenshots as a reference image)

If you enable fanart.tv - then you will see how it supposed to be with real banners: Aeon Nox: SiLVO image bingie bingie real banners

But for TMDB the only good solution is to remove banners but keep logos:

Aeon Nox: SiLVO: image

bingie bingie no banners

2.

It doesn't do what I mentioned.

i see now.

that's why we use comas in my language - to correctly separate phrases and make complicated thought look clear :-) i misread your message:

poster when entering the episode level should show the poster of the season or the poster of the whole series if there is no season poster and not thumbs of an episode.

as "use poster from a season/show ONLY if there is no thumbnail for an episode" :-D

right now we do this exactly, because it is faster to set all art of all episodes to "Still" image, rather than for every episode we will have to look back to season/show.

And this is how it looks with other plugins.

Does tmdb helper also set thumbnail? the view you use does not show it. Try with "bottom list" - it has thumbnail+poster+fanart.

Anyway, i did changes for episode and now we have thumbnail as episode Still, poster/fanart/landscape - taken from season/show.

Aeon Nox: SiLVO with view called "bottom list": episodes with stills and season+show art

  1. so i set fanart and landscape to default backdrop - it has no text. then i try to find backdrop with text and set landscape to it. so far so good, right? fanart has no text, landscape has text.

but i also set "available artworks" (so user can choose different art for video) via addAvailableArtwork() - e.g. i set "available fanarts" to "all backdrops" , but it looks like skin can use random image from this lists. so now i changed logic for available artworks: for fanarts - i take only backdrops with empty iso_639_1, for landscapes - i take only backdrops with non-empty iso_639_1.

so i think now skin will always use only images w/o text for fanart (either default one or from "available arts") and only images with text for landscape.

Aeon Nox: SiLVO with view called "landscapes":

movies landscapes


New version: windows https://disk.yandex.by/d/20qkkSdga6RHFA android tv https://disk.yandex.by/d/6sRgkYf8qmPxRQ

Changes: Do not set Banner to BackdropPath b/c of significant mismatch of needed size For tmdb episode take additional art from season/show fix for AvailableArtworks: FanArt should be without text, Landscape with text.

matke-84 commented 5 months ago

@antonsoroko 1.

To be clear - all 3 (1 elementum's old, 1 elementum's new, and 1 from other plugin) screenshots with banners looks bad in my opinion, since they use not a real banners.

If you enable fanart.tv - then you will see how it supposed to be with real banners:

Well, that's exactly why we need a third option, that when tmdb doesn't deliver an artwork or simply doesn't have it, such as a banner, clearart, cd... fanart.tv takes over those artworks as a fallback. :-)

  1. Does tmdb helper also set thumbnail? the view you use does not show it. Try with "bottom list" - it has thumbnail+poster+fanart.

It shows the same as now elementum with the last version you sent me, as it should. aeon

I'd say it's all settled now. It would be nice if someone else took a look. I have to look on android but there shouldn't be any difference. I will definitely let you know. Also, if I notice something unusual, I report it.

P.S. I noticed a small bug with the duration of the episodes, but I will make a new issue. Just take a look. And I will certainly make an issue for the third option for artwork. :-)

antonsoroko commented 5 months ago

@matke-84

I'd say it's all settled now.

glad to hear that, b/c tbh i already tired of this Art-related things :-) thank you very much for testing!

btw, about

but what is more noticeable is the difference in the speed of opening and switching between movies.

is it on your android device? with which quality? is increase in speed really noticeable?

matke-84 commented 5 months ago

@antonsoroko

glad to hear that, b/c tbh i already tired of this Art-related things :-)

Come on, we just started. You know we have one more little thing. :-)

thank you very much for testing!

No, thank you very much for your time and effort.

is it on your android device? with which quality? is increase in speed really noticeable?

Yes. Xiaomi stick 4k. Nothing special. But you can really notice the difference. I set it to medium quality, you get a nice display and fast loading and especially switching between titles. I am very satisfied. That's why I said it would be nice if someone else could check.

antonsoroko commented 5 months ago

@matke-84 i have MECOOL KM6 Deluxe, which has slightly more powerful CPU than Xiaomi Mi TV Stick 4K:

https://gadgetversus.com/processor/amlogic-s905y4-vs-amlogic-s905x4/ https://androidpctv.com/amlogic-s905y4-comparative/

see Geekbench tests. Also it has 4GB ram. (but I do not recommend to buy it, it has several annoyng issues)

but i use simple skin Mimic-LR and simple view "list" (that show image only for one selected item), because with "heavy" skin and "heavy" view - even with amlogic s905x4 and 4 GB of ram - Kodi does now work fast enough, in my opinion. you need at least cheap but modern mini-pc (with with real x86 CPU) for such workload, imho.

i tried to use "views" with images and tried low and high settings for image quality - but it is hard for me to compare, since i have not used images before - for me Kodi looks slow in any mode with images :-) but at least it looks like Kodi downloads images faster with low quality (b/c of smaller size).

matke-84 commented 5 months ago

@antonsoroko Ohhh it's a ferrari unlike the xiaomi stick 4k. :-) In general, Kodi is a bit heavy for weak devices. As you said, especially with skins that are a little heavier. All in all, I can feel the difference with the new settings. It just takes less time to download a smaller image, so it also affects performance.

antonsoroko commented 5 months ago

@matke-84

Ohhh it's a ferrari unlike the xiaomi stick 4k. :-)

Nvidia Shield is a Ferrari :-) even after all these years. But the price is too high, imho.

Anyway, i hope this change will make elementum experience a bit more pleasant.