MediaPortal Forums HTPC/MediaCenter

Go Back   MediaPortal Forum » MediaPortal 1 » Help on Development » Quality Assurance (Bugreports) » Bugreports » 1.0 RC2 and SVN Builds


1.0 RC2 and SVN Builds Report Bugs you found in 1.0 RC2 or any later svn build here.

Reply
 
Thread Tools Display Modes
Old 2008-07-26, 07:09   #1 (permalink)
Portal Member
 
Join Date: Apr 2008
Posts: 42
Thanks: 0
Thanked 0 Times in 0 Posts

Country:


Default not able to watch Premiere 1 ... Premiere 4

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
Attached Files
File Type: zip MediaPortalLogs_26_07_08.zip (25.4 KB, 5 views)
wolfi_b is offline   Reply With Quote
Old 2008-07-30, 08:48   #2 (permalink)
Portal Member
 
Join Date: Apr 2008
Posts: 42
Thanks: 0
Thanked 0 Times in 0 Posts

Country:


Default

Das really no one hava an idea?
Are these channels working with your setup?
wolfi_b is offline   Reply With Quote
Old 2008-07-30, 11:19   #3 (permalink)
Portal Member
 
Join Date: Nov 2007
Posts: 13
Thanks: 2
Thanked 0 Times in 0 Posts

Country:


Default

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
cruse is offline   Reply With Quote
Old 2008-07-30, 12:02   #4 (permalink)
Portal Member
 
Join Date: Apr 2008
Posts: 42
Thanks: 0
Thanked 0 Times in 0 Posts

Country:


Default

"Sportportal" is also not working but this is no problem (for me).
wolfi_b is offline   Reply With Quote
Old 2008-09-10, 09:33   #5 (permalink)
Portal Member
 
Join Date: Feb 2007
Posts: 15
Thanks: 0
Thanked 0 Times in 0 Posts


Default

The same Prob here
with WinXP and FireDTV C

MediaPortalLogs_10_09_08.zip
thunder is offline   Reply With Quote
Old 2008-09-11, 03:40   #6 (permalink)
Portal Member
 
Join Date: Feb 2007
Posts: 15
Thanks: 0
Thanked 0 Times in 0 Posts


Default

Nobody there who can help?
thunder is offline   Reply With Quote
Old 2008-09-11, 10:34   #7 (permalink)
Portal Member
 
Join Date: Nov 2007
Location: Hamburg
Posts: 49
Thanks: 3
Thanked 0 Times in 0 Posts

Country:

My System

Default

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);
}
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.
justinteract is offline   Reply With Quote
Old 2008-09-12, 20:05   #8 (permalink)
Portal Member
 
Join Date: Feb 2007
Posts: 15
Thanks: 0
Thanked 0 Times in 0 Posts


Default

Have any developer read this?

Greetings
Thunder

Last edited by thunder; 2008-09-12 at 20:07. Reason: Automerged Doublepost
thunder is offline   Reply With Quote
Old 2008-09-14, 18:33   #9 (permalink)
Portal Member
 
Join Date: Feb 2007
Posts: 15
Thanks: 0
Thanked 0 Times in 0 Posts


Default

The same Problem with new SVN from today
thunder is offline   Reply With Quote
Old 2008-09-24, 19:29   #10 (permalink)
Portal User
 
Ratte613's Avatar
 
Join Date: Sep 2008
Location: Bavaria
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts

Country:

My System

Default

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.
Attached Files
File Type: zip log.zip (13.9 KB, 2 views)
Ratte613 is offline   Reply With Quote
Reply

Bookmarks

Tags
premiere, watch

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off
Forum Jump

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


All times are GMT +1. The time now is 14:13.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0 Protected by Akismet Blog with WordPress