OSMC remote up button

hi

Can I change the skip step of 10 mins for the up button on the Kodi remote?

I have a look through advanced settings and I can see the code for left / right (back / forwards) skip steps, but not up button.

Cheers, Geoff.

“Up” is mapped to ChapterOrBigStepForward. For a video file with chapters, it moves to the next chapter. Otherwise, it moves based on the timeseekforwardbig setting in advancedsettings.xml.

Here is the default…change the 600 to the number of seconds you want to skip:

<advancedsettings>
  <video>
    <timeseekforwardbig>600</timeseekforwardbig>
    <timeseekbackwardbig>-600</timeseekbackwardbig>
  </video>
</advancedsettings>

You probably also want to make the backward skip (“Down”) match your forward change.

3 Likes

o for oarsome.

Thx.