2013-09-18, 17:08
Hi all,
I use the iOS remote together with XBMC on a Raspberry Pi (Raspbmc) and I would like to change one of the buttons' action:
In video full screen mode, I would like that the "i" (Info) button runs XBMC script script.xbmx.subtitles to download the subtitles quickly and directly from the main interface.
So in order to do that, I saw that it was possible to create a custom keymap.xml file on the XBMC server, and this is what I did.
The file is located here: .xbmc/userdata/keymaps/keymaps.xml (as described in this page)
In this file, there are XML nodes for various types of remotes. I configured it for <remote> and <keyboard> by putting the following:
<remote>
<info>RunScript(script.xbmx.subtitles)</info>
</remote>
<keyboard>
<i>RunScript(script.xbmx.subtitles)</i>
</keyboard>
And I did the same under parent nodes <global> and <FullscreenVideo> but without success: when I press the Info button on the iOS remote, it still shows the Info.
So I guess the iOS remote does not send instructions that XBMC interprets as <remote> or <keyboard>?
Do any of you know what name the iOS remote has in keymap.xml ?
Thanks in advance for your help.
I use the iOS remote together with XBMC on a Raspberry Pi (Raspbmc) and I would like to change one of the buttons' action:
In video full screen mode, I would like that the "i" (Info) button runs XBMC script script.xbmx.subtitles to download the subtitles quickly and directly from the main interface.
So in order to do that, I saw that it was possible to create a custom keymap.xml file on the XBMC server, and this is what I did.
The file is located here: .xbmc/userdata/keymaps/keymaps.xml (as described in this page)
In this file, there are XML nodes for various types of remotes. I configured it for <remote> and <keyboard> by putting the following:
<remote>
<info>RunScript(script.xbmx.subtitles)</info>
</remote>
<keyboard>
<i>RunScript(script.xbmx.subtitles)</i>
</keyboard>
And I did the same under parent nodes <global> and <FullscreenVideo> but without success: when I press the Info button on the iOS remote, it still shows the Info.
So I guess the iOS remote does not send instructions that XBMC interprets as <remote> or <keyboard>?
Do any of you know what name the iOS remote has in keymap.xml ?
Thanks in advance for your help.