Beiträge von nbla000

    Ok,
    I've found the solution, at least works on OE2.5 (DM820):




    Python
    self["video"].instance.move(ePoint(0,0))
    		self["video"].instance.resize(eSize(*(0,0)))


    If you set the video size to 0,0 then it will display the video on full screen.

    Hi, by using this sample code I'm able to move and change video size from my plugin but on exit I want to restore the original video size, there is a command for that or there is a way to know current video size before I change it instead of set it to position 0,0 and size 1920x1080 like I'm doing now ?
    Thanks

    Thanks for your reply and... for your tools :thumbs_up:


    As soon as demuxed they come even if decryption fails.

    Yes I've used it but the problem is that I want to know when the current channel is visible (not black screen) so if decryption fails the screen is black (no video images).
    Maybe "demuxed" is not the right word, sorry in case correct the thread's subject.

    Hi,
    For my plugin I wish to know if current channel is "demuxed".


    I know if current channel is crypted by using iServiceInformation.sIsCrypted but I don't need this information, the channel could be FTA and is no "demuxed" because service string is wrong or at the moment the user changes channel and it requires a while before demuxing and if the channel is crypted requires a little bit more of course.


    There is a way to know that from Enigma, in my case OE 2.5 ?


    Thanks

    Hi during new Dream Elite version testing, I've noticed a green crash screen on VideoWizard.py, just on the first boot after flashing.


    To reproduce the error, proceed in this way:


    -Flash the CVS image with reboot flag on browser, the image will restart at the end of flashing process.


    -now If you go to the TV you find the Setup Video that automatically moves from one Output type to another (HDMI, Scart, etc)


    -Do not press any button on remote control, when the focus is on Scart, press the RED button, to set a new language, the language changes and the focus goes to HDMI.


    -now quickly press OK to confirm HDMI before the focus goes automatically to "Scart"


    The result is a crash screen, here is the log.

    Hi,
    I'm a dream-elite developer and I've found a small problem on screen "ParentalControlSetup.py" after your recent modify on component "config.py".


    Since now the default PIN is "0000" instead of "aaaa" and is an integer, you should change the class "ParentalControlChangePin" otherwise when you want to set the PIN for the first time, it asks for the old PIN ?!?!


    This is the code to change on class "ParentalControlChangePin" on screen "ParentalControlSetup.py":

    Code
    def isProtected(self):
    	return (self.pin.value != "aaaa")


    I've fixed it in this way:

    Code
    def isProtected(self):
    	return (self.pin.value != 0)


    This is my first post here, happy new year :winking_face: