CodecInfo on Red button press (CEC)

I had an old configuration of my keymap where pressing Red when a video is playing would bring up the PlayerProcessInfo display. I want to replace this now with CodecInfo instead.

I have created a new file, remote2.xml in ~/.kodi/userdata/keymaps/ with the following:

<keymap>
  <global>
    <remote>
      <red>CodecInfo</red>
      <green>PreviousChannelGroup</green>
      <yellow>NextChannelGroup</yellow>
      <blue>ContextMenu</blue>
    </remote>
  </global>
</keymap>

The green and yellow functions work as intended when I am in TV list, but pressing red still brings up the PlayerProcessInfo, not the CodecInfo. Also in the default remote.xml, there is nothing linking Red to PlayerProcessInfo:

CoreELEC:~/.kodi/userdata/keymaps # cat remote.xml | grep red
      <red>CodecInfo</red>
      <red>Red</red>
      <red>Red</red>
      <red>Red</red>
      <red>Red</red>
      <red>Red</red>
      <red>Red</red>
      <red>CodecInfo</red>
      <red>Red</red>
      <red>Red</red>

Any ideas what I’m missing here?

You need to use playerdebug and not CodecInfo.

Thanks a lot! That’s the one I was looking for.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.