Disable screen pause OSD - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: Skins Support (https://forum.kodi.tv/forumdisplay.php?fid=67) +---- Forum: Arctic: Zephyr - Reloaded (https://forum.kodi.tv/forumdisplay.php?fid=221) +---- Thread: Disable screen pause OSD (/showthread.php?tid=324899) |
Disable screen pause OSD - kingkiller - 2017-12-01 Good afternoon, I am trying to disable the OSD that appears when I press the pause during playback, currently I get this by renaming DialogSeekBar.xml, so the system can not find it, but the big problem is that I lose all the menus. Using for example the PS3 control it would be possible to open the menu with the square and pause with the X, if possible a specific setting to turn off this OSD during the pause, but keeping the menu seperate would be perfect. RE: Disable screen pause OSD - kingkiller - 2017-12-04 up RE: Disable screen pause OSD - artfullone - 2018-07-12 I also renamed the DialogSeekBar.xml but i still have the play, stop & pause buttons at the bottom. Though it is a little hard to see with a black background. 😀 RE: Disable screen pause OSD - kingkiller - 2019-03-05 This menu does not appear when you press space (Play / Pause). RE: Disable screen pause OSD - jcizzle209 - 2019-07-05 i found the solution here: https://discourse.osmc.tv/t/howto-osmc-skin-hiding-the-pause-osd-on-screen-display-after-amount-of-x-seconds/9464/15 With skin Estuary you have to change one line in file /usr/share/kodi/addons/skin.estuary/xml/DialogSeekBar.xml : <visible>Player.Seeking | Player.DisplayAfterSeek + !System.IdleTime(5) | [Player.Paused + !System.IdleTime(5) + !Player.Caching] | Player.Forwarding | Player.Rewinding | Player.ShowInfo | Window.IsActive(fullscreeninfo) | Window .IsActive(videoosd) | Window.IsActive(musicosd) | Window.IsActive(playerprocessinfo) | !IsEmpty(Player.SeekNumeric)</visible> It's working for me! Thanks to Jim Knopf from the link above. RE: Disable screen pause OSD - wedok - 2019-12-29 So its 2019. Where is the "Hide pause OSD after x seconds" option ? RE: Disable screen pause OSD - kingkiller - 2020-07-01 (2019-12-29, 16:11)wedok Wrote: So its 2019.https://github.com/luizoti/skin.xperience1080.git I forked this 'xperience1080' theme and created options to either hide or OSD during a break or to add a delay. The next step we still don't know is the truth, a menu for selecting different delay values. Believe that these changes can be applied to a qualified topic. RE: Disable screen pause OSD - WakaWata - 2024-05-29 (2017-12-01, 18:14)kingkiller Wrote: Good afternoon,I sometimes can't read subtitles fast enough and need to pause for a few seconds. But the OSD seekbar blocks my view of the text. Figured you can disable seekbar OSD entirely for just playback pauses by editing \addons\skin.arctic.zephyr.mod\1080i\Includes_OSD.xml Search towards the bottom for <include name="Seekbar1"> this is the normal layout, <include name="Seekbar2"> this is reloaded layout, or <include name="Seekbar3"> this is side layout. Then within that segment of code find <!-- Seekbar --> and delete "Player.Paused" from <visible> |