Kodi Community Forum

Full Version: Bluray case in Music Videos
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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
nope.
No, not at the moment Sad
I populate music vids with live dvd rips, so I modded the List View (easiest Wink)

Image
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
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
Thank you very much Big Grin Laugh

Will try it as soon as i come home Nod