Announcement

Collapse
No announcement yet.

Announcement

Collapse
No announcement yet.

Use stock remote to pause/play/stop Video by hitting a button on stock remote....possible?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Use stock remote to pause/play/stop Video by hitting a button on stock remote....possible?

    Hi,

    currently I only have the stock remote of the Tronsmart.
    The thing is, in xbmc you can not stop/pause a video by hitting one button on the remote, you first have to hit "OK" to get the on screen menu, than move right then again OK to stop.
    I would like to stop (or pause or start again after pause) with just one hit on the remote.
    Unfortunately the stock remote has no buttons for "play/pause/stop".

    Question: can I re-configure one of the other buttons to do what I want using the keyboard.xml file?
    For example, "Volume-" and "Volume+" are uselesse for me in xbmc as I use passthrough and volume is done by the AVR.

    So I tried to make my own keyboard.xml with these commands:

    Code:
    <?xml version="1.0" encoding="UTF-8"?>
    <keymap>
     <global>
        <keyboard>
         <volume_down>Stop</volume_down>
         <volume_up>Play</volume_up>
        </keyboard>
      </global>
    </keymap>
    Didn´t work, so I tried

    Code:
    <?xml version="1.0" encoding="UTF-8"?>
    <keymap>
     <global>
        <keyboard>
         <volumeplus>Play</volumeplus>
         <volumeminus>Stop</volumeminus>
        </keyboard>
      </global>
    </keymap>
    Also no success.....

    Anyone any idea if this is possible and if so, how to do it?

    Thanks
    Mark

    #2
    Originally posted by spot0915 View Post
    Hi,

    currently I only have the stock remote of the Tronsmart.
    The thing is, in xbmc you can not stop/pause a video by hitting one button on the remote, you first have to hit "OK" to get the on screen menu, than move right then again OK to stop.
    I would like to stop (or pause or start again after pause) with just one hit on the remote.
    Unfortunately the stock remote has no buttons for "play/pause/stop".

    Question: can I re-configure one of the other buttons to do what I want using the keyboard.xml file?
    For example, "Volume-" and "Volume+" are uselesse for me in xbmc as I use passthrough and volume is done by the AVR.

    So I tried to make my own keyboard.xml with these commands:

    Code:
    <?xml version="1.0" encoding="UTF-8"?>
    <keymap>
     <global>
        <keyboard>
         <volume_down>Stop</volume_down>
         <volume_up>Play</volume_up>
        </keyboard>
      </global>
    </keymap>
    Didn´t work, so I tried

    Code:
    <?xml version="1.0" encoding="UTF-8"?>
    <keymap>
     <global>
        <keyboard>
         <volumeplus>Play</volumeplus>
         <volumeminus>Stop</volumeminus>
        </keyboard>
      </global>
    </keymap>
    Also no success.....

    Anyone any idea if this is possible and if so, how to do it?

    Thanks
    Mark
    Yeah it is a strange one, a remote with no stop button lol... i just use the xbmc app on my phone for that shizzle!

    Comment


      #3
      you can use the program addon keymap editor

      or test with this one see if it works or not :

      <keymap>
      <FullscreenVideo>
      <keyboard>
      <c>ContextMenu</c>
      <menu>ContextMenu</menu>
      <backspace>Stop</backspace>
      <return>Play</return>
      </keyboard>
      </FullscreenVideo>
      </keymap>

      or if you want volume_up and down :

      <keymap>
      <FullscreenVideo>
      <keyboard>
      <volume_down>Stop</volume_down>
      <volume_up>Play</volume_up>
      </keyboard>
      </FullscreenVideo>
      </keymap>
      Last edited by papampi; 07 June 2014, 18:26.
      Proud xbmp>xbmc>kodi user since early days of 1st gen xbox
      XBMC on :
      Tronsmart S89 Quad Core - Openelec
      Atv1 + Crystall HD - Crystalbuntu
      Raspberry Pi - Openelec
      Xios DS - Linux the-hydra
      1st gen xbox, JB Atv2, Ouya, ...

      Comment

      Working...