Difference between revisions of "RGB Scart"

From MythTV Official Wiki
Jump to: navigation, search
(Video cards)
Line 1: Line 1:
 +
{{Inuse}}
 +
 
{{Wikipedia|SCART}}
 
{{Wikipedia|SCART}}
 +
 +
 +
= Warning =
 +
 +
{{Warning_box|As these types of cables are directly driving the television, there exists potential for damage through mistakes in cabling or even sending an out-of-spec signal to the television. Consider yourself warned and proceed at your own risk.}}
 +
 +
 +
= Forword =
 +
 +
I'm ( pepsi_max2k ) about to edit and update the whole of this page after completing a cable based on Steve Hill's guide at http://www.nexusuk.org/projects/vga2scart/ . Therefore if you're looking for info on a VGA to Scart (RGBs) cable then bear with me for the next few weeks while I update the page.
 +
 +
If you happen to live in the UK, I'll also have a spare one made up within a couple weeks which I'll send you for cost price + postage (only a few £ max), so don't worry if you can't solder owt, although mine aren't exactly works of art...
 +
 +
--[[User:Pepsi max2k|Pepsi max2k]] 20:55, 11 January 2008 (UTC)
 +
 +
 
= Introduction =
 
= Introduction =
  
Line 5: Line 23:
  
 
Driving a TV directly has some advantages. The quality is superior to composite or S-video, and as the video card's TV encoder is completely bypassed, custom resolutions and refresh rates can be programmed. On the down side, this method can require some experimentation to get right.
 
Driving a TV directly has some advantages. The quality is superior to composite or S-video, and as the video card's TV encoder is completely bypassed, custom resolutions and refresh rates can be programmed. On the down side, this method can require some experimentation to get right.
 
= Warning =
 
 
{{Warning_box|As these types of cables are directly driving the television, there exists potential for damage through mistakes in cabling or even sending an out-of-spec signal to the television. Consider yourself warned and proceed at your own risk.}}
 
  
 
= Requirements =
 
= Requirements =

Revision as of 20:55, 11 January 2008

Clock-green.png
This article is being created or undergoing major editing at this time.
As a courtesy, please do not edit this article while this message is displayed. The person who added this notice will be listed in its edit history should you wish to contact him or her.
Wikipedia-logo-en.png
Wikipedia has an article on:


Warning

Warning.png Warning: As these types of cables are directly driving the television, there exists potential for damage through mistakes in cabling or even sending an out-of-spec signal to the television. Consider yourself warned and proceed at your own risk.


Forword

I'm ( pepsi_max2k ) about to edit and update the whole of this page after completing a cable based on Steve Hill's guide at http://www.nexusuk.org/projects/vga2scart/ . Therefore if you're looking for info on a VGA to Scart (RGBs) cable then bear with me for the next few weeks while I update the page.

If you happen to live in the UK, I'll also have a spare one made up within a couple weeks which I'll send you for cost price + postage (only a few £ max), so don't worry if you can't solder owt, although mine aren't exactly works of art...

--Pepsi max2k 20:55, 11 January 2008 (UTC)


Introduction

SCART is a European standard for connecting audio-visual equipment together. Different methods of transmitting video such as composite, Y/C (S-video) and RGB are supported on the same cable. The RGB method of transmission is of particular interest as it uses Red, Green, Blue and Composite Sync pins, which is very close to the way signal is carried over a VGA cable, Red, Green, Blue, Horizontal Sync and Vertical Sync. This makes is possible to adapt a VGA output to drive a RGB-capable SCART television directly.

Driving a TV directly has some advantages. The quality is superior to composite or S-video, and as the video card's TV encoder is completely bypassed, custom resolutions and refresh rates can be programmed. On the down side, this method can require some experimentation to get right.

Requirements

  • A television with an RGB capable SCART socket. Just the presence of a SCART socket does not mean the television accepts RGB. Check the manual.
  • A video card capable of supporting interlaced resolutions.
  • A video card capable of supporting a very low dot-clock frequency (14.76 MHz for PAL, 13.34 MHz for NTSC.)

Cable types

These fall into two groups. Some Radeon video cards are capable of generating composite sync directly and therefore need only a simple cable connecting the pins together. All other cards require a small circuit to convert the horizontal/vertical sync into composite sync. You can tell the circuits apart by the because the more complex version will have at least one transistor.

Video cards

Cards known to support interlaced resolutions and TV frequency dot clocks
Name Interlacing? <15 MHz dot clock?
nVidia GeForce4 MX YES YES
nVidia FX 5200 series YES YES
ATI Radeon 8000 series
ATI Radeon 7500 YES YES
ATI Radeon X300SE
(RV370 - Dell Optiplex GX280)
YES YES
Via Unichrome IGP
Intel GMA950

Xorg Configuration

X Windows needs to be configured to generate the signals at the right frequencies for your TV.

Example xorg.conf

This is a working Interlaced PAL TV setup. The relevant sections of xorg.conf are below. Note the "composite" keyword which causes the Radeon to generate composite sync directly.

Script.png xorg.conf

...

  Section "Monitor"
        Identifier   "Generic Monitor"
        HorizSync    14.0 - 18.0
        VertRefresh  45.0  - 65.0
        Option      "DPMS"
        Modeline     "720x576" 15.125 720 778 834 968 576 579 607 625 composite interlace +hsync +vsync
  EndSection
  Section "Device"
        Identifier  "ATI Technologies, Inc. RV370 5B60 [Radeon X300 (PCIE)]"
        Driver      "ati"
        Option      "DynamicClocks" "true"
        Option      "ForceMinDotClock" "14MHz"
        Option      "MergedFB" "false"
        Option      "IgnoreEDID" "true"
        Option      "VGAAccess" "false"
        BusID       "PCI:1:0:0"
  EndSection

...

Links

Here are some links to information on how to convert the VGA out signal to a suitable signal for a RGB Scart input.