Kodi Community Forum

Full Version: Video info screen image problem
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want to use landscape.jpg but I can't seem to get it to show. Is this possible in videoinfo. My code is below

<control type="image">
<posx>132</posx>
<posy>254</posy>
<width>571</width>
<height>321</height>
<aspectratio>stretch</aspectratio>
<texture>$INFO[ListItem.Path,,landscape.jpg]</texture>
<control>
I assume the last line is just a typo and should be "</control>".
Correct.

I just did a quick retype. I use that <texture> line several other places in views and it works just fine.
For some reason you need ListItem.FilenameAndPath in videoinfo to show the correct path for tvshows.

Example:
Code:
$INFO[ListItem.FileNameAndPath,,/landscape.jpg]
A some what related problem:
http://trac.xbmc.org/ticket/12244
Big_Noid Wrote:For some reason you need ListItem.FilenameAndPath in videoinfo to show the correct path for tvshows.

Example:
Code:
$INFO[ListItem.FileNameAndPath,,/landscape.jpg]

That did the trick. Thanks for the advice!