Kodi Community Forum

Full Version: Fire TV Remote Keymap Customization
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Can someone explain how? I simply want to use keymap #3 or 4 here in Kodi and make the up/down (directional) buttons go 5 minutes (vs. 10), and the left/right go 1 minute (vs. 30 seconds). Thanks.
I believe it should be:

Code:
<FullscreenVideo>
    <keyboard>
      <menu>SmallStepBack</menu>
      <backspace>Stop</backspace>
      <browser_back>Stop</browser_back>
      <up>Seek(300)</up>
      <down>Seek(-300)</down>
      <left>Seek(-60)</left>
      <right>Seek(60)</left>
    </keyboard>
  </FullscreenVideo>
Thank you, will try out.