[MOD] Now Playing Full Screen Info / Seekbar v2.0
#16
stoli Wrote:Could you point me in the right direction as to what needs to be changed in the XML to have the artwork show when paused?

Thanks!

-stoli-

You need to edit DialogSeekBar.xml

Add This :
Code:
    <control type ="image">
        <description>Clearart</description>
        <posx>1049</posx>    
        <posy>-105</posy>    
        <width>230</width>    
        <height>115</height>
        <texture>clearart/$INFO[VideoPlayer.TVShowTitle].png</texture>
        <aspectratio>keep</aspectratio>
        <visible>VideoPlayer.Content(episodes) + Skin.HasSetting(seekbarclearart)</visible>
    </control>

Right BEFORE :
Code:
            <control type="label">
                <posx>0</posx>
                <posy>84</posy>
                <width>1280</width>
                <height>25</height>
                <align>center</align>
                <aligny>center</aligny>
                <font>Font_OSDMusicTitle</font>
                <label>$INFO[VideoPlayer.Title]</label>
                <animation effect="slide" start="0,0" end="0,-12" time="200" condition="Control.IsVisible(212)">Conditional</animation>
                <visible>!Skin.HasSetting(seekbarmovieinfo) + VideoPlayer.Content(movies) | !Skin.HasSetting(seekbartvshowinfo) + VideoPlayer.Content(episodes) | VideoPlayer.Content(files)</visible>                
            </control>
[4 Kodi Clients + 4 Norco RPC-4224 Media Servers w/376 TB HDD Space]
Reply
#17
Added to Hitched.
Reply
#18
hitcher Wrote:added to hitched.

thank you!
[4 Kodi Clients + 4 Norco RPC-4224 Media Servers w/376 TB HDD Space]
Reply
#19
The menu portion works great now. I have the movie thumbs turned on but when I pause the movie or hit info I don't see a big or small thumb. Is there something I am missing
Reply
#20
ekim232 Wrote:The menu portion works great now. I have the movie thumbs turned on but when I pause the movie or hit info I don't see a big or small thumb. Is there something I am missing

Are you in Library Mode or Files Mode?

Are you playing a movie or a TV Show?

Does it have a poster/thumb associated with it?

Do you have XBMC generate thumbs automatically?
[4 Kodi Clients + 4 Norco RPC-4224 Media Servers w/376 TB HDD Space]
Reply
#21
I am in library mode and all my files have thumbs stored as moviename.tbn inside the movie folder. I use media companion on all my movies so I know they are there. I have tried it with and without automatically grab thumbs. I am stumped why it will not show...
Reply
#22
Thank you - much appreciated!

Pr.Sinister Wrote:You need to edit DialogSeekBar.xml

Add This :
Code:
    <control type ="image">
        <description>Clearart</description>
        <posx>1049</posx>    
        <posy>-105</posy>    
        <width>230</width>    
        <height>115</height>
        <texture>clearart/$INFO[VideoPlayer.TVShowTitle].png</texture>
        <aspectratio>keep</aspectratio>
        <visible>VideoPlayer.Content(episodes) + Skin.HasSetting(seekbarclearart)</visible>
    </control>

Right BEFORE :
Code:
            <control type="label">
                <posx>0</posx>
                <posy>84</posy>
                <width>1280</width>
                <height>25</height>
                <align>center</align>
                <aligny>center</aligny>
                <font>Font_OSDMusicTitle</font>
                <label>$INFO[VideoPlayer.Title]</label>
                <animation effect="slide" start="0,0" end="0,-12" time="200" condition="Control.IsVisible(212)">Conditional</animation>
                <visible>!Skin.HasSetting(seekbarmovieinfo) + VideoPlayer.Content(movies) | !Skin.HasSetting(seekbartvshowinfo) + VideoPlayer.Content(episodes) | VideoPlayer.Content(files)</visible>                
            </control>

In case anyone else is interested and you also want the cover/thumbnails to display, also add the below to the same section:

Code:
    <control type="image">
            <description>Cover Image</description>
            <posx>50</posx>
            <posy>340r</posy>
            <width>125</width>
            <height>188</height>
            <texture diffuse="thumbs/movieposter_mask.png">$INFO[VideoPlayer.Cover]</texture>
            <aspectratio aligny="bottom">Keep</aspectratio>
            <visible>VideoPlayer.Content(movies) + Skin.HasSetting(seekbarmovieposter) + Skin.HasSetting(seekbarmoviesmallposter)</visible>
        </control>
        
    <control type="image">
            <description>Cover Image</description>
            <posx>50</posx>
            <posy>515r</posy>
            <width>250</width>
            <height>375</height>
            <texture diffuse="multiplex/multiplex_tvmask.png">$INFO[VideoPlayer.Cover]</texture>
            <aspectratio aligny="bottom">Keep</aspectratio>
            <visible>!VideoPlayer.Content(movies) + Skin.HasSetting(seekbarthumb)</visible>
    </control>

-stoli-
Reply
#23
I think it would be better if when there is no thumb available for tv show it would not show the default image. I tried adding the following, but had no success

<visible>!IsEmpty(VideoPlayer.Cover)</visible>

I just think it takes up to much of the screen. Any suggestion on how to get it to not show the default image?
Reply
#24
ekim232 Wrote:I think it would be better if when there is no thumb available for tv show it would not show the default image. I tried adding the following, but had no success

<visible>!IsEmpty(VideoPlayer.Cover)</visible>

I just think it takes up to much of the screen. Any suggestion on how to get it to not show the default image?

Problem is that right now there is a bug in XBMC where it doesn't display the
auto-generated thumb when playing from the library. Once that is fixed, a thumb
will always exist.

But i will try to see if i can figure out a way of hiding it if it doesn't exist.

-Pr.
[4 Kodi Clients + 4 Norco RPC-4224 Media Servers w/376 TB HDD Space]
Reply
#25
Hi Pr. Sinister, you mentioned to overwrite the files in Hitch. But in what folder do you paste the .xml files from the customizable seekbar mod?
Reply
#26
Kingashwin Wrote:Hi Pr. Sinister, you mentioned to overwrite the files in Hitch. But in what folder do you paste the .xml files from the customizable seekbar mod?

The 720p folder.

But if you are using the latest Aeon Hitched, my mod is integrated in there.

-Pr.
[4 Kodi Clients + 4 Norco RPC-4224 Media Servers w/376 TB HDD Space]
Reply

Logout Mark Read Team Forum Stats Members Help
[MOD] Now Playing Full Screen Info / Seekbar v2.01