Kodi Community Forum

Full Version: Music FanArt Support?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I did pm someone about this sorry if you are replying ATM, just a bit frustrated on this whole issue.

My code for fanart is as follows:

Code:
<includes>
    <include name="commonfanart">
        <control type="largeimage">
            <posx>0</posx>
            <posy>0</posy>
            <width>1280</width>
            <height>720</height>
            <aspectratio>scale</aspectratio>
            <texture background="true">$INFO
[Listitem.Property(Fanart_Image)]</texture>
            <fadetime>300</fadetime>
            <visible>[Container.Content(Seasons) | Container.Content(Episodes)] + !Control.IsVisible(56)</visible>
            <animation type="WindowOpen">
                <effect type="fade" delay="500" time="300"/>
            </animation>
            <animation type="Visible">
                <effect type="fade" delay="500" time="300"/>
            </animation>
            <animation type="WindowClose">
                <effect type="fade" delay="0" time="300"/>
            </animation>
        </control>
        <control type="largeimage">
            <posx>0</posx>
            <posy>0</posy>
            <width>1280</width>
            <height>720</height>
            <aspectratio>stretch</aspectratio>
      <texture background="true">$INFO
[Listitem.Property(Fanart_Image)]</texture>
            <visible>!IsEmpty(ListItem.Property(Fanart_Image)) + !Container.Content(Seasons) + !Container.Content(Episodes) + !Control.IsVisible(56))</visible>
            <fadetime>300</fadetime>
            <animation type="WindowOpen">
                <effect type="fade" delay="500" time="300"/>
            </animation>
            <animation type="Visible">
                <effect type="fade" delay="500" time="300"/>
            </animation>
            <animation type="WindowClose">
                <effect type="fade" delay="0" time="300"/>
            </animation>
        </control>
    </include>
</includes>

The issue is when I add <include>commonfanart</include> to MyMusicNav.xml nothing is showing up. I believe i have the fanart in the right place for it to read it ...

Any help would be wonderful.
because they all have visible conditions based open video library stuff
also you only get music fanart if you go inthe video library through the Artist section
EDIT:

OK now that I see you have to go through the artist section I see how it works however still dont have it quite right in xperience.

Why is it handled that way? I would think Albums rather than Artists might make fanart support much easier.