MediaPortal Forums HTPC/MediaCenter

Go Back   MediaPortal Forum » MediaPortal 1 » Main Features (talk, share your ideas, get support) » Watch / Listen Media » MyTV - Engine 0.2


MyTV - Engine 0.2 General talk, support, improvement suggestions and tips & tricks

Reply
 
Thread Tools Display Modes
Old 2006-12-16, 23:53   #1 (permalink)
Portal Member
 
Join Date: Dec 2006
Location: Alberta
Posts: 74
Thanks: 0
Thanked 0 Times in 0 Posts

Country:


Default TV Guide and number of entries

Hey,

I've got a widescreen 32" TV and when viewing TV guide I have hard time reading TV guide due to the fact that it displays schedule for 11 channels at a time. Is it possible to change the number of channels it displays to, let's say, 6-7, and make TV guide use bigger fonts for the schedule? Is this a functionality of a skin or MP itself?

Also, the color scheme of the guide.. I saw a post here that someone hacked the code and posted source for two classes that allow a user to specify colors, but this requires for the source to be compiled, which I wouldn't want to do. So, is this functionality already in the main build or is planned to be added to it? I've got 0.2.1.0 and couldn't find a way to do that.

If this is not in the build and dev group is not planning on it, then what's the criteria to become an MP developer?
Shurik is offline   Reply With Quote
Old 2006-12-17, 09:48   #2 (permalink)
Portal Member
 
Join Date: Sep 2005
Posts: 555
Thanks: 0
Thanked 1 Time in 1 Post


Default

In the same cathegory:
I would suggest to skin-designers (or whoever decides this) that the EPG is made not to "wrap around". Currently, if I have 4 channels, those will be displayed as many times needed to fill the static list length.

To me, allowing the total list length to shrink with channel count would be better.

regards
Knut
knutinh is offline   Reply With Quote
Old 2006-12-17, 10:00   #3 (permalink)
Portal Member
 
Join Date: Dec 2005
Location: Linköping, Sweden
Posts: 125
Thanks: 3
Thanked 0 Times in 0 Posts

Country:

My System

Default

I have the same problem as Shurik. I have a 32" LCD widescreen and the EPG is often way to small.

From my point the best development would be an option in the configuration EPG area. There you could be able to specify the amount of channels to show in the TV GUIDE PANEL thus affecting Channel template, Channel image template etc... But also the font size used.

Ofc you can hack the skin files used every time but it feels cumbersome...

Well, a small request anyhow...
J-B-N is offline   Reply With Quote
Old 2006-12-17, 10:33   #4 (permalink)
Portal Tester
 
Join Date: Feb 2005
Location: Melbourne
Posts: 1,888
Thanks: 4
Thanked 13 Times in 13 Posts

Country:

My System

Default

Since this thread does not contain a working "Tips & Tricks", I have moved it to "General".
Taipan is online now   Reply With Quote
Old 2006-12-17, 10:36   #5 (permalink)
Portal Tester
 
Join Date: Feb 2005
Location: Melbourne
Posts: 1,888
Thanks: 4
Thanked 13 Times in 13 Posts

Country:

My System

Default

There is a way to reduce the number of displayed channels, but you have to edit the skin files to display the correct number of channels. Here are some instructions that Boilermaker gave me that work fine:-

Look for this code in the mytvguide.xml file, and play with the values marked below...I just used trial and error to get a nice fit.

Code:
<control> 
<description>Channel template</description> 
<type>image</type> 
<id>20</id> 
<posX>60</posX> 
<posY>125</posY> 
<width>136</width> 
<height>36</height> <-----[change this to like 40 to start, and see what happens, keep raising it til you get a good fit] 
</control> 
<control> 
<description>Channel image template</description> 
<type>image</type> 
<id>7</id> 
<posX>1</posX> 
<posY>1</posY> 
<width>32</width> <---[change this to fit better] 
<height>32</height> <---[change this to fit better] 
<keepaspectratio>yes</keepaspectratio> 
<centered>yes</centered> 
<zoom>no</zoom> 
<texture>defaultVideoBig.png</texture> 
</control>
at some point you will make the height in the channel template just high enough that only 5 will display, then take it back one...if you end up with an unbearably large and ugly gap to your bottom scroll bar, here is where to change it:

Code:
<control> 
<description>Horizontal scrollbar</description> 
<type>hscrollbar</type> 
<id>28</id> 
<posX>196</posX> 
<posY>481</posY> <--[change the y position til looks good, remember how much you moved it up] 
<width>1002</width> 
<height>20</height> 
<visible>yes</visible> 
</control> 
you need to remember how much it moved, because you need to reduce the size of the scrollbar on the right by the same amount 
<control> 
<description>Vertical scrollbar</description> 
<type>vscrollbar</type> 
<id>29</id> 
<posX>1200</posX> 
<posY>125</posY> 
<width>20</width> 
<height>357</height> <---[reduce the height to match above] 
<visible>yes</visible> 
</control>
HTH...
Taipan is online now   Reply With Quote
Old 2006-12-17, 19:15   #6 (permalink)
Portal Member
 
Join Date: Dec 2006
Location: Alberta
Posts: 74
Thanks: 0
Thanked 0 Times in 0 Posts

Country:


Default

Thanks for replies, guys.. This kind of hacking is possible, but will it actually change the font size? I will try it later on.. However I'd really like this to be configurable via some UI in the setup window - way easier to use that way. Will this be possible or current software design does not allow that? This may not be possible if these params should be defined by a skin...

Also, guide colors.. Default colors sometimes totally unreadable, so this also needs to be moved into a configurable module.

Also agree that the problem described by knutinh is very annoying - I have a channel group with few channels and they get repeated, which is quite lame, imho.

So, is there any way I can contribute if there are no plans to implement this, the I can try to find some time and code it myself. Any thoughts about this, dev?
Shurik is offline   Reply With Quote
Old 2006-12-17, 21:42   #7 (permalink)
Portal Tester
 
Join Date: Feb 2005
Location: Melbourne
Posts: 1,888
Thanks: 4
Thanked 13 Times in 13 Posts

Country:

My System

Default

Quote:
Originally Posted by Shurik View Post
This kind of hacking is possible, but will it actually change the font size?
What I have suggested above will not change the font size, but once you make those changes, it is very easy to change the font size for the EPG - it is all done in the skin xml files. I can give you some hints , if that will help?

Quote:
Originally Posted by Shurik View Post
However I'd really like this to be configurable via some UI in the setup window ?
Boilermaker has already done this with his "mce 720p" skin and it works very well - you might want to try it to see if it satisfies your needs.

Quote:
Originally Posted by Shurik View Post
Also, guide colors.. Default colors sometimes totally unreadable, so this also needs to be moved into a configurable module.?
Again, you can change the guide colours in the skin - I assume you are referring to the backgrounds, in which case you have to change the actual graphics (the .png files in the Media folder).

Quote:
Originally Posted by Shurik View Post
Also agree that the problem described by knutinh is very annoying - I have a channel group with few channels and they get repeated, which is quite lame, imho.?
I can't help you with this one - I think that would require a coding change?

Quote:
Originally Posted by Shurik View Post
So, is there any way I can contribute ?
Yes, there are ways you can contribute and your contributions would be very welcome ...
Taipan is online now   Reply With Quote
Old 2006-12-18, 06:01   #8 (permalink)
Portal Member
 
Join Date: Dec 2006
Location: Alberta
Posts: 74
Thanks: 0
Thanked 0 Times in 0 Posts

Country:


Default

Quote:
Originally Posted by Taipan View Post
What I have suggested above will not change the font size, but once you make those changes, it is very easy to change the font size for the EPG - it is all done in the skin xml files. I can give you some hints , if that will help?
I will try the skin you're referring to below and then will get back to you with further questions, if you don't mind...

Quote:
Originally Posted by Taipan View Post
Boilermaker has already done this with his "mce 720p" skin and it works very well - you might want to try it to see if it satisfies your needs.
Will try it...

Quote:
Originally Posted by Taipan View Post
Again, you can change the guide colours in the skin - I assume you are referring to the backgrounds, in which case you have to change the actual graphics (the .png files in the Media folder).
So, the colors are not the colors but images? Wow... Strange design decision... Would be interesting to know the reasons..

Quote:
Originally Posted by Shurik View Post
Also agree that the problem described by knutinh is very annoying - I have a channel group with few channels and they get repeated, which is quite lame, imho.?
Quote:
Originally Posted by Taipan View Post
I can't help you with this one - I think that would require a coding change?
Well, then the code would need to be changed.. I would consider this to be a bug, not a feature limitation and this should be addressed.

Quote:
Originally Posted by Taipan View Post
Yes, there are ways you can contribute and your contributions would be very welcome ...
I guess I need to read the "contribute" section of the manual..
Shurik is offline   Reply With Quote
Old 2006-12-18, 11:24   #9 (permalink)
Portal Member
 
Join Date: Sep 2005
Posts: 555
Thanks: 0
Thanked 1 Time in 1 Post


Default

I think that the general tone towards people spending their free time coding an application free for my and your use should be positive.

Programmers tend to dislike any comments about their work as being "lame" - but when they are paid big bucks they may be able to ignore it.

And any frustration I and you may have over bugs/features/whatever should be filtered by the "conversion from frustration to positive enhancement suggestions" routine :-)

-k
knutinh is offline   Reply With Quote
Old 2006-12-20, 03:18   #10 (permalink)
Portal Member
 
Join Date: Dec 2006
Location: Alberta
Posts: 74
Thanks: 0
Thanked 0 Times in 0 Posts

Country:


Default

Well, I am a developer myself.. Maybe what's some of those posts miss is tone, so someone may take it in a wrong way.. But I support my comment that had "lame" in it - this is an obvious bug and I am surprised that it wasn't addressed... But I am happy to help out to address some of the issues here..
Shurik is offline   Reply With Quote
Reply

Bookmarks

Tags
entries, guide, number

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
EPG guide for Ireland, using NTL timmfive WebEPG 4 2006-07-26 01:34
When I press 122, guide & channel change to 244 Topher5000 General Support 7 2006-05-29 14:38
WebEPG guide for US James WebEPG 14 2006-03-25 21:16
[Patch] Numeric channel selection by index or channel number CodeMonkey General Development (no feature request here!) 0 2006-01-02 15:32
Quick Guide to Using Hebrew with MP 0.1.2.0 Anonymous Tips and Tricks 20 2005-07-17 15:37


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


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