![]() |
|
PVR Shortcuts - Printable Version +- XBMC Community Forum (http://forum.xbmc.org) +-- Forum: Development (/forumdisplay.php?fid=32) +--- Forum: PVR Development (/forumdisplay.php?fid=136) +--- Thread: PVR Shortcuts (/showthread.php?tid=105959) |
RE: PVR Shortcuts - sprucas - 2012-07-10 12:21 guys, i fiddled around with keyboard mapping and found the following configuration works really well to get the mceremote keys working in the pvr player <!-- activate EPG --> <g mod="ctrl">XBMC.ActivateWindowAndFocus(MyPVR, 31,0, 10,0)</g> <!-- activate TV --> <t mod="ctrl,shift">XBMC.ActivateWindowAndFocus(MyPVR, 32,0, 11,0)</t> <!-- activate Radio --> <j>XBMC.ActivateWindowAndFocus(MyPVR, 33,0, 12,0)</j> <!-- activate Recordings --> <o mod="ctrl">XBMC.ActivateWindowAndFocus(MyPVR, 34,0, 13,0)</o> <!--record a program now--> <r mod="ctrl">PlayerControl(Record)</r> <p mod="ctrl,shift">PlayerControl(Play)</p> <b mod="ctrl">PlayerControl(Repeat)</b> <f mod="ctrl">PlayerControl(Next)</f> <f mod="ctrl,shift">PlayerControl(Forward)</f> <b mod="ctrl,shift">PlayerControl(Rewind)</b> <p mod="ctrl">PlayerControl(Play)</p> I tested PlayerControl(Record) and it worked really well, so i just added the other settings with PlayerControl. now all the buttons work in the PVR player any thoughts? sprucas RE: PVR Shortcuts - XBMCManni - 2012-07-15 17:13 Hello, i don't know if this is the right thread for my question: I am using xbmc 12 frodo alpha 4 (pvr edition from lars) with the cirrus extended v2 skin. When watching live-tv, i can pause (timeshift) with the mouse by klicking "||" (pause) from the top navigation bar (VideoOSD), but when i press the pause-key on my ir-remote, nothings happens. When watching a movie, the pause-key on the ir-remote is working. Now the question: How can i do pause in live-tv also with my ir-remote by pressing "Pause" key ? Is this skin-specific or where i can configure it (i cannot find anywhere something about mapping a key to the "pause" function in live-tv). Thanks, XBMCManni RE: PVR Shortcuts - mjfmmeijers - 2012-07-19 11:12 Hello, Does anyone know the code for Timer? XBMC.ActivateWindowAndFocus(MyPVR, ?,?, ?,?) ![]() I would like to map a button on my remote to LiveTV/Timer Thanks RE: PVR Shortcuts - bossanova808 - 2012-07-19 12:38 (2012-07-15 17:13)XBMCManni Wrote: Hello, You realise the answer to your question is immediately above your question? You need to add those to your keymap.xml to get it working by remote... RE: PVR Shortcuts - codex70 - 2012-11-13 17:58 I've asked in another thread, but this may be the best place to ask. When I press the "e" key it pulls up the EPG, exactly as I'd like, however I'd like to return to whatever I was watching before when I press the "e" key again. Is this currently possible, and if not, could I make a feature request? I've seen the stuff that mentions <PVROSDGuide> <keyboard> <Enter>Back</Enter> </keyboard> </PVROSDGuide> but I don't think this is the same thing (at least it doesn't seem to work for me). RE: PVR Shortcuts - da-anda - 2012-11-13 18:18 PVROSDGuide is not the big EPG that pops up with "e". You can see the PVROSDguide when poping up the OSD in fullscreen mode and then click the "EPG" button. Don't think what you want is currently possible, but I'd like it to behave the same as you do. RE: PVR Shortcuts - schumi2004 - 2013-04-06 20:10 What command do i need to directly record currently watching TV Live stream? RE: PVR Shortcuts - da-anda - 2013-04-07 11:10 (2013-04-06 20:10)schumi2004 Wrote: What command do i need to directly record currently watching TV Live stream?<foo>PlayerControl(Record)</foo> RE: PVR Shortcuts - schumi2004 - 2013-04-07 11:24 (2013-04-07 11:10)da-anda Wrote:(2013-04-06 20:10)schumi2004 Wrote: What command do i need to directly record currently watching TV Live stream?<foo>PlayerControl(Record)</foo> Thanks, i'll give it a shot. Currently not possible to have this key mapped to LiveTV only in Keymap.xml i think? Only for fullscreenvideo global which will be for movies and series also then? RE: PVR Shortcuts - da-anda - 2013-04-07 21:07 you can limit it to <fullscreenlivetv> (please check the wiki or default key map for correct spelling) |