Ubuntu Forums ubuntu.com - launchpad.net - ubuntu help  

Go Back   Ubuntu Forums > The Ubuntu Forum Community > Forum Archive > Main Support Categories > Multimedia & Video
Register Reset Password Forum Help Forum Council Search Today's Posts Mark Forums Read

Hello, Unregistered You are browsing a READ only archive of the main support categories pre 4/21/2008. You will not be able to post or reply any threads in this section.
Ubuntu 9.10 is out!!!

When downloading Ubuntu 9.10 please consider using bittorrent to get your copy of Ubuntu.

The Ubuntu Developers Summit for Lucid Lynx will be held the week of 16-Nov-2009 till 20-Nov-2009 in Dallas, TX USA. Visit the the Ubuntu wiki for more information about UDS and how to participate remotely.

Multimedia & Video
Have multimedia question? ATI, Nvidia, Sound cards. Just ask here.

 
Thread Tools Display Modes
Old April 4th, 2007   #1
Simoo
5 Cups of Ubuntu
 
Simoo's Avatar
 
Join Date: Dec 2005
Beans: 26
UK PAL 16:9 xorg.conf MythTV

Hi, I thought I would post up the xorg.conf from my XUbuntu 6.10 MythTV box. I have it running on a standard wide screen tv. I had to get info from different sources, hopefully having it all in one place will help someone. If anyone can improve it,post up!

-------------------------------------------------------------------------------------------------------

Section "Device"
Identifier "NVIDIA Corporation NV18 [GeForce4 MX 440 AGP 8x]"
Driver "nvidia"
BusID "PCI:1:0:0"
Option "NoLogo"
Option "RenderAccel" "1"
## Setting this next line to 1 requires you to stop AGPGART from running at boot.
Option "NVAGP" "1"
## TV out setup.
Option "TVStandard" "PAL-I"
Option "TVOutFormat" "SVIDEO"
## Enables RGB workstation overlay visuals. This is only supported on Quadro4 and Quadro FX chips (Quadro4 NVS excluded) in depth 24.
# Option "Overlay" "true"
Option "XvmcUsesTextures" "true"
## I set the overscan as 0.0 then use nvidia-settings.
Option "TVOverScan" "0.0"
EndSection

Section "Monitor"
Identifier "TV"
## Refresh rate setup - I can't find what I should use so leave it out!
#HorizSync 15.625
#VertRefresh 50.0
## Set for 16:9 display. For 4:3 replace 225 with 300.
DisplaySize 400 225
EndSection

Section "Screen"
Identifier "Default Screen"
Device "NVIDIA Corporation NV18 [GeForce4 MX 440 AGP 8x]"
Monitor "TV"
DefaultDepth 24
##Quality will be better if you use the native display resolution. A PAL TV has a basic resolution of 720x576.
SubSection "Display"
Depth 1
Modes "720x576" "480x576" "350x576" "360x288" "352x288"
EndSubSection
SubSection "Display"
Depth 4
Modes "720x576" "480x576" "350x576" "360x288" "352x288"
EndSubSection
SubSection "Display"
Depth 8
Modes "720x576" "480x576" "350x576" "360x288" "352x288"
EndSubSection
SubSection "Display"
Depth 15
Modes "720x576" "480x576" "350x576" "360x288" "352x288"
EndSubSection
SubSection "Display"
Depth 16
Modes "720x576" "480x576" "350x576" "360x288" "352x288"
EndSubSection
SubSection "Display"
Depth 24
Modes "720X576" "480x576" "350x576" "360x288" "352x288"
EndSubSection
EndSection



--------------------------------------------------------------------------------------------------------

Oh and my /etc/X11/XvMCConfig just contains (without quotes) "libXvMCNVIDIA_dynamic.so.1" so the Nvida card's XvMC decoder works.

Not sure if the whole thing will work as a cut and paste as I might have made errors pasting it up here! But should be a good ref.

Simon

Last edited by Simoo; April 16th, 2007 at 05:02 AM..
Simoo is offline   Reply With Quote
Old April 6th, 2007   #2
[S2]
Just Give Me the Beans!
 
[S2]'s Avatar
 
Join Date: Jan 2005
Beans: 26
Re: UK PAL 16:9 xorg.conf MythTV

Quote:
Originally Posted by Simoo View Post
Section "Monitor"
Identifier "TV"
HorizSync 24.0 - 80.0
VertRefresh 50.0 - 75.0
# Set for 16:9 display
DisplaySize 400 225
EndSection

Does the DisplaySize thing still work for you in Xorg 7.2.0? It stopped working for me after the update to Feisty.
[S2] is offline   Reply With Quote
Old April 7th, 2007   #3
Simoo
5 Cups of Ubuntu
 
Simoo's Avatar
 
Join Date: Dec 2005
Beans: 26
Re: UK PAL 16:9 xorg.conf MythTV

Yes it works for me, with out specifying the 'Displaysize' I get a 4:3 ratio. With it the TV switches to 16:9 and I get a full screen pic.

Although I have not updated to X 7.2. I will just run Edgy (6.10) with the official updates for now, I like to stay a distro behind.

--------------------------------------------------------------------------------------------------------------------
X Window System Version 7.1.1
Release Date: 12 May 2006
X Protocol Version 11, Revision 0, Release 7.1.1
Build Operating System: Linux 2.6.15.7 i686
Current Operating System: Linux melitta 2.6.17-11-generic #2 SMP Thu Feb 1 19:52:28 UTC 2007 i686
Build Date: 07 July 2006
--------------------------------------------------------------------------------------------------------------------

Last edited by Simoo; April 7th, 2007 at 07:57 PM..
Simoo is offline   Reply With Quote
Old April 8th, 2007   #4
[S2]
Just Give Me the Beans!
 
[S2]'s Avatar
 
Join Date: Jan 2005
Beans: 26
Re: UK PAL 16:9 xorg.conf MythTV

Quote:
Originally Posted by Simoo View Post
Yes it works for me, with out specifying the 'Displaysize' I get a 4:3 ratio. With it the TV switches to 16:9 and I get a full screen pic.

Although I have not updated to X 7.2. I will just run Edgy (6.10) with the official updates for now, I like to stay a distro behind.
Thanks for your feedback. It worked for me too in Edgy. It stopped working in Feisty. I had to add

Code:
Option          "DDC" "false"
and
Code:
HorizSync 30-50
VertRefresh 58-62
to my monitor section in xorg.conf

H- and VSync are those of my TV.
[S2] is offline   Reply With Quote
Old April 9th, 2007   #5
Simoo
5 Cups of Ubuntu
 
Simoo's Avatar
 
Join Date: Dec 2005
Beans: 26
Re: UK PAL 16:9 xorg.conf MythTV

Cool, thats good to know. Cheers.

Where did you get the info about refresh rates for your TV? My manual had none.
Simoo is offline   Reply With Quote
Old April 9th, 2007   #6
[S2]
Just Give Me the Beans!
 
[S2]'s Avatar
 
Join Date: Jan 2005
Beans: 26
Re: UK PAL 16:9 xorg.conf MythTV

Quote:
Originally Posted by Simoo View Post
Cool, thats good to know. Cheers.

Where did you get the info about refresh rates for your TV? My manual had none.
This worked for me:
Code:
sudo su
apt-get install read-edid
get-edid | parse-edid
But not all TVs report the edid info.
[S2] is offline   Reply With Quote
Old November 5th, 2007   #7
tsu3000
First Cup of Ubuntu
 
tsu3000's Avatar
 
Join Date: Oct 2006
Beans: 11
Ubuntu 7.04 Feisty Fawn
Re: UK PAL 16:9 xorg.conf MythTV

Hi

I am trying to find out the Horiz/Vert refresh rates for my TV as well (PAL Sony 32" VEGA) and tried to install read-edid but it didn't like the fact I am running AMD64 version of 7.04.

Does the 64bit version exist?

Thanks in advance.

JJ
tsu3000 is offline   Reply With Quote

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 04:03 PM.


vBulletin ©2000 - 2009, Jelsoft Enterprises Ltd. Ubuntu Logo, Ubuntu and Canonical © Canonical Ltd. Tango Icons © Tango Desktop Project. lingonberry