Ton câble qui relie le pc à la tv, y-a pas un petit interrupteur sur la péritel ? Si oui, le mettre sur "IN".
Dans ta section serverlayout, je rajouterai un "1" pour la déclaration du 2ème screen :
Screen 1 "aticonfig-Screen[1]" Above "Screen0"
Dans ta section device (le 1er), je rajouterai "Screen 0" comme le "Screen 1" du 2ème device.
De plus tu utilises 2 devices, donc à mon avis, cette ligne :
Option "EnableMonitor" "crt1,tv"
n'est pas bonne.
Je mettrai rien pour le device du moniteur et :
Option "ConnectedMonitor" "TV"
pour le device de la tv.
J'enlèverai aussi le :
Option "VideoOverlay" "on"
pour le device destiné au moniteur.
Je rajouterai aussi une subsection display pour le screen de la tv.
Je te donnes mon xorg.conf (qui marche très bien pour la sortie tv). J'ai nommé tout ce qui se rapporte au moniteur xxxx_monitor et tout ce qui se rapporte à la tv xxxxx_tv, il est plus facile de s'y retrouver :
# Xorg configuration created by pyxf86config
Section "ServerLayout"
Identifier "Default Layout"
Screen 0 "screen_monitor" 0 0
Screen 1 "screen_tv" Below "screen_monitor"
InputDevice "Keyboard0" "CoreKeyboard"
InputDevice "Synaptics" "CorePointer"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
Option "XkbModel" "pc105"
Option "XkbLayout" "fr"
Option "XkbVariant" "latin9"
EndSection
Section "InputDevice"
Identifier "Synaptics"
Driver "synaptics"
Option "Device" "/dev/input/mice"
Option "Protocol" "auto-dev"
Option "Emulate3Buttons" "yes"
EndSection
Section "Monitor"
Identifier "monitor_monitor"
Option "VendorName" "ATI Proprietary Driver"
Option "ModelName" "Generic Autodetecting Monitor"
Option "DPMS" "true"
EndSection
Section "Monitor"
Identifier "monitor_tv"
### Comment all HorizSync and VertSync values to use DDC:
HorizSync 30.0 - 50.0
VertRefresh 50.0 - 60.0
EndSection
Section "Device"
Identifier "device_monitor"
Driver "fglrx"
Screen 0
EndSection
Section "Device"
# Note: When OpenGL Overlay is enabled, Video Overlay
# will be disabled automatically
Identifier "device_tv"
Driver "fglrx"
Option "VideoOverlay" "on"
Option "NoTV" "no"
Option "DesktopSetup" "0x00000000"
# === disable/enable XAA/DRI ===
Option "no_accel" "no"
Option "no_dri" "no"
# === TV-out Management ===
Option "TVStandard" "PAL-D"
Option "ConnectedMonitor" "TV"
Option "TVOutFormat" "Composite"
Option "TVHSizeAdj" "-10"
Option "TVVSizeAdj" "20"
Option "TVHPosAdj" "15"
Option "TVVPosAdj" "0"
Option "TVHStartAdj" "0"
Option "TVColorAdj" "255"
Option "GammaCorrectionI" "0x06419064"
Option "GammaCorrectionII" "0x06419064"
# === OpenGL specific profiles/settings ===
Option "Capabilities" "0x00000000"
# === Video Overlay for the Xv extension ===
Option "OpenGLOverlay" "off"
# === Center Mode (Laptops only) ===
Option "CenterMode" "off"
# === Pseudo Color Visuals (8-bit visuals) ===
Option "PseudoColorVisuals" "off"
# === QBS Management ===
Option "Stereo" "off"
Option "StereoSyncEnable" "1"
# === FSAA Management ===
Option "FSAAEnable" "no"
Option "FSAAScale" "1"
Option "FSAADisableGamma" "no"
Option "FSAACustomizeMSPos" "no"
Option "FSAAMSPosX0" "0.000000"
Option "FSAAMSPosY0" "0.000000"
Option "FSAAMSPosX1" "0.000000"
Option "FSAAMSPosY1" "0.000000"
Option "FSAAMSPosX2" "0.000000"
Option "FSAAMSPosY2" "0.000000"
Option "FSAAMSPosX3" "0.000000"
Option "FSAAMSPosY3" "0.000000"
Option "FSAAMSPosX4" "0.000000"
Option "FSAAMSPosY4" "0.000000"
Option "FSAAMSPosX5" "0.000000"
Option "FSAAMSPosY5" "0.000000"
# === Misc Options ===
Option "UseFastTLS" "0"
Option "BlockSignalsOnLock" "on"
Option "UseInternalAGPGART" "no"
Option "ForceGenericCPU" "no"
Option "mtrr" "off"
BusID "PCI:1:0:0"
Screen 1
EndSection
Section "Screen"
Identifier "screen_monitor"
Device "device_monitor"
Monitor "monitor_monitor"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection
Section "Screen"
Identifier "screen_tv"
Device "device_tv"
Monitor "monitor_tv"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "800x600" "Interlace"
EndSubSection
EndSection
Section "DRI"
Group 0
Mode 0666
EndSection
Attention : j'ai l'option "TVOutFormat" "Composite", si ta sortie est Svideo, enlève cette ligne.