MediaPortal Forums HTPC/MediaCenter

Go Back   MediaPortal Forum » MediaPortal 1 » MediaPortal 1 Talk


MediaPortal 1 Talk General talk regarding our HTPC-software MediaPortal 1 takes place here.

Reply
 
Thread Tools Display Modes
Old 2008-06-13, 08:11   #1531 (permalink)
Portal Member
 
Join Date: Mar 2008
Location: Auckland, NZ
Posts: 36
Thanks: 10
Thanked 0 Times in 0 Posts

Country:

My System

Default

Quote:
Originally Posted by RedeviL View Post
Quote:
Originally Posted by DrMopar View Post
Since getting MP up and running I get duplicated programme description information from the DVB-S EPG. It seems like the description is repeated. Is everyone else getting this too? Is there a fix?

Thanks
I also get this, haven't investigated it as I've been concentrating on getting PowerDVD to intergrate.
I was going to log a bug report but I haven't found any reference to it in non NZ posts so I guess maybe its something to do with the way they're transmitting the EPG here and not an issue with MP.
DrMopar is offline   Reply With Quote
Old 2008-06-13, 08:15   #1532 (permalink)
Portal Member
 
Join Date: Mar 2006
Posts: 44
Thanks: 0
Thanked 0 Times in 0 Posts


Default

Quote:
Originally Posted by DrMopar View Post
Quote:
Originally Posted by RedeviL View Post
Quote:
Originally Posted by DrMopar View Post
Since getting MP up and running I get duplicated programme description information from the DVB-S EPG. It seems like the description is repeated. Is everyone else getting this too? Is there a fix?

Thanks
I also get this, haven't investigated it as I've been concentrating on getting PowerDVD to intergrate.
I was going to log a bug report but I haven't found any reference to it in non NZ posts so I guess maybe its something to do with the way they're transmitting the EPG here and not an issue with MP.
I also get in with DVB-T in MP, but not in Powercinema.
fraseyboy is offline   Reply With Quote
Old 2008-06-13, 09:13   #1533 (permalink)
Portal Member
 
mcraenz's Avatar
 
Join Date: Jul 2007
Location: Auckland
Posts: 481
Thanks: 2
Thanked 17 Times in 15 Posts

Country:

My System

Default

Quote:
I was going to log a bug report but I haven't found any reference to it in non NZ posts
You might log it as a bug report anyway, MediaPortal should detect and correct these sorts of problems :-)
__________________
Intel DP35DP / c2d E8400 (3.0Ghz) / NVIDIA 8600GT / 4GB DDR800 / HVR-2200 / SkyStar 2 / Techotrend S1500+CI / PVR-150

New Zealander's don't forget to check out the NZ Wiki Page
mcraenz is offline   Reply With Quote
Old 2008-06-13, 09:16   #1534 (permalink)
Portal Member
 
Join Date: May 2007
Location: Lyttelton
Age: 61
Posts: 43
Thanks: 1
Thanked 1 Time in 1 Post

Country:

My System

Default

Yes, I get this too. I didn't report it as it seemed minor. I did a little twiddle to EPGDBUpdater.cs which removes any duplication before inserting the result in the database.
__________________
-Ken
ArnoldGoat is offline   Reply With Quote
Old 2008-06-13, 09:58   #1535 (permalink)
Portal Member
 
Join Date: Mar 2008
Location: Auckland, NZ
Posts: 36
Thanks: 10
Thanked 0 Times in 0 Posts

Country:

My System

Default

Quote:
Originally Posted by ArnoldGoat View Post
Yes, I get this too. I didn't report it as it seemed minor. I did a little twiddle to EPGDBUpdater.cs which removes any duplication before inserting the result in the database.
Is this a code level "twiddle" or something in the settings?
DrMopar is offline   Reply With Quote
Old 2008-06-13, 10:25   #1536 (permalink)
Portal Member
 
mcraenz's Avatar
 
Join Date: Jul 2007
Location: Auckland
Posts: 481
Thanks: 2
Thanked 17 Times in 15 Posts

Country:

My System

Default

Quote:
I did a little twiddle to EPGDBUpdater.cs
Why not submit it as a patch on source forge?
__________________
Intel DP35DP / c2d E8400 (3.0Ghz) / NVIDIA 8600GT / 4GB DDR800 / HVR-2200 / SkyStar 2 / Techotrend S1500+CI / PVR-150

New Zealander's don't forget to check out the NZ Wiki Page
mcraenz is offline   Reply With Quote
Old 2008-06-13, 10:28   #1537 (permalink)
Portal Member
 
Join Date: May 2007
Location: Lyttelton
Age: 61
Posts: 43
Thanks: 1
Thanked 1 Time in 1 Post

Country:

My System

Default

It's in the code. The problem is that you're then stuck with re-building MP Server after downloading an update to incorporate the change. The fix is a real bodge, so I wouldn't insult the developers by asking them to include it. The only real solution is to report it, with all that that entails with logs and so forth. Here's the bodge up, if you are into that sort of thing:

C:\MediaPortalServer\TVLibrary\TVDatabase\TvBusine ssLayer\EpgDBUpdater.cs

around line 344 in version 18513

description=EvalTemplate(_descriptionTemplate, values);
int len=description.Length;
if (len > 1)
{
string rightD = description.Substring(len / 2, len / 2);
string leftD = description.Substring(0, len / 2);
if (leftD.Equals(rightD))
description = description.Remove(len/2);
}

I can't say I'm proud of the code, but it works, and might survive any other solution that appears.
__________________
-Ken
ArnoldGoat is offline   Reply With Quote
This User Say Thank You:
Old 2008-06-13, 11:09   #1538 (permalink)
Portal Member
 
Join Date: Mar 2008
Location: Auckland, NZ
Posts: 36
Thanks: 10
Thanked 0 Times in 0 Posts

Country:

My System

Default

Quote:
Originally Posted by ArnoldGoat View Post
It's in the code. The problem is that you're then stuck with re-building MP Server after downloading an update to incorporate the change. The fix is a real bodge, so I wouldn't insult the developers by asking them to include it. The only real solution is to report it, with all that that entails with logs and so forth. Here's the bodge up, if you are into that sort of thing:

C:\MediaPortalServer\TVLibrary\TVDatabase\TvBusine ssLayer\EpgDBUpdater.cs

around line 344 in version 18513

description=EvalTemplate(_descriptionTemplate, values);
int len=description.Length;
if (len > 1)
{
string rightD = description.Substring(len / 2, len / 2);
string leftD = description.Substring(0, len / 2);
if (leftD.Equals(rightD))
description = description.Remove(len/2);
}

I can't say I'm proud of the code, but it works, and might survive any other solution that appears.
Hey, looks like a good bit of logic to me.

Can anyone point me to the right place to lodge this bug with the MP gurus? I'm happy to go through the process of submitting logs etc. but just can't see where on the site I'm meant to do this.
DrMopar is offline   Reply With Quote
Old 2008-06-13, 12:16   #1539 (permalink)
Portal Member
 
Join Date: Jun 2006
Location: Wellington
Posts: 162
Thanks: 1
Thanked 4 Times in 4 Posts

Country:


Default

Does anyone use a standard Sky disk to get Optus D2? Currently, I only record from Optus D1, but apparently D2 can also be received on the other LNB (I have a dual LNB dish). I wondered if anyone was doing that and if so, how do you get TVE3 to send the correct voltage (or tone?) to engage the second LNB.

Cheers Mike
mruane is offline   Reply With Quote
Old 2008-06-13, 13:04   #1540 (permalink)
Portal Member
 
mcraenz's Avatar
 
Join Date: Jul 2007
Location: Auckland
Posts: 481
Thanks: 2
Thanked 17 Times in 15 Posts

Country:

My System

Default

Quote:
I can't say I'm proud of the code, but it works, and might survive any other solution that appears.
Hey it looks like a fine solution to me. Only better I could think of is if the description is actually transmitted twice at 2 discrete "packets" in which case it would be better to fix when the EPG is grabbed. but "6 of 1 half a dozen of the other" I'd say go a head and submit it.

Quote:
Can anyone point me to the right place to lodge this bug
1.0 RC1 and SVN Builds - MediaPortal Forum

Quote:
Does anyone use a standard Sky disk to get Optus D2?
No but I've always wondered how this might work, I've not got a dual LNB so can't try it, I think these LNBs use 22Khz to switch, whereas TVServer provides 22Khz switch for a single LNB with 2 LOFs. so try setting both LOFs the same in TV Server and setting the switch to 0, that way TVServer will always send the 22khz, now try to scan D2. It's a long shot, but it might just work, if it does then a patch to switch LNBs shouldn't be too hard and I'd be happy to give it a go.
__________________
Intel DP35DP / c2d E8400 (3.0Ghz) / NVIDIA 8600GT / 4GB DDR800 / HVR-2200 / SkyStar 2 / Techotrend S1500+CI / PVR-150

New Zealander's don't forget to check out the NZ Wiki Page
mcraenz is offline   Reply With Quote
This User Say Thank You:
Reply

Bookmarks

Tags
calling, zealanders

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

Similar Threads
Thread Thread Starter Forum Replies Last Post
Calling an external string? Help needed for newbie m.standish General Development (no feature request here!) 1 2006-11-27 16:45
Calling UK DVB-T Freeview users psyco Get Support 15 2006-11-07 17:21
Calling LC11 users for advice robomonkey Hardware Selection Help 29 2005-08-16 13:27
Calling ATI Sapphire 9550SE owners Czar63 Hardware Selection Help 1 2005-02-23 00:44
Calling g_Player.Play from timer elapsed event not working devo General Development (no feature request here!) 7 2004-09-12 00:31


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


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
Advertisement System V2.6 By   Branden