Posts by mrvica

    in def closeAndPlay one self.close() was unnecessary, I forgot to mention that the patches are for the version 1.2

    ciefp thanks a lot for the plugin!

    I got it working on PLi 9,2 with alternative import as described in RE: CiefpYouTube

    I use MoviePlayer for playing videos, now 1,3,4,6,7,9 keys are working, just replace shortsplayer.py and extractor.py, make backup of your files

    If you have normal import you may try shortsplayer.py with movie player, just replace the file, this one I can´t test because I have alternative import, I just fixed import calls

    try different approach

    opkg install python3-gdata

    opkg install python3-youtube-dl

    source code mut be updated as well i.e.

    Code
    try:
        import yt_dlp
    except ImportError:
        import youtube_dl

    and so on many times in the code, maybe ciefp makes it both ways compatible

    not needed (at least on PLi), there is an extra parameter in setPara, auto EXIF Orientation rotation/flipping to avoid showing pictures "up side down"

    Code
    self.picload.setPara((780, 600, 1, 1, False, 1, "#000000"))


    Code
    self.picload.setPara((780, 600, 1, 1, False, 1, "#000000", 1))

    regarding proxy, you can start proxy manually with text key, that doesn`t work, work around in plugin.py

    I was browsing thru old plugins and found this, StreamBuffer, I don´t know the author nor the board I downloaded from, it seems to work, just start the stream then the plugin, the keys 1,3,4,6,7,9 work on vod, it can even pause live stream, quote by author

    I was doing debug on the console and the plugin starts the player you set up in serviceapp so no need to treat differently 4097, 5002, I was able to find the original plugin.py from 2017 and I put it in the zip


    yes, it is possible, may not work on every box, you can adjust hotkey in keymap.xml (default help key), does this work on your box?

    Bash
    #!/bin/sh
    
    # /usr/script/Picture_reduce2.sh
    echo 5a > /proc/stb/vmpeg/0/dst_left
    echo 21c > /proc/stb/vmpeg/0/dst_width
    echo 0 > /proc/stb/vmpeg/0/dst_apply

    and the plugin

    Can you add a function that automatically loads the information when the plugin starts, without having to press ‘Auto EPG every time

    I´ve integrated it for myself, useful If you start the plugin with hotkey, furthermore with CH+/CH- you can switch channels inside the plugin with automatically loading infornations you can start the plugin from channel selection menu as well (just press Menu key in channel selection), if ciefp doesn´t mind I can upload plugin.py, I just make suggestions, idea just occured to me, I don´t mean to belittle his work

    good idea, besides starting from the plugin browser to start it from channel selection context menu

    Code
    where=PluginDescriptor.WHERE_CHANNEL_CONTEXT_MENU

    the title is there up more higher so you can´t see it, if you don´t define the title and border graphics (flags="wfNoBorder") the center, center is ok (for full hd screen), if you want the title as well you have to leave the space for it as I suggested here RE: CiefpTMDBSearch , with smaller screens there is no problem, the title will fit (like in settings screen), by the way you can try an option position="fill", you don´t need position and size then

    what would be really good, when you search for movies and you input "term" you get a choicebox with "terminator", "Terminator 2", "Terminator: Genisys", "Terminator 3"... just like on the web site

    on PLi 8.3 python 2, enigma2 does not restart. I got this on the console

    I get no coutries list, "Error loading countries" or on categories "No channels in this category

    for python2 more likely this, beside that there are still bunch of errors for py2

    Python
    # from urllib.request import urlopen, Request
    from six.moves.urllib.request import urlopen, Request