Beiträge von Gianathem

    Sorry for my UP..


    This is a bug or not?


    I think in Satconfig.py the parameter toneAmplitude is not managed on save routine, there is a big problem to configure unicable, every reboot the user need reconfigure tuner.


    Thank's for support

    Hi,


    I update OE opendreambox-1.6, now is unable to compila an image beacuse libmatroska is in Error:



    Any Idea ?


    Thank's


    Gianathem

    The problem is on this line


    Python
    from twisted.web import client


    if i comment the line above, and mod this


    Code
    if thumbnailUrl is not None:
    			self.thumbnail = "/tmp/" + thumbnailUrl.split('/')[-1]
    			print "[PluginDetails] downloading screenshot " + thumbnailUrl + " to " + self.thumbnail
    			#if iSoftwareTools.NetworkConnectionAvailable:
    				##downloadPage(thumbnailUrl,self.thumbnail).addCallback(self.setThumbnail).addErrback(self.fetchFailed)
    			#else:
    			self.setThumbnail(noScreenshot = True)
    		else:
    			self.setThumbnail(noScreenshot = True)


    everithing work, but is not posslble to download preview image

    Thanks,
    I found the plugin, is SoftwareManager


    I removed tasks-opendreambox-enigma2 for dep and SoftwarManager and now getPage() works and genuinedreambox work fine.
    It is very strange, because there are no recent mod, for this plugin, on enigma2 experimental repo....

    This is a WARNING not an error. And in fact it is no Problem at all.
    The problem is something different, maybe some broken plugin that exectues reactor.run() (which would cause the described effect)!


    Thanks, for answer.


    But it very strange, because i installed only a official plugins.
    I'm sure until 21.12.2010 all work ok. and seem that the problem appear only with the plugins on gti enigma2-plugins repo.

    Hi everybody


    hi found this on enigma2 log


    Code
    /usr/lib/python2.6/site-packages/twisted/internet/_sslverify.py:5: DeprecationWarning: the md5 module is deprecated; use hashlib instead
      import itertools, md5


    Now the plugins:
    genuinedreambox, remains on (Step 1) permanantely
    MyTube, dont show any preview image
    Software Manager->Manage Extension, on plugins detail screen the preview image dont'appaer.


    It seem the problem is a function getPage on twisted.web.client don't return the web request results, but any message is write on log


    Any Idea?


    image is compiled using enigma2 experimental head. and openembedded opendreambox.-1.6 head


    Thank's

    Problem on ParentalControl.py after last mod on enigma2 GIT


    Hi seddi.


    The problem is present only if you set the box in this mode:


    Video Output: DVI
    Mode :1080i
    Refresh: 50Hz
    Display 4:3 content as : Pan&Scan
    Display >16:9 content as : Letterbox


    and you try to get a video screen-shot on a 4/3 channel.
    With HD channel and 16/9 channel no probelm.


    Bye

    Ciao,thank's for the report


    Now, we do wait DMM for a Patch :face_with_tongue:

    probably too less memory, try it with a swapfile enabled

    Hi Gutemine
    I found this problem on a dm800 PVR, i couldn't test on a 8000 or 7025 because i don't have a Box :smiling_face:
    I use Ghost git repo, and i found the problem on a pure CVS and on my image, i don't think is a memory problem, there was 50Mb free and 64Mb on swap during the test.
    Could you try to test on your dream?

    Hi everybody


    i think there is a bug in aio-grab


    if you set A/V setting in the follow mode:


    Video Output: DVI
    Mode :1080i
    Refresh: 50Hz
    Display 4:3 content as : Pan&Scan
    Display >16:9 content as : Letterbox


    and you try to grab a video screenshot an error occour


    Code
    root@dm800:~# grab -v -r 720 -j 80
    AiO Dreambox Screengrabber v0.81
    
    
    Detected STB: Brcm7401
    Grabbing Video ...
    Bus error
    root@dm800:~#


    same problem with v0.81 and v0.83


    If you change Pan&Scan in Pillarbox, grab work fine


    any Idea?

    Zitat

    Originally posted by dbluelle
    The desktop_fb widget has the size of the whole framebuffer (720x576), so if you move this widget, you have to resize it so that it still fits into the framebuffer. Otherwise the content of the widget may be drawn into memory that doesn't belong to the framebuffer.
    So, if you move the widget 10 pixels to the right, you have to set the width 10 pixels smaller.


    (I haven't tested this, but IMHO it should work this way :winking_face: )


    dbluelle


    Thank's, now i tried with resize but no way, same problem :frowning_face:


    Code
    void eOsdPosition::verChanged(int i)
    {
    	i = i - 25;
    	lblver->setText(eString().sprintf("%i",i).c_str());
    	int h_offset = sHor->getValue() - 25;
     	eZap::getInstance()->getDesktop(eZap::desktopFB)->resize(eSize(720 - abs(h_offset), 576 - abs(i)));
    	eZap::getInstance()->getDesktop(eZap::desktopFB)->cmove(ePoint(h_offset, i));
    }

    Hi everybody, viele grussen


    This i the my first post.


    Hi need to move the desktop_fb widget, but i have a problem, i made a panel to do this, with a two slider class to choose H and V offset,




    when i change the slider value often enigma crash 'segmentation fault',


    Anyone could help me?