Beiträge von ims

    DM800SE , .mvi logo. You can download here . Same .mvi logo tried on non dmm boxes with same E2 and works well. Due dmm boxes is reduced size and quality, but still is not whole displayed.

    Ok, when is problem there in showiframe.c, why on all non dmm's boxes with same showiframe is bootlogo ok and on dmm boxes is with this same showiframe this same bootlogo at bottom cutted ?

    1) why dmm's drivers limiting bootlogo size ? When is picture bigger (with better quality), then missing picture bottom on screen and there is then black row only.


    2) Similar problem is with kernel size - when is kernel bigger than some "magic limit", then box does not boot.


    EDIT: excuse, problem was not on dmm side...

    time to time box (800se) does not respond, but program continue. Telnet works, dmesg:


    problem in kernel or driver ?

    I have same question too. Why is not HDMI-CEC ( SimpLink, Viera Link, Anynet+, Bravia Sync) support in drivers still ?
    Can somebody from DMM tell - Yes, will be or NO, will not be ?

    It seems, there in drivers for DM800SE is cosmetic bug. When is used stopService(), then is not cleared the framebuffer => there is still last picture frame and not black. May be, it is especialy, when is after stopService() used resize of desktop from HD to SD.


    If i want clear framebuffer, i must make:


    ref = self.session.nav.getCurrentlyPlayingServiceReference()
    self.session.nav.stopService()
    self.session.nav.playService(ref)
    self.session.nav.stopService()



    It seems, this bug is on DM800SE only,

    I am using VLC 1.11


    Problem must be there in VLCServer and your setting:


    Code
    if re.match("dvd", filename):
    # sout-all only, if is not selected subtitle track or subtitle language
    if self.gettypeSubtitles()=="---" or self.gettypeSubtitles()=="-1": 
    parameters += " :sout-all"
    else:
    parameters += " :sout-all"


    See on it: parameter " :sout-all" add into stream all subtitles in same time.
    I think, you:
    1) you streaming grabed DVD
    2) you leave set subtitles as none or as -1


    Try comment this whole test:

    Code
    #if re.match("dvd", filename):
    # sout-all only, if is not selected subtitle track or subtitle language
      # if self.gettypeSubtitles()=="---" or self.gettypeSubtitles()=="-1": 
      #  parameters += " :sout-all"
    #else:
      #  parameters += " :sout-all"


    save and restart gui and let me know.
    But in this cases will not be streaming more audio track.


    VLC does not know streaming all audio tracks and one selected subtitle track, but only selected audio and selected track or all tracks ( :sout-all )


    may be, for testing will be more easy change only lines: parameters += " :sout-all" to parameters += ""

    dir you use all 4 files and you restart gui ? If are all subtitles streamed, it seems , it works, but some is wrong selected. I will see on it...

    Do you have problem with streamed DVD subtitles ?


    I am using VLC Player plugin long time ago ... I think, for DVD subtitles must be set Transcoding MPEG/DVD Video and selected true Track/Language for Subtitles. VLC will be then streaming only one subtitle track.