Alternative keymaps for Fire TV remote: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
No edit summary
Line 124: Line 124:
{{-}}
{{-}}


== Keymap 3 ==
:Cut and paste the following into a new text document and save as '''keyboard.xml''' and place in <code>[[userdata]]/keymaps/</code>
<syntaxhighlight lang="xml" enclose="div">
<?xml version="1.0" encoding="UTF-8"?>
<keymap>
  <Global>
    <keyboard>
  <up>Up</up>
  <down>Down</down>
  <left>Left</left>
  <right>Right</right>
  <enter>Select</enter>
      <menu>ContextMenu</menu>
  <play_pause>Play</play_pause>
      <backspace>Back</backspace>
      <rewind>PageUp</rewind>
      <fastforward>PageDown</fastforward>
    </keyboard>
  </Global>
  <Home>
    <keyboard>
      <menu>XBMC.ActivateWindow(favourites)</menu>
    </keyboard>
  </Home>
  <FullscreenVideo>
    <keyboard>
  <up>BigStepForward</up>
  <down>BigStepBack</down>
  <left>StepBack</left>
  <right>StepForward</right>
  <enter>OSD</enter>
      <menu>CodecInfo</menu>
  <play_pause>Play</play_pause>
      <backspace>Stop</backspace>
      <rewind>Rewind</rewind>
      <fastforward>FastForward</fastforward>
    </keyboard>
  </FullscreenVideo>
</keymap>
</syntaxhighlight>
=== What it does ===
{| class="prettytable"
! Button !! Global action !! Home screen action !! Fullscreen video action
| rowspan="8" | [[File:Amazon Fire TV remote.jpg|185px]]
|-
! 3
| Directional pad:
:* Up
:* Down
:* Right
:* Left
| Directional pad:
:* Up
:* Down
:* Right
:* Left
| Directional pad:
:* Up: Next chapter or go forward 10 minutes
:* Down: Previous chapter or go back 10 minutes
:* Right: +30 seconds
:* Left: -30 seconds
|-
! 4
| Select
| Select
| On-screen-display menu
|-
! 6
| Context menu
| '''Show [[Favourites]]'''
|  '''[[CodecInfo]] overlay'''
|-
! 7
| '''Page Down'''
| '''Page Down'''
| Fast forward
|-
! 8
| Play/pause
| Play/pause
| Play/pause
|-
! 9
| Back
| Back
| '''Stop'''
|-
! 10
| '''Page Up'''
| '''Page Up'''
| Rewind
|}
{{-}}
[[Category:Custom keymaps|Amazon Fire TV]]
[[Category:Custom keymaps|Amazon Fire TV]]

Revision as of 02:29, 15 April 2014

Home icon grey.png   ▶ Amazon Fire TV ▶ Alternative keymaps for Fire TV remote

Alternative keymaps for the Amazon Fire TV remote, as suggested by the community.

Note: To make the remote work with XBMC's on-screen-keyboard, go to XBMC -> Settings -> System -> Input devices and enable Remote control sends keyboard presses

Keymap 1

Cut and paste the following into a new text document and save as keyboard.xml and place in userdata/keymaps/
<?xml version="1.0" encoding="UTF-8"?>
<keymap>
  <FullscreenVideo>
    <keyboard>
      <menu>SmallStepBack</menu>
      <backspace>Stop</backspace>
      <up>VolumeUp</up>
      <down>VolumeDown</down>
    </keyboard>
  </FullscreenVideo>
</keymap>

What it does

Changes from the default are shown in bold print.

Button Global action Fullscreen video action Amazon Fire TV remote.jpg
3 Directional pad:
  • Up
  • Down
  • Right
  • Left
Directional pad:
  • Up: Volume up
  • Down: Volume down
  • Right: +30 seconds
  • Left: -30 seconds
4 Select On-screen-display menu
6 Context menu SmallStepBack (go back 7 seconds)
7 Fast forward Fast forward
8 Play/pause Play/pause
9 Back Stop
10 Rewind Rewind


Keymap 2

Cut and paste the following into a new text document and save as keyboard.xml and place in userdata/keymaps/
<?xml version="1.0" encoding="UTF-8"?>
<keymap>
  <FullscreenVideo>
    <keyboard>
      <menu>CodecInfo</menu>
      <backspace>Stop</backspace>
    </keyboard>
  </FullscreenVideo>
</keymap>

What it does

Changes from the default are shown in bold print.

Button Global action Fullscreen video action Amazon Fire TV remote.jpg
3 Directional pad:
  • Up
  • Down
  • Right
  • Left
Directional pad:
  • Up: Next chapter or go forward 10 minutes
  • Down: Previous chapter or go back 10 minutes
  • Right: +30 seconds
  • Left: -30 seconds
4 Select On-screen-display menu
6 Context menu CodecInfo overlay
7 Fast forward Fast forward
8 Play/pause Play/pause
9 Back Stop
10 Rewind Rewind


Keymap 3

Cut and paste the following into a new text document and save as keyboard.xml and place in userdata/keymaps/
<?xml version="1.0" encoding="UTF-8"?>
<keymap>
  <Global>
    <keyboard>
	  <up>Up</up>
	  <down>Down</down>
	  <left>Left</left>
	  <right>Right</right>
	  <enter>Select</enter>
      <menu>ContextMenu</menu>
	  <play_pause>Play</play_pause>
      <backspace>Back</backspace>
      <rewind>PageUp</rewind>
      <fastforward>PageDown</fastforward>
    </keyboard>
  </Global>
  <Home>
    <keyboard>
      <menu>XBMC.ActivateWindow(favourites)</menu>
    </keyboard>
  </Home>
  <FullscreenVideo>
    <keyboard>
	  <up>BigStepForward</up>
	  <down>BigStepBack</down>
	  <left>StepBack</left>
	  <right>StepForward</right>
	  <enter>OSD</enter>
      <menu>CodecInfo</menu>
	  <play_pause>Play</play_pause>
      <backspace>Stop</backspace>
      <rewind>Rewind</rewind>
      <fastforward>FastForward</fastforward>
    </keyboard>
  </FullscreenVideo>
</keymap>

What it does

Button Global action Home screen action Fullscreen video action Amazon Fire TV remote.jpg
3 Directional pad:
  • Up
  • Down
  • Right
  • Left
Directional pad:
  • Up
  • Down
  • Right
  • Left
Directional pad:
  • Up: Next chapter or go forward 10 minutes
  • Down: Previous chapter or go back 10 minutes
  • Right: +30 seconds
  • Left: -30 seconds
4 Select Select On-screen-display menu
6 Context menu Show Favourites CodecInfo overlay
7 Page Down Page Down Fast forward
8 Play/pause Play/pause Play/pause
9 Back Back Stop
10 Page Up Page Up Rewind