Kodi Community Forum
Bluray case in Music Videos - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Skins Support (https://forum.kodi.tv/forumdisplay.php?fid=67)
+---- Forum: Skin Archive (https://forum.kodi.tv/forumdisplay.php?fid=179)
+----- Forum: Transparency! (https://forum.kodi.tv/forumdisplay.php?fid=115)
+----- Thread: Bluray case in Music Videos (/showthread.php?tid=73760)



Bluray case in Music Videos - nuzela10 - 2010-05-13

Hello...

I have my new videos in music videos in library, because i don't want them to mix with my collection...

Is there a way to enable views in music videos like the ones in movies...

Thank you


- ronie - 2010-05-13

nope.


- User 55003 - 2010-05-13

No, not at the moment Sad
I populate music vids with live dvd rips, so I modded the List View (easiest Wink)

Image


- nuzela10 - 2010-05-14

Thank you for the quick reply...

Steveb Wrote:No, not at the moment Sad
I populate music vids with live dvd rips, so I modded the List View (easiest Wink)

Image

Can you please explain how you did this? Huh Huh


- User 55003 - 2010-05-14

ok Smile
Simple copy and paste..
Open View-List.xml found in the 720p folder with your fav txt editor,

Search for.. "<visible>Control.IsVisible(51) + Container.Content(Movies)</visible>"
Directly below u should find 4 <control type="image"> sections..

Code:
<control type="image">
                <posx>55</posx>
                <posy>60</posy>
                <width>282</width>
                <height>400</height>
                <texture background="true">$INFO
[ListItem.Icon]</texture>
                <fadetime>IconCrossfadeTime</fadetime>
            </control>
            <control type="image">
                <posx>55</posx>
                <posy>25</posy>
                <width>304</width>
                <height>465</height>
                <texture>case-dvd.png</texture>
                <visible>![stringcompare(ListItem.VideoResolution,720) | stringcompare(ListItem.VideoResolution,1080)] + !stringcompare(ListItem.Label,..) + !Skin.HasSetting(HideVideoCase)</visible>
            </control>
            <control type="image">
                <posx>55</posx>
                <posy>25</posy>
                <width>304</width>
                <height>465</height>
                <texture>case-bluray.png</texture>
                <visible>[stringcompare(ListItem.VideoResolution,720) | stringcompare(ListItem.VideoResolution,1080)] + !stringcompare(ListItem.Label,..) + !Skin.HasSetting(HideVideoCase)</visible>
            </control>
            <control type="image">
                <posx>248</posx>
                <posy>388</posy>
                <width>96</width>
                <height>78</height>
                <texture>movieset.png</texture>
                <animation effect="fade" start="70" end="100" time="1000" pulse="true" condition="true">Conditional</animation>
                <visible>ListItem.IsFolder + !Window.IsVisible(VideoFiles) + !Window.IsVisible(VideoPlaylist) + !stringcompare(ListItem.Label,..)</visible>
            </control>
Then search for.. "<visible>Control.IsVisible(51) + Container.Content(MusicVideos)</visible>"
Directly below u should find 2 <control type="image"> sections..

Code:
<control type="image">
                <posx>15</posx>
                <posy>68</posy>
                <width>364</width>
                <height>364</height>
                <aspectratio>keep</aspectratio>
                <texture background="true">$INFO
[ListItem.Icon]</texture>
                <bordersize>11</bordersize>
                <visible>stringcompare(ListItem.Label,..)</visible>
            </control>
            <control type="image">
                <posx>15</posx>
                <posy>68</posy>
                <width>364</width>
                <height>364</height>
                <aspectratio scalediffuse="false">scale</aspectratio>
                <texture diffuse="thumb-diffuse.png" background="true">$INFO
[ListItem.Icon]</texture>
                <bordertexture>thumb-shadow.png</bordertexture>
                <bordersize>11</bordersize>
                <fadetime>IconCrossfadeTime</fadetime>
                <visible>!stringcompare(ListItem.Label,..)</visible>
            </control>
replace these 2 with the 4 above


- nuzela10 - 2010-05-14

Thank you very much Big Grin Laugh

Will try it as soon as i come home Nod