Jump to content


hyperonex

Member Since 21 Apr 2011
Offline Last Active 11 Jun 2019 00:15
-----

Topics I've Started

Looking for volunteers for research work

26 December 2016 - 11:37

Dear All,

 

We look for volunteers to complete a master research work. We are now in the phase of gathering data from volunteers where an enigma 2 plugin was developed to send the zap history as well as the user profile (age and gender) for the TV viewer to a server. 

 

The plugin could be downloaded from here. It should be manually installed and configured as shown in the attached figure 1 and 2.

 

We need at least one week data from each volunteer. He can then disable or uninstall the plugin from the receiver. 

 

Once installed and configured, the plugin will popup a window asking for who is viewing the TV when the TV viewer remains on the same channel for more than 5 minutes as shown in figure 3 here attached.

 

A complete explanation on how to install and configure the plugin could be found here.

 

The gathered data will be then used to make feed Machine Learning Algorithms. 

 

The second phase will be to implement a plugin for channel recommendation based on the Machine Learning System implemented in phase 1. 

 

Thank you very much for you help.

 


Plugin programming: HTTP post request while zapping makes the zap slow

1 November 2016 - 17:44

Hi,

 

I'm implementing a plugin which posts data to an HTTPS url when the user moves from one service to another. The problem is that enigma2 displays the spinner and the zap action takes 2 or 3 seconds to finishes.

 

My implementation is as follow:

Current service -> Zap -> Call function sending HTTP post request ->New Service

 

Is there any thread like mechanism where the called function is executed in parallel with the zap action as follows:

 

Current service->Zap->New service

                             |

                              ----->Call function sending HTTP post request

 

Thanks for your help.


How to avoid [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed

27 October 2016 - 09:37

I'm implementing a plugin which needs to communicate with https website.

 

I get the following error:

 

[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:590)

 

Here is my code:

headers = {"Content-type": "application/x-www-form-urlencoded","Accept": "text/plain","Authorization": "Basic %s" % b64Val}
conn = httplib.HTTPSConnection("viewthatnow.com", 443)
conn.request("POST", "/savezapentry/savezapentry.php", values, headers)
response = conn.getresponse()

How could I avoid verifying the SSL certificate using python 2.7.3 (used by OpenPli) ??