Jump to content


Photo

Pli-SoftcamSetup mod

plugin

  • Please log in to reply
43 replies to this topic

#1 Dimitrij

  • PLi® Core member
  • 9,964 posts

+334
Excellent

Posted 10 April 2012 - 10:51

-Added configuration menu (blue button).
The screenshot will be appreciated by all.

GigaBlue UHD Quad 4K /Lunix3-4K/Solo 4K


Re: Pli-SoftcamSetup mod #2 littlesat

  • PLi® Core member
  • 56,123 posts

+685
Excellent

Posted 10 April 2012 - 11:03

For mee this looks a bit too hacky.... :( overwriting keymaps.... :(

Configuration menu's are better positioned on the menu button... (I never onderstood why some plugins put it on the blue button). To restart it with a button I suggest we better could use MQB plugins.

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


Re: Pli-SoftcamSetup mod #3 Dimitrij

  • PLi® Core member
  • 9,964 posts

+334
Excellent

Posted 10 April 2012 - 11:10

I just was curious to deal with remapping keys on your remote.
At the same time and rewrote the plugin .
He did it just for yourself :D .

GigaBlue UHD Quad 4K /Lunix3-4K/Solo 4K


Re: Pli-SoftcamSetup mod #4 littlesat

  • PLi® Core member
  • 56,123 posts

+685
Excellent

Posted 10 April 2012 - 11:15

But I like the idea to put some softcam info (ecm.info) in there...... ;) But it is CCcam specific here (ecm.info ecm1.info) and all that data is also already available via a PPanel....

Edited by littlesat, 10 April 2012 - 11:19.

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


Re: Pli-SoftcamSetup mod #5 Dimitrij

  • PLi® Core member
  • 9,964 posts

+334
Excellent

Posted 10 June 2012 - 09:42

SoftcamSetup mod for openPLi - v.3.0
-added support Auto-Camd(autor vlamo)
Format MQB..
/etc/MultiQuickButton/your key.xml
  <content>
   <name>Softcam Manager (PLi)</name>
   <sel>1</sel>
   <module>Plugins.PLi.SoftcamSetup.Sc</module>
   <screen><![CDATA[ScNewSelection]]></screen>
  </content>

GigaBlue UHD Quad 4K /Lunix3-4K/Solo 4K


Re: Pli-SoftcamSetup mod #6 kerven

  • Senior Member
  • 52 posts

+1
Neutral

Posted 14 June 2012 - 16:31

hello

after reboot , "enigma2-plugin-pli-softcamsetup_3.0-r0_all.ipk" work perfect in softcam setup

big thank..

Re: Pli-SoftcamSetup mod #7 wizard55

  • Member
  • 13 posts

0
Neutral

Posted 14 July 2012 - 15:39

Does autcam with mgcamd, thanks

Re: Pli-SoftcamSetup mod #8 Dimitrij

  • PLi® Core member
  • 9,964 posts

+334
Excellent

Posted 14 August 2012 - 14:45

Attention!
This version of the plugin to be installed on PLi dated August 14/08/ 2012 and beyond.
Not before.

GigaBlue UHD Quad 4K /Lunix3-4K/Solo 4K


Re: Pli-SoftcamSetup mod #9 littlesat

  • PLi® Core member
  • 56,123 posts

+685
Excellent

Posted 14 August 2012 - 15:12

Is it still required then that I add the skin.startRoot???? I want to do this,,,,,

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


Re: Pli-SoftcamSetup mod #10 Dimitrij

  • PLi® Core member
  • 9,964 posts

+334
Excellent

Posted 14 August 2012 - 15:22

Is it still required then that I add the skin.startRoot???? I want to do this,,,,,

Of course yes.
I await your solution to this issue.

I changed the plugin more.
# ChannelSelection zap
defZap = None
def newZap(self, enable_pipzap = False):
if not config.plugins.SoftcamSetup.autocam.enabled.value:
  defZap(self, enable_pipzap)
else:
  nref = self.getCurrentSelection()
  isPip = enable_pipzap and self.dopipzap
  if isPip:
   ref = self.session.pip.getCurrentService()
  else:
   ref = self.session.nav.getCurrentlyPlayingServiceReference()
  defZap(self, enable_pipzap)
  if ref is None or ref != nref:
   if not hasattr(self, 'camCtrl'):
    from camcontrol import CamControl
    self.camCtrl = CamControl('softcam')
......................
def StartMainSession(session):
global defZap
if defZap is None:
  defZap = ChannelSelection.zap
ChannelSelection.zap = newZap
ChannelSelection.restartAutocam = restartAutocam

defZap = None
def newZap(self, enable_pipzap = False, preview_zap = False):
if not config.plugins.SoftcamSetup.autocam.enabled.value:
  defZap(self, enable_pipzap, preview_zap)
else:
  nref = self.getCurrentSelection()
  isPip = enable_pipzap and self.dopipzap
  if isPip:
   ref = self.session.pip.getCurrentService()
  else:
   ref = self.session.nav.getCurrentlyPlayingServiceReference()
  defZap(self, enable_pipzap, preview_zap)
  if ref is None or ref != nref:

Edited by Dima73, 14 August 2012 - 15:25.

GigaBlue UHD Quad 4K /Lunix3-4K/Solo 4K


Re: Pli-SoftcamSetup mod #11 littlesat

  • PLi® Core member
  • 56,123 posts

+685
Excellent

Posted 15 August 2012 - 07:31

I suggest this is an incorrect please to hack when you zap!!! You can better use a trigger for iPlayableService.evStart event when you want to switch e.g. an emu on a specific channel...

"stealing" stuff from orriginal code like this is not nice....

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


Re: Pli-SoftcamSetup mod #12 halflife

  • Senior Member
  • 59 posts

0
Neutral

Posted 7 September 2012 - 11:23

switch from cc to mgcamd works fine, but when I goes back to cc, black screen. et9000, latest pli3.0
default is cc, mgcamd I use for 3 channels.

Re: Pli-SoftcamSetup mod #13 Dimitrij

  • PLi® Core member
  • 9,964 posts

+334
Excellent

Posted 7 September 2012 - 12:32

switch from cc to mgcamd works fine, but when I goes back to cc, black screen. et9000, latest pli3.0
default is cc, mgcamd I use for 3 channels.

cc=cccam???

GigaBlue UHD Quad 4K /Lunix3-4K/Solo 4K


Re: Pli-SoftcamSetup mod #14 halflife

  • Senior Member
  • 59 posts

0
Neutral

Posted 9 September 2012 - 06:32

yes, sorry

Re: Pli-SoftcamSetup mod #15 Dimitrij

  • PLi® Core member
  • 9,964 posts

+334
Excellent

Posted 9 September 2012 - 06:47

yes, sorry

Problems in the startup script cccam.
Need to add check it starts.
This plugin does not apply.
Can perform the test.
If a black screen in telnet command:
ps w
The answer here

Edited by Dima73, 9 September 2012 - 06:48.

GigaBlue UHD Quad 4K /Lunix3-4K/Solo 4K


Re: Pli-SoftcamSetup mod #16 Dimitrij

  • PLi® Core member
  • 9,964 posts

+334
Excellent

Posted 9 September 2012 - 10:21

SoftcamSetup mod for openPLi - v.3.2
Сhanges(auto-camd)
-no switch camd for active PiP
-no switch camd for preview zap
-added back to the previous service, key 0(switch camd)
-Don't switch auto-camd while recording(yes/no)

GigaBlue UHD Quad 4K /Lunix3-4K/Solo 4K


Re: Pli-SoftcamSetup mod #17 just4fun

  • Member
  • 17 posts

0
Neutral

Posted 11 September 2012 - 11:00

Thank you very much Dima73, it is what i searched very long time;
i have a little pb with my vu+duo, Gbox802 not working with PLi 3.0 but ok with previous version, any ide :rolleyes: thanks
Sat lover

Re: Pli-SoftcamSetup mod #18 littlesat

  • PLi® Core member
  • 56,123 posts

+685
Excellent

Posted 11 September 2012 - 13:23

Why is this 3rd party plugin has enigma2-plugin-pli.... please put it under extensions or so???

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


Re: Pli-SoftcamSetup mod #19 Dimitrij

  • PLi® Core member
  • 9,964 posts

+334
Excellent

Posted 11 September 2012 - 16:01

Why is this 3rd party plugin has enigma2-plugin-pli.... please put it under extensions or so???

So?
enigma2-plugin-extensions-softcamsetup_3.0-r2_mips32el.ipk

GigaBlue UHD Quad 4K /Lunix3-4K/Solo 4K


Re: Pli-SoftcamSetup mod #20 littlesat

  • PLi® Core member
  • 56,123 posts

+685
Excellent

Posted 11 September 2012 - 16:55

Yep please.... ;)

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




Also tagged with one or more of these keywords: plugin

1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users