Posts: 91
Joined: Mar 2012
Reputation:
4
Hello,
I don't know if this has been reported already, but lately I noticed that my Raspi 3B (running OSMC, with Aeon Nox Silvo skin, latest updates) was starting to idle at ~100% cpu (first sign was that browsing videos was enough to trigger the 'hot!' thermometer sign on screen).
Today I spent some time debugging the issue, disabling addons one by one, and the culprit was found to be Artist Slideshow (v3.0.0).
Once I disable it (and reboot Kodi) the cpu idle returns to a saner ~20%.
Posts: 15,282
Joined: Jan 2009
Reputation:
739
ronie
Team-Kodi Member
Posts: 15,282
2019-12-22, 05:04
(This post was last modified: 2019-12-22, 05:04 by ronie.)
i've also noticed my cpu fan making overhours when running AS 3.0.0
it indeed happens when the addon is auto-started by a skin at startup.
RunScript(script.artistslideshow,daemon=True)
the most likely cause for this kind of issue is a while loop in the code without any sleep.
so i searched your code and indeed found one (default.py, line 207).
adding some sleep there fixed it for me ;-)
Posts: 91
Joined: Mar 2012
Reputation:
4
I did some tests using a freshly written SD-card with OSMC, without most of the other addons I'm normally using and it seems that the high cpu happens only if I install AS with the Aeon Nox Silvo skin (which is what I normally use, as reported in my previous message).
If I switch to the OSMC or the Estuary skin, cpu idle keeps as a low ~15%.
In my test I have only OSMC 2019-11-1, Aeon Nox Silvo 7.0.8 and Artist Slideshow 3.0.0 installed. Nothing else. I don't even have sources selected.
About Aeon Nox Silvo, I did notice that on its github repo there are some commits related to AS 3.0, but I guess they are not yet pushed out for release, so maybe some fix is ongoing.
Posts: 319
Joined: Nov 2016
Reputation:
5
Got one question regarding already downloaded pictures on different profiles.
Was running kodi with different profiles on different boxes. I found that AS downloaded the images to its add_data/ folder in ArtistSlideshow. As I'm maintaining an ArtistInformationFolder (AIF) now, I would like to copy the already present pictures over. What would be the best way to do? Rename all downloaded images to fanart1.jpg, fanart2.jpg...fanartX.jpg and move them into the corresponding AIF folder?
So I'm looking for the best practice to keep the already downloaded images and prevent them to be downloaded again?!
Posts: 15,282
Joined: Jan 2009
Reputation:
739
ronie
Team-Kodi Member
Posts: 15,282
can confirm 3.0.1~beta2 fixes the issue for me.