(2019-03-30, 16:00)secretliar Wrote: (2019-03-20, 22:34)secretliar Wrote: (2019-03-19, 09:28)jurialmunkey Wrote: Current and finish time shows under seekbar when pressing info (or enable option to show poster/plot when paused if you don't have an info button).
Hi jurial!
Do you think there's a way to see the finish time easily?
With my settings I'm force to look at the plot just to check the finish time :S
I noticed that there's a setting for hide plot and poster when clicking info on the OSD, but when we use a remote without info button, that means that I have to enable pause = info, then see plot to be able to check the finish time
Did someone found a way to see finish plot when pause, without seeing plot informations?
Hi!
If some other people have the same issue, here's how I solved it on my Mi Box :
- You need check "hide plot when pressing info" in the skin settings
- 2 scripts
- a keymap modification
01. Check the appropriate box in skin setting.
02. Create two scripts in the userdata folder :
script.pauseinfo.py
Code:
import xbmc
xbmc.executebuiltin("Action(PlayPause)")
xbmc.executebuiltin("Action(Info)")
script.playreturn.py
Code:
import xbmc
xbmc.executebuiltin("Action(PreviousMenu)")
xbmc.executebuiltin("Action(PlayPause)")
03. In your
keymap file, add these :
Code:
<FullscreenVideo>
<keyboard>
<return>RunScript(special://masterprofile/script.pauseinfo.py)</return> <!-- Please note that I switched the normal press and the longpress default action -->
<enter>RunScript(special://masterprofile/script.pauseinfo.py)</enter> <!-- Feel free to switch it back! -->
<return mod="longpress">OSD</return> <!-- Please note that I switched the normal press and the longpress default action -->
<enter mod="longpress">OSD</enter> <!-- Feel free to switch it back! -->
</keyboard>
</FullscreenVideo>
<FullscreenInfo>
<keyboard>
<return>RunScript(special://masterprofile/script.playreturn.py)</return> <!-- Remove if you have a playpause button -->
<enter>RunScript(special://masterprofile/script.playreturn.py)</enter> <!-- Remove if you have a playpause button -->
</keyboard>
</FullscreenInfo>
Please note that on my Mi Box, the scripts take some time to load. So if Kodi is freshly opened and you start a video rightaway, it might not respond for a few second. For now, and until the skin is stable enough to be modded, that the only solution I found.
Please, if anyone found something easier, tell me!
---
@
jurialmunkey would you consider adding a setting to make it simpler to check finish time for people with nVidia Shield or a Mi Box, or anyone with a simple remote with not that much buttons?