Movie Browser Plugin

There are 194 replies in this Thread which was already clicked 42,024 times. The last Post () by Mahmoud Hussein.

  • Hi,


    Where could i find missing pics in plugin, looking in xml skin files there's a lot missing (main2.png, pC.png,overlay-mx.png...etc)

    Code
    <ePixmap position="0,0" size="1500,1080" pixmap="/usr/lib/enigma2/python/Plugins/Extensions/MovieBrowser/skin/fhd/pic/setup/main2.png" zPosition="-2" />
    
    <ePixmap position="1500,0" size="420,1080" pixmap="usr/lib/enigma2/python/Plugins/Extensions/MovieBrowser/skin/fhd/pic/setup/pC.png" zPosition="-1" />
    
    <ePixmap pixmap="/usr/lib/enigma2/python/Plugins/Extensions/MovieBrowser/skin/fhd/pic/setup/overlay-mx.png" position="0,0" size="1920,1080" zPosition="-2" />

    The skin doesn't look like the one's in Belfagor2005 github (missing pics too in skin directory)


    1709.jpg


    If someone could upload missing pics


    Regards

  • Hi, I now updated my GigaBlue UHD 4K UE to OpenVix 6.4.009 and installed the latest Moviebrowser above. On start it asked for settings and all went well. As soon the plugin started updating the database the box get frozen. It freezes on each Movibrowser launch. Could you please help as this is the only plugin I use for movie selection.


    TV in background still run, but GUI is frozen


    If I delete the DB, then the plugin restarts asking to restore the database. Could this be a API issue?

    Edited 2 times, last by Relaxibus: some test ().

  • Hi,


    The last fix about Director is not relevant it's the Writer which is extracted


    Code
    director = re.findall('"known_for_department":"Writing","name":"(.*?)"', output)  # director fixed

    The real director is under the tag "job":"Director"

    Code
    "known_for_department":"Directing",
    "name":"Paul Verhoeven",
    "original_name":"Paul Verhoeven",
    "popularity":5.461,
    "profile_path":"/wxkroRBtM6NKZdx9sYLFfFSGnaR.jpg",
    "credit_id":"52fe4253c3a36847f801552f",
    "department":"Directing",
    "job":"Director"},

    Paul Verhoeven in this case


    Thanks to all those who helped resurrect this great plugin, there's really not much missing and I hope a coding specialist will come along to build a perfect media library.


    Regards

  • Paul Verhoeven in this case


    Thanks to all those who helped resurrect this great plugin, there's really not much missing and I hope a coding specialist will come along to build a perfect media library.


    Regards

    Yeah, if some one could also resolve my issue of plugin lockup as described above, this would be great. I look at EMC also, but I can not see where EMC is better than MovieBrowser. It looks horrible!!

  • Small contribution , sometimes director in shows gives <EpImgFlag> as result so change this part to match the first matching director 's name


    Code
    director = re.findall('<Director>[|](.*?)[|]', output)
                    if not director:
                        director = re.findall('<Director>(.*?)[|]', output)
                        if not director:
                            director = re.findall('<Director>(.*?)</Director>', output)

    to


    Code
    director = re.findall('<Director>[|](.*?)[|]</Director>', output)
                    if not director:
                        director = re.findall('<Director>(.*?)[|]', output)
                        if not director:
                            director = re.findall('<Director>[|](.*?)[|]', output)
  • Thanks biko,

    i know that, but i use my media also for embyserwer and that's not work if i mix movie and series in on folder


    Regards

    Daniel

Participate now!

Don’t have an account yet? Register yourself now and be a part of our community!