Beiträge von FoxyRabbit

    I asume that this issue will not give any e2 log information. It just seems that code for shutdown when no key pressed still is active when tuners are in a standby state, wich it should not do in my opinion. And nice if we can choose between states (shutdow, standby e.g.) when 'Shutdown when no button has been pressed' is active. I would only use this feature if 'Standby' was what it did.


    seq

    Glad to help!

    Tried on my dm920 and dm7080, and when 'Shutdown when no butten has been pressed for" are set to '1 hour', the tuners turns off after one hour in standby mode. That could be a bug?


    @gutemine

    me or seq? I dont understand what you mean.

    Something similar happened to me. For some reason the 'Shutdown when no butten has been pressed for" was not disabled. With this enabled my dreambox got shut down (maybe deep sleep) in the middle of the night. Dont know if this is a bug, but disabling it and the box remained in standby when using power button ever after.


    I will do another test and see if this happens again.

    Thank you very much Dr.Best ,your my hero!


    I had a feeling that the setNumberOffset was there for "something". :smiling_face:


    And thank you very much for taking the time to create a code example for me. Really appreciate that!


    Yeah, I'm not good at it, but I'm having very much fun with building my image every day! Learning something every day! :grinning_squinting_face:


    The idea is good, and should probobly be used in original code also.

    Thanks for answering!


    It seems to me that self.numberoffset always is 0 in the code. I can se a def with name setNumberOffset wich is never used in code. If this is a bug or surplus code I dont know.


    I want to calculate column width for channelnumbers by calculating the highest channel number in the current active list. Counting channels in list will fail if you got several bouquets. In my example it is only 31 channels, but I want to calculate the width of channel number 130. But I cant find a way to catch the channel number within ServiceList.


    The issue here is that we can set column wdth with component attribute in skin, but if someone have 2000 channels (covered for as attribute width) it will look very ugly in skin for people with only 80 channels. So in my opinion the width should be calculated from actual highest channel number in list.

    We have found out that when "Load metadata from database" is true in system settings, this error occures. If set to false everything is working fine.


    When tags are deleted, they ARE deleted in ts.meta file, but the movieselection list still shows that tags for deleted movies are active. Reboot of system makes it correct in the movieselection list


    The same problem for MovieTagger...


    Could this be fixed?

    Hi everybody,


    I have tested out TagEditor for some days. Some annoying thing is that I can't delete tags from recorded videos. Adding tags to a recorde movies is no problem. But all delete options does not work. When I enter tag list after deleting the tag for a recorded movie, it is still marked with previos tag. Is it not possible to delete tag from the movie file itself? Or is deleting only for the tag list itself.


    Does anybody else have this issue, or is it only me. My movie folder is on a USB disk, don't know if that has anything to do with it.


    Will try to test some more later in the evning with another tuner that has HDD installed.

    Nice if we could test code before you push dre :smiling_face:


    With latest push we no longer can see plugin names in "EasyInfo" screen.


    I found the error:


    You have used definition getPluginByName() twice.


    text = getPluginByName(func)

    getPluginByName(text)


    It could be very nice if this plugin also uses paths from config.usage.configselection_piconspath (UsageConfig.py) instead of its own paths. also with a view to provide support for developers that implement more paths to their images into this file. In my opinion every plugin should point to system paths if they exist.


    Thanks.

    Nice work with the latest updates!


    I want to skin this plugin complete, but the screen "EasyInfo" is making it problematic. I can see in python that this screen has two appearances dependent on config settings. Could we get two different screen names for these screens? aka. "EasyInfo" and "EasyInfo_EventView" or something like that.

    Hi,


    I want to pull out the last channelnumber in active bouquet from active bouquet. How can I do that within ServiceList.py? My goal is to count characters for the last number to use that to calculate column width. I just need help with getting that fuc**** number. I want to do it before the self.l.setBuildFunc(self.buildOptionEntry, True) is startet.


    Until now I have counted channels in list, but that fails when you have a bouquet with channels from e.g. 99 to 130


    I think you got the point. :smiling_face:

    XML
    <screen name="SubtitleDisplay" position="0,0" size="1280,720" zPosition="-1" backgroundColor="transparent" flags="wfNoBorder" />

    @bambike, you will find this line in your skin.xml file. To position subtitle lower, just increase the Y number. eg. position="0,20"


    You have to think that subtitles are a transparent picture that fills your entire screen. By lowering this picture your subtitle will be lower. Unfortunatly TTX and DVB subtitles share position on screen. If you adjust for one of them, the other one will also be adjusted.


    @Ghost, is it a simple way to make two screens for subtitles? One for TTX and one for DVB. Then we could adjust position of DVB and TTX separately. Or would it be better to adjust the existing annoying Y difference in position within the code?