About songs playback keymap
#1
this is about keymapping.

when playing songs, i'd like to suggest triggers for fast forward/rewind, that is, left trigger for rewind and right trigger for fast forward, and gamepad for next/previous song, moving left for previous song, and moving right for next song.

seems in current xbmc, we just have right trigger for fast forward song.
Reply
#2
in current cvs, in the visualisation screen, the triggers do ffwd/rewd, and left and right do prev/next track, just as you are wanting.
Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting please make sure you read this first.


Image
Reply
#3
well, i tried both xbmc-2005-04-01 and xbmc.2005.0411-orw, it seems only right trigger for fast forward works, but left trigger for rewind, gamepad for next/previous track don't function at all, 'cauze when in visualization screen, i press left trigger, move left and right on gamepad, nothing happens at all.
Reply
#4
works perfectly here.

look in keymap.xml at the visualisation window section.
Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting please make sure you read this first.


Image
Reply
#5
yeah, in xbmc-04-01, i see some codes like this:

   <action>
     <description>skip next</description>
     <id>14</id>
     <gamepad>righttrigger</gamepad>
   </action>
   <action>
     <description>skip previous</description>
     <id>15</id>
     <gamepad>lefttrigger</gamepad>
   </action>
   <action>
     <description>fastforward music</description>
     <id>77</id>
     <gamepad>dpadright</gamepad>
   </action>
   <action>
     <description>rewind music</description>
     <id>78</id>
     <gamepad>dpadleft</gamepad>
   </action>


and seems i have to manually change them to :

   <action>
     <description>skip next</description>
     <id>14</id>
     <gamepad>dpadright</gamepad>
   </action>
   <action>
     <description>skip previous</description>
     <id>15</id>
     <gamepad>dpadleft</gamepad>
   </action>
   <action>
     <description>fastforward music</description>
     <id>77</id>
     <gamepad>righttrigger</gamepad>
   </action>
   <action>
     <description>rewind music</description>
     <id>78</id>
     <gamepad>lefttrigger</gamepad>
   </action>



and oddly enough, in xbmc-0411-orw, the codes seem to be incomplete:

<window>
   <description>visualisation window</description>
   <id>2006</id>
   <action>
     <description>pause cdg</description>
     <id>259</id>
     <gamepad>y</gamepad>
   </action>
   <action>
     <description>fast forward cdg</description>
     <id>113</id>
     <gamepad>rightanalogtrigger</gamepad>
   </action>
   <action>
     <description>show/hide music info</description>
     <id>11</id>
     <gamepad>white</gamepad>
     <remote>info</remote>
     <keyboard>i</keyboard>
   </action>
 </window>
Reply
#6
the codes above are incorrect for fastforward. best to grab the keymap.xml file out of cvs. (just go to the sf web site and get it from webcvs)
Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting please make sure you read this first.


Image
Reply

Logout Mark Read Team Forum Stats Members Help
About songs playback keymap0