NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public Add-ons (3rd party plugins, utilities and skins) Old Stuff (Legacy) GB-PVR Support (legacy) v
« Previous 1 … 894 895 896 897 898 … 1231 Next »
LiveTv EPG Details

 
  • 0 Vote(s) - 0 Average
LiveTv EPG Details
Here's Jonny
Offline

Member

Posts: 103
Threads: 31
Joined: May 2005
#1
2006-01-08, 10:19 PM
When viewing LiveTv the details that are overlayed on to the screen shows the channel name and number, it's icon and the EPG data.

Not all the EPG data is shown. Some of it is cut of..

It's as if the Overlay needs to be an inch taller or the font a bit smaller.

Anything I can do about it ?

Thanks
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,723
Threads: 767
Joined: Nov 2003
#2
2006-01-08, 11:28 PM
Most video card drivers have options to allow you to adjust the overscan of the tv out.
psycik
Offline

Posting Freak

Posts: 5,210
Threads: 424
Joined: Sep 2005
#3
2006-01-08, 11:32 PM
he may also mean that he's got too large of a description for the OSD box.

You can edit the skin.xml in the skinname/OSD directory there are two entries you might want the livepreview and timeshift.

I have done it, but my display is almost half the page.
Here's Jonny
Offline

Member

Posts: 103
Threads: 31
Joined: May 2005
#4
2006-01-09, 06:28 PM
I think it is the description that is larger than the box.
I'll have a look and see what can be done Smile

Thanks
Here's Jonny
Offline

Member

Posts: 103
Threads: 31
Joined: May 2005
#5
2006-01-09, 06:48 PM
Can you point me in the right direction on what to change to increase the amount of description that can be shown !
psycik
Offline

Posting Freak

Posts: 5,210
Threads: 424
Joined: Sep 2005
#6
2006-01-09, 07:10 PM
Here is my one. Remember it's for BlueMCE2 but it's the sizes of these sections you want to look at:
Code:
<CompositeImage name="VideoPlayback" size="720,480">
    <DrawImage filename="..\resources\background_osd.png" loc="0,300" size="720,180"/>        
    <DrawText text="@currentVideoTitle" loc="30,310" size="680,30" textStyle="OSDTextTitle" align="Left" visible="true"/>                                    
    <DrawText text="@description" loc="30,337" size="660,150" textStyle="OSDText" align="Left"/>                                    
    <DrawText text="@time" loc="500,310" size="190,30" textStyle="OSDText" align="Right"/>                                                
    <!-- timeline -->
    <DrawImage filename="..\resources\background_osd.png" loc="0,0" size="720,70"/>                            
    <DrawText text="@positionText" loc="110,37" size="100,30" textStyle="OSDText" align="Left" visible="true"/>            
    <DrawText text="@durationText" loc="530,37" size="100,30" textStyle="OSDText" align="Left" visible="true"/>            
    <Element name="timelineGraphic" loc="200,40" size="320,120" />
    <DrawText text="@subtitlesEnabled" loc="350,5" size="350,30" textStyle="OSDText" align="Right" visible="true"/>    
</CompositeImage>

<CompositeImage name="Timeshift" size="720,480">
    <DrawImage filename="..\resources\background_osd.png" loc="0,300" size="720,120"/>
    <DrawImage filename="@channelIcon" loc="625,334" size="60,45" visible="true"/>            
    <DrawText text="@title" loc="30,310" size="500,30" textStyle="OSDTextTitle" align="Left"/>                                    
    <DrawText text="@description" loc="30,337" size="600,150" textStyle="OSDText" align="Left"/>                                    
    <DrawText text="@time" loc="500,310" size="190,30" textStyle="OSDText" align="Right"/>                                                
    <!-- timeline -->
    <DrawImage filename="..\resources\background_osd.png" loc="0,0" size="720,70"/>                            
    <DrawText text="@positionText" loc="110,37" size="100,30" textStyle="OSDText" align="Left" visible="true"/>            
    <DrawText text="@durationText" loc="530,37" size="100,30" textStyle="OSDText" align="Left" visible="true"/>            
    <Element name="timelineGraphic" loc="200,40" size="320,120" />
</CompositeImage>

<CompositeImage name="TimeshiftRecording" size="720,480">
    <DrawImage filename="..\resources\background_osd.png" loc="0,300" size="720,180"/>
    <DrawImage filename="@channelIcon" loc="625,334" size="60,45" visible="true"/>    
    <DrawImage filename="..\resources\bullet_ball_red.png" loc="650,312" size="24,24"/>        
    <DrawText text="@title" loc="30,310" size="500,30" textStyle="OSDTextTitle" align="Left"/>                                    
    <DrawText text="@description" loc="30,337" size="600,150" textStyle="OSDText" align="Left"/>                                    
    <DrawText text="Recording" loc="500,310" size="190,30" textStyle="OSDText" align="Right"/>                                                
    <!-- timeline -->
    <DrawImage filename="..\resources\background_osd.png" loc="0,0" size="720,70"/>                            
    <DrawText text="@positionText" loc="110,37" size="100,30" textStyle="OSDText" align="Left" visible="true"/>            
    <DrawText text="@durationText" loc="530,37" size="100,30" textStyle="OSDText" align="Left" visible="true"/>            
    <Element name="timelineGraphic" loc="200,40" size="320,120" />
    <DrawText text="@subtitlesEnabled" loc="350,5" size="350,30" textStyle="OSDText" align="Right" visible="true"/>    
</CompositeImage>

<CompositeImage name="LivePreview" size="720,480">
    <DrawImage filename="..\resources\background_osd.png" loc="0,300" size="720,180"/>
    <DrawImage filename="@channelIcon" loc="625,334" size="60,45" visible="true"/>            
    <DrawText text="@title" loc="30,310" size="500,30" textStyle="OSDText" align="Left"/>                                    
    <DrawText text="@description" loc="30,337" size="600,150" textStyle="OSDText" align="Left"/>                                    
    <DrawText text="@time" loc="500,310" size="190,30" textStyle="OSDText" align="Right"/>    
    <DrawText text="@subtitlesEnabled" loc="350,5" size="350,30" textStyle="OSDText" align="Right" visible="true"/>                                    
</CompositeImage>

and you can do mini guide as well. I think they all started at 120 for the size height. And for these to go you would be recommended to have VMR9 or 7 because other wise you loose most the of the screen, and the VMR's use transparency.
Here's Jonny
Offline

Member

Posts: 103
Threads: 31
Joined: May 2005
#7
2006-01-09, 07:20 PM
I take it this bt I need to change !

Quote:<DrawText text="@description" loc="30,337" size="600,150" textStyle="OSDText" align="Left"/>

I can change that but nothing happens !
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)



Possibly Related Threads…
Thread Author Replies Views Last Post
  EPG - no show details Ger 12 3,311 2025-04-03, 12:19 PM
Last Post: mvallevand
  IR Blaster doesn't change to channel missing show details Kid_Ego5150 3 2,065 2010-11-13, 02:11 AM
Last Post: sub
  analog LiveTV not working fm4 3 2,054 2010-07-17, 09:49 PM
Last Post: pBS
  Problem with audio on livetv play, but not in recording? hexibot43 3 2,109 2010-07-10, 03:24 PM
Last Post: hexibot43
  No sound on liveTV after installing AirFoil mchewson 12 4,811 2010-07-01, 03:05 AM
Last Post: sub
  No LiveTV with GBPVR client in Windows Vista 64--Help! Cerasmuerto 6 2,972 2010-05-29, 03:07 PM
Last Post: Cerasmuerto
  NZ FreeView, LiveTV No Picture, No Sound, only EPG guysherman 0 1,399 2010-05-24, 09:35 PM
Last Post: guysherman
  No Show Details kirschey 0 1,211 2010-05-24, 05:50 PM
Last Post: kirschey
  Unknown channels; (no show details) JosephWebber 12 4,382 2010-05-20, 09:48 PM
Last Post: s_daykin
  LiveTV not working properly Heezy 45 10,383 2010-04-04, 05:58 PM
Last Post: mvallevand

  • View a Printable Version
  • Subscribe to this thread
Forum Jump:

© Designed by D&D, modified by NextPVR - Powered by MyBB

Linear Mode
Threaded Mode