remap keys dinovo mini
#1
Hi,
I have a Logitech Dinovo mini. I would like to know if I can redefine the keys of the media player for my keyboard (dinovo), for example: change keys to up and down the volume.
Many thanks and sorry for my english!
Reply
#2
I think that I have not expressed either.
I think that XBMC use DVDPlayer to play video files.
I would like to know how could I change the hotkeys of DVDPlayer.
Thanks
Reply
#3
Have a look at http://wiki.xbmc.org/index.php?title=Mod...yboard.xml

If you use Windows look on http://xbmcmce.sourceforge.net/ where there are some useful apps, Showkey and KeymapEdit, for managing key mappings.

JR
Reply
#4
You could also try uberoptions, with it you can edit all of the keys for the dinovo mini

http://uberoptions.net/
Reply
#5
Hi,
I'm trying to remap keys of DVDPlayer. I've capture the code of the keys that I would like to have but I don't know how I must put it.
Any help?
Many thanks and sorry for my english!
Reply
#6
Hi,
I've modifiqued the keyboard.xml of
/usr/share/xbmc/system/keymaps
Code:
<PlayerControls>
    <keyboard>
      <m>Back</m>
      <key id="f084">volumeup</key>
    </keyboard>
  </PlayerControls>
I see the code in xbmc.log
Code:
23:39:423:40:15 T:140727985297280   DEBUG: OnKey: pageup (f084) pressed, action is PageUp
23:40:16 T:140727985297280   DEBUG: ------ Window Init (Pointer.xml) ------
But doesnt works. I press PageUp and dont volume up
Any help?
Thanks
Reply
#7
You shouldn't modify the system keymap. Instead create a new keyboard.xml in $HOME/.xbmc/userdata/keymaps containing just the mappings you want to add or change.

Assuming you want page up to change the volume when you're watching a video you want the file to contain:

Code:
<keymap>
  <FullscreenVideo>
    <keyboard>
      <pageup>VolumeUp</pageup>
    </keyboard>
  </FullscreenVideo>
</keymap>

JR

mierdatuti Wrote:Hi,
I've modifiqued the keyboard.xml of
/usr/share/xbmc/system/keymaps
Code:
<PlayerControls>
    <keyboard>
      <m>Back</m>
      <key id="f084">volumeup</key>
    </keyboard>
  </PlayerControls>
I see the code in xbmc.log
Code:
23:39:423:40:15 T:140727985297280   DEBUG: OnKey: pageup (f084) pressed, action is PageUp
23:40:16 T:140727985297280   DEBUG: ------ Window Init (Pointer.xml) ------
But doesnt works. I press PageUp and dont volume up
Any help?
Thanks
Reply

Logout Mark Read Team Forum Stats Members Help
remap keys dinovo mini0