Jump to content


Photo

HOTKEY - problems / suggestions


  • Please log in to reply
579 replies to this topic

Re: HOTKEY - problems / suggestions #461 sjlouis

  • Senior Member
  • 1,573 posts

+3
Neutral

Posted 13 April 2016 - 20:38

Yes it's an idea but I don't want to have the backup disk plugged on 220 V all the time. I plug it only when I want to backup and in fact, I use 2 disks to do the backup because there are a lot of files. Then I have to change the disk in the box. I've bought a box with 2 drawers and if Windows sees the 2 disks, Xtrend doesn't see them, I have to insert only one disk :( .


Vu+ Ultimo 4K - OpenPli 8.3

Xtrend ET9200 - OpenPli 6.2


Re: HOTKEY - problems / suggestions #462 Pike_Bishop

  • Senior Member
  • 1,140 posts

+74
Good

Posted 15 April 2016 - 23:03

does it not help if you build in logging in your script so that the output of your script lands in a logfile

so you can always have a look in logfile what happens.

 

 

regards

Biki3


Receiver: VU Ultimo 4K, Octagon SF8008 4K, Gigablue Quad 4K

Image: OpenPLI-8.3


Re: HOTKEY - problems / suggestions #463 sjlouis

  • Senior Member
  • 1,573 posts

+3
Neutral

Posted 16 April 2016 - 08:05

Ok, I have to look up how to send the output in a log file and how to read the logfile from the satellite box.

 

Thank you.


Vu+ Ultimo 4K - OpenPli 8.3

Xtrend ET9200 - OpenPli 6.2


Re: HOTKEY - problems / suggestions #464 sjlouis

  • Senior Member
  • 1,573 posts

+3
Neutral

Posted 16 April 2016 - 12:18

Littlesat, I've flashed OpenPli a week ago and I don't see several plugins as cutlisteditor and moviecut in the list of plugins. Have you an explanation?

 

Thank you :) .


Vu+ Ultimo 4K - OpenPli 8.3

Xtrend ET9200 - OpenPli 6.2


Re: HOTKEY - problems / suggestions #465 sjlouis

  • Senior Member
  • 1,573 posts

+3
Neutral

Posted 16 April 2016 - 12:28

I forgot to say these plugins are in the box. I can run them with Menu.


Vu+ Ultimo 4K - OpenPli 8.3

Xtrend ET9200 - OpenPli 6.2


Re: HOTKEY - problems / suggestions #466 Pike_Bishop

  • Senior Member
  • 1,140 posts

+74
Good

Posted 16 April 2016 - 17:01

Hi,

 

you can make a variable as example;

LOGFILE=/tmp/rsync.log

and thereto this;

exec 3>&1 4>&2
trap 'exec 2>&4 1>&3' 0 1 2 3
exec 1>$LOGFILE 2>&1

for general logging in the script .

you can look into the logfile then with plugin dreamexplorer or you mak a second script with:

cat /tmp/rsync.log

regards

Biki3


Edited by Biki3, 16 April 2016 - 17:02.

Receiver: VU Ultimo 4K, Octagon SF8008 4K, Gigablue Quad 4K

Image: OpenPLI-8.3


Re: HOTKEY - problems / suggestions #467 sjlouis

  • Senior Member
  • 1,573 posts

+3
Neutral

Posted 16 April 2016 - 19:39

I use Dreamexplorer and I've just test it's able to read the content of a file. I didn't know, thank you for the information.

 

Your script is complex. I can understand command as this one :

mount.cifs //<ip-of-PC>/Videos2 /media/videos2 -o username=<windows-user>,password=<password>

 

But this one is totally understandable :huh: :

exec 3>&1 4>&2
trap 'exec 2>&4 1>&3' 0 1 2 3
exec 1>$LOGFILE 2>&1

 

Can you explain it please :) ?


Vu+ Ultimo 4K - OpenPli 8.3

Xtrend ET9200 - OpenPli 6.2


Re: HOTKEY - problems / suggestions #468 sjlouis

  • Senior Member
  • 1,573 posts

+3
Neutral

Posted 17 April 2016 - 15:21

Littlesat, I've flashed OpenPli a week ago and I don't see several plugins as cutlisteditor and moviecut in the list of plugins. Have you an explanation?.

 

Sorry, I've seen these plugins are launched with the MoviePlayer parameters and one of them have lost its value with the flash.

 

But why don't you get all the plugins ;) ?


Vu+ Ultimo 4K - OpenPli 8.3

Xtrend ET9200 - OpenPli 6.2


Re: HOTKEY - problems / suggestions #469 Pike_Bishop

  • Senior Member
  • 1,140 posts

+74
Good

Posted 19 April 2016 - 23:28

@sjlouis,

 

look (here you can see an explanation);

http://serverfault.c...scripts-actions

 

earlier this;

exec >$LOGFILE; exec 2>&1 

was enough for general logging in openatv image, but then they changed a little bit in bash

and then all my scripts are not able to logging and also they didn't work correct in openatv (but only if i have build in general logging)

so i found this solution as i post you in post #466 and all was ok again if i execute my scripts in openatv.

 

i don't know if you need this also in openpli (you can test it, if exec >$LOGFILE; exec 2>&1 works than it's good

but i use the code from post #466 now also in openpli and it works perfect.

 

 

regards

Biki3


Receiver: VU Ultimo 4K, Octagon SF8008 4K, Gigablue Quad 4K

Image: OpenPLI-8.3


Re: HOTKEY - problems / suggestions #470 kolomparrudi

  • Senior Member
  • 41 posts

+1
Neutral

Posted 20 April 2016 - 08:19

Hi,

 

I tried to add these commands, but the buttons won't do anything if I set them to these operations. What do I wrong? I can't see any error message on enigma debug log.

 

hotkeyFunctions.append((_("Seek Back"), "InfoBarGenerics/seekBack", "InfoBarGenerics"))
hotkeyFunctions.append((_("Seek Fwd"), "InfoBarGenerics/seekFwd", "InfoBarGenerics"))
hotkeyFunctions.append((_("Play/Pause"), "InfoBarGenerics/playpause", "InfoBarGenerics"))
 
Br,
Laszlo


Re: HOTKEY - problems / suggestions #471 sjlouis

  • Senior Member
  • 1,573 posts

+3
Neutral

Posted 20 April 2016 - 11:34

Ok Biki, I shall try. Thank you.


Vu+ Ultimo 4K - OpenPli 8.3

Xtrend ET9200 - OpenPli 6.2


Re: HOTKEY - problems / suggestions #472 fogonero

  • Senior Member
  • 92 posts

0
Neutral

Posted 10 July 2016 - 11:22

Please add break after self.runPlugin(plugin).
If the plugin is defined both in  WHERE_PLUGINMENU and WHERE_EXTENSIONSMENU, then it is called twice.
You can see it if the plugin can be closed only pushing close twice.

do not know if I'm missing something.
but this turns from one extreme to another.

example:

if I choose Softcamsetup not see in extensions, not see hotkey on [+ ] Plugins


Edited by fogonero, 10 July 2016 - 11:23.


Re: HOTKEY - problems / suggestions #473 Robinson

  • Senior Member
  • 2,621 posts

+30
Good

Posted 16 July 2016 - 17:24

Hello,

I have an ET9000 and by system default (I believe) both Filelist and Vkey buttons open a list of recordings.

Is there a way to assign a different function for Vkey but keep the current function for Filelist? I cannot see Vkey on the list of available buttons in Hotkey.


ET9000, OpenPLi 4.0, 13E, 19E

HD51, OpenPLi 6.2, 75E - 30W


Re: HOTKEY - problems / suggestions #474 deejaygav

  • Member
  • 9 posts

+1
Neutral

Posted 20 July 2016 - 11:15

Hello, 

 

I have just updated my firmware from an older openpli image and this is the first time I have used the Hotkey feature. I am using my sony bravia tv remote to control my VU Solo2 but I can't open the list of recorded programmes using the sony remote. I was hoping to use hotkey to assign the 'title/list' button to the green button but I can't see an option to do this. Any ideas?  



Re: HOTKEY - problems / suggestions #475 littlesat

  • PLi® Core member
  • 56,965 posts

+696
Excellent

Posted 20 July 2016 - 11:22

hotkeyFunctions.append((_("Show movies"), "Infobar/showMovies", "InfoBar"))

 

The function you should assing to the blue button is called 'show movies'.... It should be withing the InfoBar subsection...


Edited by littlesat, 20 July 2016 - 11:22.

WaveFrontier 28.2E | 23.5E | 19.2E | 16E | 13E | 10/9E | 7E | 5E | 1W | 4/5W | 15W


Re: HOTKEY - problems / suggestions #476 deejaygav

  • Member
  • 9 posts

+1
Neutral

Posted 20 July 2016 - 11:50

hotkeyFunctions.append((_("Show movies"), "Infobar/showMovies", "InfoBar"))

 

The function you should assing to the blue button is called 'show movies'.... It should be withing the InfoBar subsection...

 

Thanks for your quick response and help! I will try that later. 



Re: HOTKEY - problems / suggestions #477 Bag58

  • Senior Member
  • 437 posts

+23
Neutral

Posted 20 August 2016 - 20:02

Would it be possible to make the new toggle "Cover/Uncover dashed flickering line for this service" a function which can be assigned to a Hotkey?



Re: HOTKEY - problems / suggestions #478 littlesat

  • PLi® Core member
  • 56,965 posts

+696
Excellent

Posted 20 August 2016 - 20:10

Sure... That can be done...

WaveFrontier 28.2E | 23.5E | 19.2E | 16E | 13E | 10/9E | 7E | 5E | 1W | 4/5W | 15W


Re: HOTKEY - problems / suggestions #479 rtzhjgg0

  • Senior Member
  • 568 posts

+13
Neutral

Posted 7 October 2016 - 13:53

Actually there is only one button to Preview selected movies (ll)
Can you add a 'Preview' function so we can assign an alternative key for this?

Thanks.
 


Selfsat H50M4
Ultimo4K /2xTwinS2, VTI, PLi, ATV...
NAS: Qnap221

Re: HOTKEY - problems / suggestions #480 littlesat

  • PLi® Core member
  • 56,965 posts

+696
Excellent

Posted 7 October 2016 - 14:40

Sorry I do not understand....

WaveFrontier 28.2E | 23.5E | 19.2E | 16E | 13E | 10/9E | 7E | 5E | 1W | 4/5W | 15W



13 user(s) are reading this topic

0 members, 13 guests, 0 anonymous users