Kodi Community Forum

Full Version: [Eden] local artwork is not displayed
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

since my google-fu obviously isn't strong enough I have to post here:
I just upgraded to openelec nightly because I wanted to try out Eden. Everything seems to work, but my locally stored logos, banners, etc. do not show up (they did with dharma). They are stored with the media (downloaded by logodownloader in dharma). My media is on a smb share (Linux host, GBit-Ethernet), and the library is on a MySQL server on that same host. Populating the library works fine and even downloading new logos does work, ie. the logo.png on the server gets updated but it still doe not show up in xbmc.

If anyone could point me in the right direction, I would be really thankful.

Best regards,
Tim

:edit:
I just found this in the log file:
Unsupported protocol(sources) in sources://logo.png
So after some fiddling I found the solution:
It turns out that although my sources are specified with
"smb://user:pass@server/...." xbmc looks for the banners etc. under "smb://server/...". So I added the following to advancedsettings.xml:
Code:
<pathsubstitution>
       <substitute>
        <from>smb://IP/</from>
        <to>smb://user:pass@IP/</to>
    </substitute>
</pathsubstitution>

And now I have my artwork back!

Best regards,
Tim

PS: I hope it was OK to reply to my own post with the solution.