Kodi Community Forum

Full Version: On pause, poster not displayed
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello

I had to reinstall and when I pause a movie, it now displays a screen grab from the movie rather than the poster. How do I fix this please?

Cheers
Mark

edit - found on github
I'd like to know how to do this too. Anybody please? Somehow I missed this skin but I instantly love it. Aside from that
Was fixed a bit ago, but hasn't been merged into the official version yet for some reason.
Here is the fix.

https://forum.kodi.tv/showthread.php?tid...pid3053533

Matrix is not recognizing "$INFO[VideoPlayer.Cover]" any more and instead looks for "$INFO[Player.Art(poster)]" , change code in the "includes.xml" file at line 1591 from:
 
Code:
        <!-- Movie Poster -->
                <control type="image">
                    <description>Movie Poster</description>
                    <posx>42</posx>
                    <posy>370</posy>
                    <width>216</width>
                    <height>318</height>
                    <texture background="true">$INFO[VideoPlayer.Cover]</texture>
                    <aspectratio scalediffuse="false">scale</aspectratio>
                    <visible>VideoPlayer.Content(Movies) + !String.StartsWith(VideoPlayer.Cover,default)</visible>
                </control>
                <control type="image">
                    <description>Movie Poster Frame</description>
                    <posx>28</posx>
                    <posy>350</posy>
                    <width>244</width>
                    <height>358</height>
                    <texture>frames/ClassicFrame_PosterMedium.png</texture>
                    <aspectratio>stretch</aspectratio>
                    <visible>VideoPlayer.Content(Movies) + !String.StartsWith(VideoPlayer.Cover,default)</visible>
                </control>
to:
Code:
                <!-- Movie Poster -->
                <control type="image">
                    <description>Movie Poster</description>
                    <posx>42</posx>
                    <posy>370</posy>
                    <width>216</width>
                    <height>318</height>
                    <texture background="true">$INFO[Player.Art(poster)]</texture>
                    <aspectratio scalediffuse="false">scale</aspectratio>
                    <visible>VideoPlayer.Content(Movies) + !String.StartsWith(Player.Art,default)</visible>
                </control>
                <control type="image">
                    <description>Movie Poster Frame</description>
                    <posx>28</posx>
                    <posy>350</posy>
                    <width>244</width>
                    <height>358</height>
                    <texture>frames/ClassicFrame_PosterMedium.png</texture>
                    <aspectratio>stretch</aspectratio>
                    <visible>VideoPlayer.Content(Movies) + !String.StartsWith(Player.Art,default)</visible>
                </control>
Ty very much for the info but I can't for the life of me find the files and access on Xbox

(2023-03-02, 08:20)MacGyver Wrote: [ -> ]Was fixed a bit ago, but hasn't been merged into the official version yet for some reason.
Here is the fix.

https://forum.kodi.tv/showthread.php?tid...pid3053533

Matrix is not recognizing "$INFO[VideoPlayer.Cover]" any more and instead looks for "$INFO[Player.Art(poster)]" , change code in the "includes.xml" file at line 1591 from:
 
Code:
        <!-- Movie Poster -->
                <control type="image">
                    <description>Movie Poster</description>
                    <posx>42</posx>
                    <posy>370</posy>
                    <width>216</width>
                    <height>318</height>
                    <texture background="true">$INFO[VideoPlayer.Cover]</texture>
                    <aspectratio scalediffuse="false">scale</aspectratio>
                    <visible>VideoPlayer.Content(Movies) + !String.StartsWith(VideoPlayer.Cover,default)</visible>
                </control>
                <control type="image">
                    <description>Movie Poster Frame</description>
                    <posx>28</posx>
                    <posy>350</posy>
                    <width>244</width>
                    <height>358</height>
                    <texture>frames/ClassicFrame_PosterMedium.png</texture>
                    <aspectratio>stretch</aspectratio>
                    <visible>VideoPlayer.Content(Movies) + !String.StartsWith(VideoPlayer.Cover,default)</visible>
                </control>
to:
Code:
                <!-- Movie Poster -->
                <control type="image">
                    <description>Movie Poster</description>
                    <posx>42</posx>
                    <posy>370</posy>
                    <width>216</width>
                    <height>318</height>
                    <texture background="true">$INFO[Player.Art(poster)]</texture>
                    <aspectratio scalediffuse="false">scale</aspectratio>
                    <visible>VideoPlayer.Content(Movies) + !String.StartsWith(Player.Art,default)</visible>
                </control>
                <control type="image">
                    <description>Movie Poster Frame</description>
                    <posx>28</posx>
                    <posy>350</posy>
                    <width>244</width>
                    <height>358</height>
                    <texture>frames/ClassicFrame_PosterMedium.png</texture>
                    <aspectratio>stretch</aspectratio>
                    <visible>VideoPlayer.Content(Movies) + !String.StartsWith(Player.Art,default)</visible>
                </control>
Depends on the device, what kind of device?
Xbox series x
I'm unfamiliar with how to alter files on an Xbox version, maybe you can access a share with file manager and have the file there, then use file manager to overwrite the version under kodi userdata apps with a version on the share.
(2023-03-06, 07:11)MacGyver Wrote: [ -> ]I'm unfamiliar with how to alter files on an Xbox version, maybe you can access a share with file manager and have the file there, then use file manager to overwrite the version under kodi userdata apps with a version on the share.
if the filesystem is a challenge to access it may prove easier to download the addon to a computer, extract, make the modifications, repack and then reinstall it
Good idea jep
Might want to kick the version up by 1 to let Kodi see a reason to install it.
So in addons.xml change the line to:

Code:
<addon id="skin.metropolis" version="4.0.2" name="Metropolis" provider-name="jingai, Stoli, Amra, MacGyver">