NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public Kodi / XBMC X-NEWA v
« Previous 1 4 5 6 7 8 … 13 Next »
X-NEWA 2.5.0 Alpha 8

 
  • 0 Vote(s) - 0 Average
X-NEWA 2.5.0 Alpha 8
BrettB
Online

Posting Freak

Saint Paul, MN, USA
Posts: 2,669
Threads: 170
Joined: Jun 2007
#31
2016-10-03, 11:39 PM
mvallevand Wrote:I tested Crtl-K yesterday and it worked, the problem might be your mapping. Sub uses Ctrl-R and Ctrl-F for navigation in the guide, you have have ctrl-r mapped to Record.

Can you tell me where I've got Ctrl-R mapped to Record? Here's a kodi.log with debugging turn on that I just made. It shows me going to the "Heart of a Champion..." recording and pressing the Record button on the remote a few times. All that displays is a black flash on the TV. Then I turned on the keyboard and pressed Ctrl-K and that brought up the delete confirmation. But, as far as I can see, I don't have any special mapping done for the Record button, so it just goes to the Kodi action Record.

Code:
18:19:51  56.163128 T:1963184128   DEBUG: LIRC: Update - NEW at 49994:a7 0 KEY_RECORD devinput (KEY_RECORD)
18:19:51  56.163486 T:1963184128   DEBUG: OnKey: text (0xe8) pressed, action is Record
18:19:51  56.164310 T:1495524256   DEBUG: http://192.168.143.10:8866/control?time=1475536791&key=131154&client=KNEWA0xb827eb9ccb26L
18:19:51  56.358246 T:1495524256   DEBUG: {u'url': u'', u'screen': u'Recordings'}
18:19:51  56.363056 T:1552937888   DEBUG: {u'needsRendering': False}
18:19:51  56.375023 T:1963184128   DEBUG: COMXCoreComponent::Initialize OMX.broadcom.image_decode input port 320 output port 321 m_handle 0x2d76708
18:19:51  56.375793 T:1963184128   DEBUG: COMXCoreComponent::AllocInputBuffers component(OMX.broadcom.image_decode) - port(320), nBufferCountMin(2), nBufferCountActual(2), nBufferSize(106496), nBufferAlignmen(16)
18:19:51  56.378098 T:1963184128   DEBUG: COMXCoreComponent::Initialize OMX.broadcom.egl_render input port 220 output port 221 m_handle 0x2d76798
18:19:51  56.378754 T:1963184128   DEBUG: COMXCoreComponent::UseEGLImage component(OMX.broadcom.egl_render) - port(221), nBufferCountMin(1), nBufferCountActual(1), nBufferSize(15360) nBufferAlignmen(16)
18:19:51  56.395248 T:1963184128   DEBUG: COMXCoreComponent::Deinitialize : OMX.broadcom.image_decode handle 0x2d76708
18:19:51  56.396255 T:1963184128   DEBUG: COMXCoreComponent::Deinitialize : OMX.broadcom.egl_render handle 0x2d76798
18:19:51  56.396416 T:1963184128   DEBUG: DecodeJpegToTexture: decoded /storage/.kodi/temp/x-newa/emulate-1475536791.55.jpg 1280x720
18:19:52  56.615059 T:1963184128   DEBUG: LIRC: Update - NEW at 50446:a7 0 KEY_RECORD_UP devinput (KEY_RECORD_UP)
18:19:52  57.375046 T:1552937888   DEBUG: {u'needsRendering': False}
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 53,163
Threads: 958
Joined: May 2006
#32
2016-10-04, 01:54 AM
You don't that is a Kodi/LIRC default for ctrl-r you would have to change it in keyboard.xml to ctrl-k. The problem on the guide is that there is typically no ff/rw on a multimedia keyboard and ctrl l/r and skip/prev do the same thing so I don't get my favourite way for jumping.

Martin
BrettB
Online

Posting Freak

Saint Paul, MN, USA
Posts: 2,669
Threads: 170
Joined: Jun 2007
#33
2016-10-04, 02:13 AM
mvallevand Wrote:You don't that is a Kodi/LIRC default for ctrl-r you would have to change it in keymappings.xml to ctrl-k. The problem on the guide is that there is typically no ff/rw on a multimedia keyboard and ctrl l/r and skip/prev do the same thing so I don't get my favourite way for jumping.

Are you sure that lines 125-126 in emulate.py aren't what's converting the Action_Record to a Ctrl-R?
Code:
elif actionID == ACTION_RECORD or actionID == ACTION_QUEUE_ITEM:
            url = keyBase + str(82|0x20000)
BrettB
Online

Posting Freak

Saint Paul, MN, USA
Posts: 2,669
Threads: 170
Joined: Jun 2007
#34
2016-10-04, 02:15 AM
mvallevand Wrote:The problem on the guide is that there is typically no ff/rw on a multimedia keyboard and ctrl l/r and skip/prev do the same thing so I don't get my favourite way for jumping.

Also, just to make sure we're on the same page... I'm talking about pressing the Record button on a recording in the Recent Recordings list not in the Guide.
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 53,163
Threads: 958
Joined: May 2006
#35
2016-10-04, 02:16 AM
It turning Record to ctrl-R like it should be but you want it to be ctrl-K

Martin
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 53,163
Threads: 958
Joined: May 2006
#36
2016-10-04, 02:20 AM
Just to be clear the problem isn't the record button, the problem is that in Kodi ctrl-R maps to the Record key.

Martin
BrettB
Online

Posting Freak

Saint Paul, MN, USA
Posts: 2,669
Threads: 170
Joined: Jun 2007
#37
2016-10-04, 02:37 AM
mvallevand Wrote:Just to be clear the problem isn't the record button, the problem is that in Kodi ctrl-R maps to the Record key.

Sorry. This seems to be the part that I'm not following.

My understanding is that the remote sends MCE Remote Button ID 0x17 (XINPUT_IR_REMOTE_RECORD). And then the remote.xml says that Remote Button Record (XINPUT_IR_REMOTE_RECORD) should trigger Kodi action Record. And then X-NEWA emulate.py (lines 125-126) is saying that when sent Action Record it should send NextPVR a Ctrl-R keypress.
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 53,163
Threads: 958
Joined: May 2006
#38
2016-10-04, 02:46 AM
Unfortunately ctrl-r is the king and it sends a Record action to x-newa. I want it to send ctrl-r to NextPVR, The Record button gets lost in the mix. I do not want ctrl-r to send a ctrl-k to NextPVR

Martin
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 53,163
Threads: 958
Joined: May 2006
#39
2016-10-04, 02:57 AM
OK I have edited emulate.py and moved the Record action checks after the control key checkiing hopefully that will work for you.

Martin
BrettB
Online

Posting Freak

Saint Paul, MN, USA
Posts: 2,669
Threads: 170
Joined: Jun 2007
#40
2016-10-04, 03:07 AM
mvallevand Wrote:Unfortunately ctrl-r is the king and it sends a Record action to x-newa. I want it to send ctrl-r to NextPVR, The Record button gets lost in the mix. I do not want ctrl-r to send a ctrl-k to NextPVR

So, with X-NEWA 2.5.0~alpha4 (where it works), X-NEWA was sending a ctrl-K, but with 2.5.0~alpha5 (where it doesn't work), X-NEWA is sending a ctrl-R?
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (6): « Previous 1 2 3 4 5 6 Next »


Possibly Related Threads…
Thread Author Replies Views Last Post
  X-NEWA client problem jcjefferies 2 1,173 2023-04-11, 05:01 PM
Last Post: jcjefferies
  x-newa new install wheemer 14 4,812 2020-09-15, 02:21 AM
Last Post: mvallevand
  New repository for KNEWC and X-NEWA mvallevand 8 8,961 2020-05-09, 02:19 AM
Last Post: jksmurf
  X-NEWA keeping host PC awake lost@c 6 2,857 2020-04-03, 04:26 AM
Last Post: lost@c
  X-NEWA End of Life mvallevand 39 16,236 2019-11-16, 02:30 AM
Last Post: jksmurf
  X-NEWA 2.5.4 & knew4v5 2.6.6 both "Die" when pressing Previous Chapter in LE BrettB 3 2,948 2019-06-15, 01:33 AM
Last Post: mvallevand
  X-NEWA 2.5.4 Release mvallevand 4 2,982 2019-03-11, 05:57 PM
Last Post: mvallevand
  X-NEWA Web Client Not Acting On Keypresses BrettB 4 3,132 2019-02-02, 02:05 AM
Last Post: mvallevand
  X-NEWA Web Client Crashing BrettB 2 2,366 2019-01-31, 08:50 PM
Last Post: mvallevand
  Unable to load NEWA data ChaosMageX 7 3,407 2018-12-29, 01:25 AM
Last Post: mvallevand

  • View a Printable Version
  • Subscribe to this thread
Forum Jump:

© Designed by D&D, modified by NextPVR - Powered by MyBB

Linear Mode
Threaded Mode