HD-DVD cases
#1
I remember seeing somewhere where ronie stated that it took too much CPU power to read filenames when displaying many covers at once, but what about an option to show HD-DVD cases for hddvd sources when in fanart mode, where only one cover is displayed at a time?
Kodi: Kodi 17.4, with Transparency!
50 TB Unraid Server: Docker Apps: SABnzbd, Sickrage, mariaDB
HTPC: Win10 (cause Steam), i7, GTX 1080
Watching on: Panasonic TC65-PS64 with lowend Sony 5.1 HTIB
Other devices: rMBP 15", MBA 13", nvidia shield
Reply
#2
I made a mod for this, I'll post it later today. Smile
Reply
#3
In View-Fanart.xml

change
Code:
<control type="image">
                                <posx>18</posx>
                                <posy>368</posy>
                                <width>234</width>
                                <height>360</height>
                                <texture fallback="case-sets.png">case$INFO[ListItem.VideoResolution].png</texture>
                                <animation effect="slide" end="0,-40" time="0" condition="Skin.HasSetting(Enable_Movies_Media_Flags)">Conditional</animation>
                                <visible>!stringcompare(ListItem.Label,..) + !Skin.HasSetting(HideMovieCase)</visible>
                        </control>


to:

Code:
            <control type="image">
                <posx>18</posx>
                <posy>368</posy>
                <width>234</width>
                <height>360</height>
                <texture>case-hddvd.png</texture>
                <animation effect="slide" end="0,-40" time="0" condition="Skin.HasSetting(Enable_Movies_Media_Flags)">Conditional</animation>
                        <visible>substring(ListItem.Path,HDDVD)</visible>
            </control>
            <control type="image">
                <posx>18</posx>
                <posy>368</posy>
                <width>234</width>
                <height>360</height>
                <texture fallback="case-sets.png">case$INFO[ListItem.VideoResolution].png</texture>
                <animation effect="slide" end="0,-40" time="0" condition="Skin.HasSetting(Enable_Movies_Media_Flags)">Conditional</animation>
                <visible>!substring(ListItem.Path,HDDVD) + !stringcompare(ListItem.Label,..) + !Skin.HasSetting(HideMovieCase)</visible>
            </control>


and download http://img406.imageshack.us/img406/1560/casehddvd.png to addons\skin.transparency\media\case-hddvd.png

It's not the exact hddvd hue color I guess, as I made it manually from bluray case, but it works for me Wink If anyone can do better don't hesitate to share your work here Cool
Reply

Logout Mark Read Team Forum Stats Members Help
HD-DVD cases0