Kodi Community Forum
Remove OSD/name of the video - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Development (https://forum.kodi.tv/forumdisplay.php?fid=32)
+--- Forum: Skinning (https://forum.kodi.tv/forumdisplay.php?fid=12)
+--- Thread: Remove OSD/name of the video (/showthread.php?tid=349558)



Remove OSD/name of the video - mikezzz - 2019-11-26

Hello guys.

I want to use my Pi 4 for an art video installation. I need one video to play in a loop without interface showing up. In Kodi, looping works fine, but every time when one loop ends and another starts, the name of the video and OSD shows up for a brief moment. I need to remove it so video loops are completely uninterrupted. Is there a way to do this?

Thank you!


RE: Remove OSD/name of the video - the_other_guy - 2019-11-26

it may be Custom_1109_TopBarOverlay
<control type="label">
                    <label>$VAR[NowPlayingBreadcrumbsVar]</label>
                    <font>font45</font>
                    <shadowcolor>text_shadow</shadowcolor>
                    <top>7</top>
                    <height>100</height>
                    <left>0</left>
                    <right>0</right>
                </control>
                <control type="label">
                    <top>60</top>
                    <label>$VAR[OSDSubLabelVar]</label>
                    <shadowcolor>text_shadow</shadowcolor>
                    <height>100</height>
                    <left>0</left>
                    <right>0</right>
                </control>


RE: Remove OSD/name of the video - mikezzz - 2019-11-26

Thanks, that was fast. Since I am completely new to this, I have no idea where usr folder is located. usr/share/kodi/addons/skin.estuary/xml/Custom_1109_TopBarOverlay.xml . Any advice?