another fun quote stumbled over on FB, of all places
[web/gag.com] / bdale / blog / posts / Working_NTSC_Output.mdwn
1 It's easy when you have the right hardware.  I struggled more than I
2 want to admit without any real success to make my ATI Radeon 7500 All-in-Wonder
3 card do NTSC video out from 
4 <a href="http://www.mythtv.org">MythTV</a>.  
5 I was frustrated enough that I was pricing
6 nVidia cards on the web, knowing that their driver would "just work" despite
7 being hideously non-free.  To the rescue came a co-worker, who pointed me to 
8 Thomas Winischhofer's 
9 <a href="http://www.winischhofer.net/linuxsis630.shtml">Linux and SiS</a>
10 site, which suggested that I could have a fully open source solution for NTSC
11 video output for cheap.
12
13 And it works!
14
15 I bought an ECS
16 <a href="http://www.newegg.com/app/viewproduct.asp?DEPA=1&submit=Go&description=ag315p">AG315P/TV</a> card from
17 <a href="http://www.newegg.com">newegg.com</a>,
18 which is fast becoming my favorite place to buy stuff like this.  For the
19 princely sum of $29, I got an AGP video card using the SiS 315 controller and
20 an SiS 301 video bridge... that auto-detects the presence
21 of a load on the RCA composite output at boot time, and gives me full BIOS
22 video support on the TV output!  
23
24 I didn't even need to load up Thomas' drivers
25 for X, the stock Debian 4.3.0-0pre1v1 from experimental "just worked" with
26 the following device selection.  The option tells the card to assign the one
27 available set of overlay support registers (which MythTV needs for video
28 playback) to the TV output instead of the default VGA output.  That's it!
29
30 <pre>
31 Section "Device"
32         Identifier      "SiS315PRO"
33         Driver          "sis"
34
35         Option          "XvOnCRT2"              "true"
36 EndSection
37 </pre>
38
39 Wish I'd known about this before I went do the ATI path... and by the way, I
40 decided I really don't like the feel of the ATI UHF remote control, so I bought
41 some IR modules from Radio Shack and am building up lirc receivers... but more
42 about that another day...
43
44 [[!tag tags/pvr]]