Solved How to show Pictures User Comment in SlideShow
#1
Hi.

Just wanted to share my discovery (hack) on how to show jpg images EXIF User Comment (IF user has entered it!) in the slideshow in Kodi.
I have Kodi as portable mode (kodi.exe -p)

* Navigate to \Kodi\portable_data\addons\skin.aeon.nox.5\1080i\SlideShow.xml
* Replace this into XML

Code:
<?xml version="1.0" encoding="UTF-8"?>
<window>
    <defaultcontrol>2</defaultcontrol>
    <controls>
        <control type="image">
            <left>0</left>
            <top>1000</top>
            <width>1920</width>
            <height>100</height>
            <texture>back.png</texture>
           <colordiffuse>7fffffff</colordiffuse>
        </control>
        <control type="textbox">
            <description>Picture comment</description>
            <left>10</left>
            <top>1000</top>
            <width>1900</width>
            <height>100</height>
            <align>center</align>
            <font>font24</font>
            <textcolor>white</textcolor>
            <label>$INFO[Slideshow.EXIFComment]</label>
            <autoscroll delay="3000" time="1000" repeat="10000">true</autoscroll>
        </control>
    </controls>
</window>

* Start Kodi and view some pictures where you have added User Comment texts..
Reply

Logout Mark Read Team Forum Stats Members Help
How to show Pictures User Comment in SlideShow1