Force 720p through projector
#1
Hi,
I'll try to be as informative as possible, I have an InFocus 4805 projector with a Native resolution of 854x480. I know its better to run a projector at its native resolution but for some reason I swear 720p looks better on this projector even though its really being downscaled. My problem is XBMC Live will not let me change the resolution to 1280x720. My setup is a XBMC 10 Dharma Live on a Zotac MAGHD-ND01-U I have a long DVI cable wired through my attic (I can get 720p and 1080p through this cable on my PS3 so its not the cable or adapter) it has a DVI to HDMI converter on the end and thats what plugs into my PC. my question is can I force a resolution of 1280x720. Ive searched around and tried alot of xorg.conf changes but nothing seems to work. When I start up I still get the 854x480. Thanks for any help.
Reply
#2
You're going to need to really force xorg to ignore ALL edid information and only use 1280x720... something like this except replace the 1080p line with 720p modeline information. I don't use 720p on either of my sets, but I'm sure you can find information on the standard somewhere like here. http://www.mythtv.org/wiki/Modeline_Data...dard_Modes

Code:
Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0"
    InputDevice    "Keyboard0" "CoreKeyboard"
    InputDevice    "Mouse0" "CorePointer"
EndSection

Section "Files"
EndSection

Section "InputDevice"
    # generated from default
    Identifier     "Mouse0"
    Driver         "mouse"
    Option         "Protocol" "auto"
    Option         "Device" "/dev/psaux"
    Option         "Emulate3Buttons" "no"
    Option         "ZAxisMapping" "4 5"
EndSection

Section "InputDevice"
    # generated from default
    Identifier     "Keyboard0"
    Driver         "kbd"
EndSection

Section "Monitor"
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "Unknown"
    HorizSync       15 - 70
    VertRefresh     23 - 62
    Option         "DPMS"
    Option         "ExactModeTimingsDVI" "TRUE"

    ModeLine "1920x1080_59" 148.3515 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync

EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    Option         "ModeValidation" "NoEdidModes"
Option  "NoFlip"              "true"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth   24
    Option         "DynamicTwinView" "False"
    Option         "ExactModeTimingsDVI" "True" # we have proper modelines
    Option         "FlatPanelProperties" "Scaling = Native"
    Option         "UseEDIDFreqs"         "False"
    Option         "ModeValidation"       "NoEdidModes, NoMaxPClkCheck, NoEdidMaxPClkCheck, AllowNon60HzDFPModes, NoXServerModes, NoVesaModes"
    SubSection     "Display"
        Depth       24
        Modes "1920x1080_59"
"EndSubSection

EndSection

Section "Extensions"
        Option          "Composite"     "Disable"
EndSection
Reply
#3
Ill give this a try
Reply

Logout Mark Read Team Forum Stats Members Help
Force 720p through projector0