Difference between revisions of "XorgConfMonitorSectionForTV"

From MythTV Official Wiki
Jump to: navigation, search
(Tell something about configuration of TV monitor in xorg.conf)
 
m (Clearify)
Line 6: Line 6:
 
As sample I provide you with the 'Monitor' section of my xorg.conf:
 
As sample I provide you with the 'Monitor' section of my xorg.conf:
 
<code>
 
<code>
Section "Monitor"
+
Section "Monitor"
        Identifier  "Generic Monitor"
+
        Identifier  "Generic Monitor"
        HorizSync    30 - 50
+
        HorizSync    30 - 50
        VertRefresh  60.0
+
        VertRefresh  60.0
        DisplaySize  200 150
+
        DisplaySize  200 150
EndSection
+
EndSection
 
</code>
 
</code>
  

Revision as of 17:05, 20 November 2006

To use a TV screen as monitor, the 'Monitor' section in xorg.conf (usually in /etc/X11) should be adapted to allow refresh rates that can be understand by the TV encoder chip of your videocard. Normally this will be 60.0 Hz, also in Europe for the PAL TV-standard! I repeat, you need the value for the TV-encoder on the videocard.

As sample I provide you with the 'Monitor' section of my xorg.conf:

Section "Monitor"
        Identifier   "Generic Monitor"
        HorizSync    30 - 50
        VertRefresh  60.0
        DisplaySize  200 150
EndSection

The DisplaySize is an optional parameter. Its value should be conform aspect ratio for the resolution you are going to use, normally using a 4x3 aspect ratio. The value given for this option is used to compute the font size (DPI) for your display. In a 'normal' configuration (where people use a computer monitor) the values are read from the monitor itself, but S-Video and Composite cables do not provide this information.

It is advised to play with the value, as the result may vary from unreadable fonts to fonts that are big enough to support your grandmother without wearing glasses ;-)

My favourite values so far:
- On a 53cm 4x3 aspect PAL TV: DisplaySize 180 135 - On a 91cm 16x9 aspect PAL TV: DisplaySize 200 150