Yes they do need to be set same resolution or you will miss some part of the picture.
One problem I found is that setting composite out doesn't work with nvidia drivers - it seems to switch off twinview altogether. At least that is the case with my MX420. In the end I had to buy an svideo-scart adaptor and use that to get any sort of picture at all. Perhaps you have something like a vcr that accepts svideo that you could run the signal thru first?
Here's my xorg.conf parts:
Code:
Section "Device"
Driver "nvidia"
Identifier "Card0"
VendorName "nVidia Corporation"
BoardName "NV17 [GeForce4 MX 420]"
BusID "PCI:1:0:0"
Option "AllowGLXWithComposite" "on"
Option "NoLogo" "True"
Option "RenderAccel" "true"
Option "HWcursor" "true"
Option "CursorShadow" "true"
Option "NvAgp" "3"
Option "TwinView" "on"
Option "ConnectedMonitor" "CRT,TV"
Option "MetaModes" "1280x960,800x600;1024x768,800x600;800x600,800x600"
Option "TwinViewOrientation" "Clone"
Option "SecondMonitorHorizSync" "30 - 50"
Option "SecondMonitorVertRefresh" "60"
Option "TVStandard" "PAL-I"
Option "TVOutFormat" "SVIDEO"
Option "NoTwinViewXineramaInfo" "True"
EndSection
Section "Device"
Driver "nvidia"
Identifier "Card1"
BusID "PCI:1:0:0"
Option "NoLogo" "True"
Screen 1
EndSection
Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1280x960" "800x600"
EndSubSection
EndSection
Section "Screen"
Identifier "Screen1"
Device "Card1"
Monitor "Monitor1"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
Modes "800x600" "640x480"
EndSubSection
EndSection
Section "Monitor"
DisplaySize 320 240
Identifier "Monitor0"
VendorName "HSL"
ModelName "720E"
HorizSync 30.0 - 72.0
VertRefresh 50 - 160
Option "DPMS"
EndSection
Section "Monitor"
Identifier "Monitor1"
VendorName "TV"
ModelName "TV"
HorizSync 30.0 - 50
VertRefresh 60
Option "DPMS"
EndSection
(I don't recall if you actually need separate monior/screen sections, but I left those in after experimenting with xinerama I think)