not able to watch Premiere 1 ... Premiere 4 (1 Viewer)

wolfi_b

MP Donator
  • Premium Supporter
  • April 10, 2008
    799
    38
    Home Country
    Austria Austria
    TV-Server Version: MP1.0 RC2
    MediaPortal Version: MP1.0 RC2
    MediaPortal Skin: blue two-wide
    Windows Version: XP SP3 (32bit)
    CPU Type: AMD BE-2400
    HDD: Samsung SpinPoint HD501LJ 500GB
    Memory: 2GB DDR2-800
    Motherboard: Gigabyte GA-MA780GM-S2H
    Video Card: onboard Radeon HD 3200
    Video Card Driver: Catalyst 8.5
    Sound Card: onboard
    Sound Card AC3: coaxial out and optical out
    Sound Card Driver:
    1. TV Card: Digital Everywhere FloppyDTV S2
    1. TV Card Type: DVB-S2
    1. TV Card Driver: BDA 4.5.N
    2. TV Card:
    2. TV Card Type:
    2. TV Card Driver:
    3. TV Card:
    3. TV Card Type:
    3. TV Card Driver:
    4. TV Card:
    4. TV Card Type:
    4. TV Card Driver:
    MPEG2 Video Codec: Cyberlink PowerDVD 7.3
    MPEG2 Audio Codec: Cyberlink PowerDVD 7.3
    h.264 Video Codec: Cyberlink PowerDVD 7.3
    Satelite/CableTV Provider: Astra 19.2°E
    HTPC Case:
    Cooling:
    Power Supply:
    Remote: Windows MCE V2
    TV: Toshiba 37Z3030D
    TV - HTPC Connection: HDMI

    Hi,

    I am not able to watch Premiere 1 ... Premiere 4 with RC2 (same Problem with RC1) but all other Premiere Channels are working. I always get the message "channel is scrambled". Interestingly i can watch these channels with the FireDTV Viewer!
    What could be the reason?

    thanks
     

    wolfi_b

    MP Donator
  • Premium Supporter
  • April 10, 2008
    799
    38
    Home Country
    Austria Austria
    Das really no one hava an idea?
    Are these channels working with your setup?
     

    wolfi_b

    MP Donator
  • Premium Supporter
  • April 10, 2008
    799
    38
    Home Country
    Austria Austria
    "Sportportal" is also not working but this is no problem (for me).:p
     

    justinteract

    Member
    November 8, 2007
    95
    13
    Hamburg
    Home Country
    Germany Germany
    There are actually two problems with MP and Premiere (encrypted channels in general).
    A) the code that compares the FTA flag from the database and the scrambled flag from the parser is wrong.
    B) The FTA flag is not set correct in the database.

    Both problems occur because the scrambled identification of MP does not work reliable for Premiere

    On B) you can check if all the Premiere channels show up in TvChannel in red. The sportportal option channels are wrongly recognized as FTA and show up in green. To correct this you can set the FTA flag to false in the DB to correct this. You need to change "freeToAir" in Channel AND TuningDetail.

    It may work after, if it still doesn't work then its because of A). To fix this you need change MP code (or find a developer to do this ;))
    The problem is in
    class TvDvbChannel
    protected bool SendPmtToCam(out bool updatePids)
    Line:
    if (_channelInfo.scrambled = channel.FreeToAir) :oops:

    this of course should be
    if (_channelInfo.scrambled == channel.FreeToAir)

    In our code we changed this to
    Code:
    if (_channelInfo.scrambled == channel.FreeToAir)
    {
    	// XXX JIT we use the FreeToAir setting as reference now and set the _channelInfo.scrambled accordingly
    	_channelInfo.scrambled = !channel.FreeToAir;
    	Log.Log.WriteFile("TvDvbChannel.SendPmtToCam() corrected setting _channelInfo.scrambled {0} , channel.FreeToAir {1}", _channelInfo.scrambled, channel.FreeToAir);
    }

    so that the FTA setting from the DB is the reference and the unreliable "scrambled" flag is adjusted if they mismatch.
    We also patched the scanning so that Premiere option channels are recognized as scrambled.
    Code:
    if (dvbsChannel.NetworkId == 133 && dvbsChannel.Name.StartsWith("Unknown")) {
    	Log.Log.Write("JIT: set PREMIERE subchannel FTA to false for logChannelNumber {0}", dvbsChannel.LogicalChannelNumber);
    	dvbsChannel.FreeToAir = false;
    }

    If a developer reads this: it would be nice to find out why for some premiere channels freeCAMode is not set correct. I volunteer to test, since I have all Premiere channels available, please contact me direct.
     

    Ratte613

    New Member
    September 24, 2008
    4
    0
    Bavaria
    Home Country
    Germany Germany
    I've got the same problem: all Premiere channels are working except Premiere 1 to Premiere 4 and Sportportal.

    I tried the above mentioned code changes: downloaded all the source-code, added the changes, compiled and builded a new setup for the tvservice.

    The result is still the same: I'm not able to watch these five channels.
    But there's a change with this FTA flag: all unknown channels are now marked red instead of green which should mean that these channels are recognized as scrambled.
     

    Users who are viewing this thread

    Top Bottom