| |||||||
| 1.0 RC2 and SVN Builds Report Bugs you found in 1.0 RC2 or any later svn build here. |
![]() |
| | Thread Tools | Display Modes |
| | #1 (permalink) |
| Portal Member Join Date: Apr 2008
Posts: 42
Thanks: 0
Thanked 0 Times in 0 Posts
Country: | 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 |
| | |
| |
| | #3 (permalink) |
| Portal Member Join Date: Nov 2007
Posts: 13
Thanks: 2
Thanked 0 Times in 0 Posts
Country: | Got the same problem with PREMIERE 1-4 & SPORTPORTAL Does SPORTPORTAL work for you? Posted logs in this thread Only some channels get decrypted: TechnoTrend CI / CAM Issue |
| | |
| | #7 (permalink) |
| Portal Member Join Date: Nov 2007 Location: Hamburg
Posts: 49
Thanks: 3
Thanked 0 Times in 0 Posts
Country: | 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) ![]() 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);
}
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;
}
|
| | |
| | #10 (permalink) |
| Portal User Join Date: Sep 2008 Location: Bavaria
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Country: | 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. |
| | |
![]() |
| Bookmarks |
| Tags |
| premiere, watch |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Premiere Umstellung | Daro | Media Portal - Allgemeines | 8 | 2008-07-25 07:49 |
| Premiere Jugendschutz | Daro | Media Portal - Support | 2 | 2008-04-23 09:54 |
| Premiere HD nur mit original Premiere-CI ! | jobiwan | Media Portal - Allgemeines | 31 | 2008-04-16 17:54 |
| Optionskanäle Premiere | Daro | Media Portal - Allgemeines | 9 | 2007-12-15 08:40 |
| premiere optionskanäle | ashopedies | Media Portal - Support | 6 | 2007-08-05 01:00 |