Is there a way to disable video overlay when kodi plays a new/next video? - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: General Support (https://forum.kodi.tv/forumdisplay.php?fid=111) +---- Forum: OS independent / Other (https://forum.kodi.tv/forumdisplay.php?fid=228) +---- Thread: Is there a way to disable video overlay when kodi plays a new/next video? (/showthread.php?tid=346064) Pages:
1
2
|
Is there a way to disable video overlay when kodi plays a new/next video? - myke_hart - 2019-08-06 Hi all, I am trying to use Kodi 18.3 as a video playback/looper for old drive in commercials. Everything works fine, except I get an annoying video overlay for a few seconds every time a new video is started. Is there any way to disable this overlay? Is this something that can be disabled in the skin or is this a skin feature? I am using the default skin of Estuary. RE: Is there a way to disable video overlay when kodi plays a new/next video? - jjd-uk - 2019-08-06 You will likely need to edit this line https://github.com/xbmc/xbmc/blob/master/addons/skin.estuary/xml/DialogSeekBar.xml#L3 of the Estuary Dialogseek skin file. I'm at work so can't test, but what you will likely have to remove is either: Player.DisplayAfterSeek or Player.Seeking RE: Is there a way to disable video overlay when kodi plays a new/next video? - myke_hart - 2019-08-06 Awesome! Let me try that. RE: Is there a way to disable video overlay when kodi plays a new/next video? - myke_hart - 2019-08-06 (2019-08-06, 14:15)jjd-uk Wrote: You will likely need to edit this line https://github.com/xbmc/xbmc/blob/master/addons/skin.estuary/xml/DialogSeekBar.xml#L3 of the Estuary Dialogseek skin file.Removed Player.DisplayAfterSeek and the overlay is gone. YES! Now I just need to see if I can remove the black screen and blue dot next. I did see someone else complain about the blue dot somewhere. Maybe there is a solution for that too! Thanks! RE: Is there a way to disable video overlay when kodi plays a new/next video? - jjd-uk - 2019-08-06 Blue dot no idea what you're referring to RE: Is there a way to disable video overlay when kodi plays a new/next video? - myke_hart - 2019-08-06 (2019-08-06, 22:11)jjd-uk Wrote: Blue dot no idea what you're referring to Its like a blue loading dot that cycles for a second.. I would prefer just a black screen when it switches to the next short video. Short video of it below: https://i.imgur.com/tn96kF5.mp4 RE: Is there a way to disable video overlay when kodi plays a new/next video? - jjd-uk - 2019-08-06 Delete this whole section https://github.com/xbmc/xbmc/blob/master/addons/skin.estuary/xml/VideoFullScreen.xml#L34-L75 RE: Is there a way to disable video overlay when kodi plays a new/next video? - myke_hart - 2019-08-07 (2019-08-06, 23:32)jjd-uk Wrote: Delete this whole section https://github.com/xbmc/xbmc/blob/master/addons/skin.estuary/xml/VideoFullScreen.xml#L34-L75First I want to say thank you very much for your help. It is very appreciated and you have already helped in a big way! This second change did not seem to do anything. The blue dot is the same as it was before. I double checked the section was removed and rebooted several times. Just in case I did something incorrectly here is what I did below: # copied skin folder to storage cp -r /usr/share/kodi/addons/skin.estuary /storage/.kodi/addons/skin.estuary.edit I am editing the files in /storage/.kodi/addons/skin.estuary.edit/xml First modification was to DialogSeekBar.xml - Removed the player.DisplayAfterSeek <-this worked to remove the first overlay Second Delete lines 34 -75 from VideoFullScreen.xml <- This does not seem to be doing anything. Can you see that I did anything wrong? RE: Is there a way to disable video overlay when kodi plays a new/next video? - jjd-uk - 2019-08-07 Ok that suggestion was also untested, will check properly tomorrow. RE: Is there a way to disable video overlay when kodi plays a new/next video? - myke_hart - 2019-08-07 (2019-08-07, 00:17)jjd-uk Wrote: Ok that suggestion was also untested, will check properly tomorrow. No worries. Is there a document on what these files do or relate to? I guess if I can find what that image is called, I can search all files for reference to that image. Then start deleting code to see what happens. Re-image it if I crash it. Thanks a bunch for your help. RE: Is there a way to disable video overlay when kodi plays a new/next video? - jjd-uk - 2019-08-07 This is the Skinning Manual https://kodi.wiki/view/Skinning_Manual however doesn't cover what each xml does, for gui elements during video playback the 3 main files are: DialogSeekBar.xml VideoFullScreen.xml VideoOSD.xml There are no strict rules about what goes into each xml, so each skin may do things slightly differently. RE: Is there a way to disable video overlay when kodi plays a new/next video? - jjd-uk - 2019-08-07 Been difficult for me to test as it doesn't always appear for me on my Intel i7 desktop pc, but what seems to get rid of it permentanly for video is altering https://github.com/xbmc/xbmc/blob/master/addons/skin.estuary/xml/DialogBusy.xml#L9 from to
RE: Is there a way to disable video overlay when kodi plays a new/next video? - jjd-uk - 2019-08-07 Also when altering skins the following keymap is useful
So when I change a file using F5 will reload the skin so the change takes effect and F8 toggles a debug overlay which will tell you the name of the xml. RE: Is there a way to disable video overlay when kodi plays a new/next video? - myke_hart - 2019-08-08 (2019-08-07, 22:55)jjd-uk Wrote: Also when altering skins the following keymap is useful This is some great info! RE: Is there a way to disable video overlay when kodi plays a new/next video? - jjd-uk - 2019-08-08 Did the DialogBusy change work? as I said before all my devices are pretty powerful so the loading/cache animations are blink and you'll miss them for me, and sometimes don't occur at all. |