Support for North american DM users?

  • hello
    will DMM think a little bit of NA DM community?
    here things are somewhat different on some providers, LNBs, switches, Scanning, EPG, AC3
    Some patches are required on CVS image
    you do have a NA dealer, so you should provide some support for us
    i can provide some details about what different here
    thanks a lot

  • so here are some clues:


    Im not really prfessional but, in many NA forums, there is ****na but they didnt do anything useful for NA dreambox owners
    they say CVS image should be modified to scan DN and BEV, somethink like increasing timeouts, and even AC3 need a patch
    For the epg, i dont have any idea, but DSM has an image which supports it, but almost a CVS image, very basic
    here are some what pro guys (DSM Updatelee hemispherical1) say in forums


    Zitat

    in scan.cpp you need to add these servicetypes


    128,133,137,144,145,150,154,160,163,164,166,167,168


    in specs.h change the SDT timeout to 45000


    Zitat

    By default, CVS versions of enigma recognize only service types 1 & 4 as TV services, but DN for example also uses service types 128,133,137,144,145,150,154,160,163,164,166,167, & 168 as TV...


    Zitat

    Replace line in scan.cpp

    Code
    ref.setServiceType(d.getServiceType())


    with


    Code
    if (d.getServiceType() == 128 || d.getServiceType() == 133 || d.getServiceType() == 137 || d.getServiceType() == 144 || d.getServiceType() == 145 || d.getServiceType() == 150 || d.getServiceType() == 154 || d.getServiceType() == 160 || d.getServiceType() == 163 || d.getServiceType() == 164 || d.getServiceType() == 166 || d.getServiceType() == 167 || d.getServiceType() == 168)
    					{
    						ref.setServiceType(1);
    					}
    					else
    						ref.setServiceType(d.getServiceType());


    and even ac3 audio need a patch, like that:



    Could you please add support for us?

  • Hello to DMM developers, I want first to thank you because you implement some changes to the scanning, now RC release is able to scan all DishNetwork and BellExpressView channels, with some minor issues like the channels are recognized as TV in the TV but as data in lamedb (DreamBoxEdit)


    That's because I bet you're using python to tell enigma what types are video insted of reasigning them to service type 1 upon scan like we did in pli. For that same dbedit reason.


    I updated the service types that should be recognized as Data

    133, 134, 137, 140, 145, 146, 150, 154, 160, 163, 164, 165, 166, 167, 168, 173, 174


    thanks a lot