2024-03-30, 22:41
Per: https://kodi.wiki/view/HOW-TO:Modify_time_seeking
Example 4
In this example things get weird. Despite the name of the tags, we can actually use either "forward" or "back" for both forward and backwards seeking, depending on if we use the - (minus) sign or not. While not actually practical, this is one example of how these settings could be used. When using default keymaps we get the following behavior:
Left: forward 10 seconds
Right: forward 20 seconds
Up: forward 30 seconds
Down: forward 40 seconds
advancedsettings.xml
<advancedsettings>
<video>
<timeseekforward>10</timeseekforward>
<timeseekbackward>20</timeseekbackward>
<timeseekforwardbig>30</timeseekforwardbig>
<timeseekbackwardbig>40</timeseekbackwardbig>
</video>
</advancedsettings>
What this implies is it will skip the designated number of seconds in a video when the left, right, up, down keys are pressed. However, when I tried this (using my own preferred number of seconds) it had no effect. Left and right continued to follow the defaults indicated in the GUI settings. Up and down jumps forward and backward approximately 7 minutes... I have no idea where that's coming from.
Therefore, my next thing to try was based on: https://kodi.wiki/view/Skip_steps#Custom...tep_values
I tried:
<advancedsettings>
<seeksteps>20, 60</seeksteps>
</advancedsettings>
This works but only for left and right. My hope had been that since there were only 2 steps, up and down would do 60 seconds. However, they persist in doing the ~7 minute forward and backward jumps.
Thus, my question... when playing videos, how exactly do I make Kodi jump the exact number of seconds I want using the left, right, up, down buttons? Thanks!!!
Version / OS: Kodi 21 RC1 / Android 12
Example 4
In this example things get weird. Despite the name of the tags, we can actually use either "forward" or "back" for both forward and backwards seeking, depending on if we use the - (minus) sign or not. While not actually practical, this is one example of how these settings could be used. When using default keymaps we get the following behavior:
Left: forward 10 seconds
Right: forward 20 seconds
Up: forward 30 seconds
Down: forward 40 seconds
advancedsettings.xml
<advancedsettings>
<video>
<timeseekforward>10</timeseekforward>
<timeseekbackward>20</timeseekbackward>
<timeseekforwardbig>30</timeseekforwardbig>
<timeseekbackwardbig>40</timeseekbackwardbig>
</video>
</advancedsettings>
What this implies is it will skip the designated number of seconds in a video when the left, right, up, down keys are pressed. However, when I tried this (using my own preferred number of seconds) it had no effect. Left and right continued to follow the defaults indicated in the GUI settings. Up and down jumps forward and backward approximately 7 minutes... I have no idea where that's coming from.
Therefore, my next thing to try was based on: https://kodi.wiki/view/Skip_steps#Custom...tep_values
I tried:
<advancedsettings>
<seeksteps>20, 60</seeksteps>
</advancedsettings>
This works but only for left and right. My hope had been that since there were only 2 steps, up and down would do 60 seconds. However, they persist in doing the ~7 minute forward and backward jumps.
Thus, my question... when playing videos, how exactly do I make Kodi jump the exact number of seconds I want using the left, right, up, down buttons? Thanks!!!
Version / OS: Kodi 21 RC1 / Android 12