Posts by Lululla

    Lululla added a new version:

    Hi,


    Thank you for providing the debug log. I've reviewed it carefully, but unfortunately **it does not show the problem you described** (no signal when changing channels).


    What the log actually shows:

    - A normal boot of your Vu+ Ultimo4K with OpenATV 8.0.0-beta.

    - The skin being loaded is **MetrixHD**, not Aglare (so this log is from a session where Aglare wasn't active, or after you switched skins).

    - The session ends with a normal shutdown (no errors, no channel switching, no signal loss).


    Therefore, this log is not useful for diagnosing your issue. We need a proper debug log captured **while the problem is happening**.


    **Please follow these steps:**


    1. Stop Enigma2:

    `init 4`


    2. Start Enigma2 manually with full debug output:

    `enigma2 > /tmp/debug.log 2>&1`


    3. Reproduce the problem:

    Change channels several times until you get the "no signal" and it doesn't come back.


    4. Once the problem occurs, press `Ctrl+C` to stop Enigma2, then restart it with `init 3`.


    5. Attach the **entire `/tmp/debug.log`** file here.


    **In the meantime, you can try these tests:**


    - Does the problem also happen with the default skin (MetrixHD or OpenATV default)?

    → If **no**, then the issue is almost certainly with the **Aglare skin** (incompatibility with your OpenATV version, missing updates, or a bug in the skin's channel change handling).


    - Update Aglare to the latest version compatible with OpenATV 8.0.


    - Temporarily disable any plugins that affect channel zapping (e.g., AutoBouquetsMaker, EPG refresh, or other channel list managers) to see if there's a conflict.


    Let me know the results, and please provide the new debug log. Then we can look deeper.


    Best regards

    Lululla added a new version:



    356653-pasted-from-clipboard-png

    pasted-from-clipboard.png


    pasted-from-clipboard.png


    LIST COMMANDS



    info:


    WE CAN ADD OTHER COMMANDS IF YOU WANT, EVEN FOR CAMs (OSCAM..),

    INSERT YOUR COMMANDS HERE AND I WILL INSERT THEM INTO THE PLUGIN.




    INSTALL FROM TELNET

    Code
    wget -q --no-check-certificate https://raw.githubusercontent.com/OwnerPlugins/CommandCenter/main/installer.sh -O - | /bin/sh

    Lululla added a new file:

    Since I have already worked on epgimporter, after years of not being updated and I see that many teams use it and everyone considers it a good base, I believe that:

    I think it would be enough to modify epgdat_importer.py

    Which is the entry point before creating the epg.dat file ;)

    You don't need to translate epg.dat; it's a binary file.

    An example of code to modify the epgdat_importer.py file to automatically translate titles, subtitles, and descriptions into English, automatically detecting the original language.



    You can add an option in the EPGImport configuration menu to enable or disable English translation, without having to manually edit the code each time.


    The addition should be made at the point where the plugin's other configurations are read, such as `filterCustomChannel`.


    Add the Menu Entry (plugin.py)


    Edit the `plugin.py` file to add the new option to the configuration menu. You can do this inside the function that builds the configuration entries list (`getConfigList`). Insert something like:


    Python
    # In plugin.py, inside the configuration entries list:
    from .EPGConfig import translateToEnglish
    # ...
    config.plugins.epgimport.translate_to_english = ConfigYesNo(default=False)
    config_list.append(
        getConfigListEntry(
            _("Translate EPG to English"),
            config.plugins.epgimport.translate_to_english
        )
    )


    The most important step: modify `epgdat_importer.py` to read this configuration and translate data only if the option is enabled. You will need to import both the translation module and the new configuration variable.




    This is just an example, not tested or anything else. Just to give you a sense of direction.



    Attached my python code translate_epg


    Lululla added a new version:

    Release v4.2.4.3

    Changes in this release


    v.4.2.4.3 (a905d04)

    • Add Other Local language (37f5856)
    • Add Other Local language (deccda8)
    • Add Other Local language (58c2121)
    • Add Other Local language (24f6a4f)
    • Add Other Local languag (6949874)
    • on boot check update (c379d12)
    • Update OpenSkinDesigner.zip (ae9f879)
    • Name skin added (5229cc1)