View unanswered posts    View active topics

All times are UTC - 6 hours





Post new topic Reply to topic  [ 5 posts ] 
Print view Previous topic   Next topic  
Author Message
Search for:
PostPosted: Sun Oct 30, 2005 11:16 pm 
Offline
Joined: Wed Jun 08, 2005 7:51 pm
Posts: 38
I just got my new master backend/frontend loaded today (Athlon 64 3200 venice, 1 gig of RAM, geforce 5200 ultra, DCT6200/firewire, etc.), and when I watch anything that is HD widescreen, the sides of the video are cropped off about 15% to the left and right of the screen.

I am using a 33" Princeton SVGA monitor (800x600) as my display, and no matter what I do, I can not get widescreen HD video to fit on the screen at all. Cycling through the various aspect ratios and overrides with the W key will never fit the entire image on the screen (it is always cropped on the sides), and using the manual zoom mode produces more interesting issues, like when zooming out, instead of shrinking the entire video image, it just does a growing 4 sided letterbox portal that moves in relation to the video image.

It seems like it is shrinking 1920x1080 video to fit on a 1024x768 screen, and I am looking at that shrunken image through an 800x600 portal. I have every setting overridden with 800x600 any place I could find it in the various settings for myth, but nothing seems to happen. I had used it at 1024x768 with all default settings before I reduced the resolution to fit on my SVGA monitor, but I couldn't think of a setting, except maybe one buried deep in the database that would have stuck or affected this. Any ideas? Thanks.

-Rich


Top
 Profile  
 
 Post subject:
PostPosted: Sun Oct 30, 2005 11:50 pm 
Offline
Joined: Fri Sep 19, 2003 7:05 pm
Posts: 5088
Location: Fontana, Ca
You can use 'W' to cycle thru and correct this....

_________________
cesman

When the source is open, the possibilities are endless!


Top
 Profile  
 
 Post subject:
PostPosted: Mon Oct 31, 2005 2:25 pm 
Offline
Joined: Wed Jun 08, 2005 7:51 pm
Posts: 38
cesman wrote:
You can use 'W' to cycle thru and correct this....


That's what I meant by "Cycling through the various aspect ratios and overrides with the W key" and it didn't fix the cropping, neither did zooming manually. It seems its drawing the video to a frame larger than 800x600, but my viewport is only 800x600...akin to sticking a 4x6 picture into a 3x5 picture frame.

-Rich


Top
 Profile  
 
 Post subject:
PostPosted: Mon Oct 31, 2005 5:54 pm 
Offline
Joined: Thu Oct 13, 2005 9:18 am
Posts: 91
Location: Washington
Have you edited your XFree86-4 file?


Top
 Profile  
 
 Post subject:
PostPosted: Tue Nov 01, 2005 12:56 am 
Offline
Joined: Wed Jun 08, 2005 7:51 pm
Posts: 38
jakep_82 wrote:
Have you edited your XFree86-4 file?


Yes I did...I had to take out any line that my SVGA monitor wouldn't handle (anything > 800x600x60Hz) -

Code:
   InputDevice    "Keyboard0" "CoreKeyboard"
# PS/2 Mouse using /dev/input/mice in Kernel 2.6
# Serial Mouse not detected
        InputDevice    "USB Mouse" "CorePointer"
EndSection

Section "ServerFlags"
   Option "AllowMouseOpenFail"  "true"
   
EndSection

Section "Files"
   RgbPath      "/usr/X11R6/lib/X11/rgb"
   ModulePath   "/usr/X11R6/lib/modules"
   FontPath     "/usr/X11R6/lib/X11/fonts/misc:unscaled"
   FontPath     "/usr/X11R6/lib/X11/fonts/misc"
   FontPath     "/usr/X11R6/lib/X11/fonts/75dpi:unscaled"
   FontPath     "/usr/X11R6/lib/X11/fonts/75dpi"
   FontPath     "/usr/X11R6/lib/X11/fonts/100dpi:unscaled"
   FontPath     "/usr/X11R6/lib/X11/fonts/100dpi"
   FontPath     "/usr/X11R6/lib/X11/fonts/Speedo"
   FontPath     "/usr/X11R6/lib/X11/fonts/PEX"
# Additional fonts: Locale, Gimp, TTF...
   FontPath     "/usr/X11R6/lib/X11/fonts/cyrillic"
#   FontPath     "/usr/X11R6/lib/X11/fonts/latin2/75dpi"
#   FontPath     "/usr/X11R6/lib/X11/fonts/latin2/100dpi"
# True type and type1 fonts are also handled via xftlib, see /etc/X11/XftConfig!
   FontPath     "/usr/X11R6/lib/X11/fonts/Type1"
   FontPath     "/usr/share/fonts/ttf/western"
   FontPath     "/usr/share/fonts/ttf/decoratives"
   FontPath     "/usr/share/fonts/truetype"
   FontPath     "/usr/share/fonts/truetype/openoffice"
   FontPath     "/usr/share/fonts/truetype/ttf-bitstream-vera"
   FontPath     "/usr/share/fonts/latex-ttf-fonts"
   FontPath     "/usr/X11R6/lib/X11/fonts/defoma/CID"
   FontPath     "/usr/X11R6/lib/X11/fonts/defoma/TrueType"
EndSection

Section "Module"
        Load  "ddc"  # ddc probing of monitor
#   Load  "GLcore"
   Load  "dbe"
#   Load  "dri"
   Load  "extmod"
   Load  "glx"
        Load  "bitmap" # bitmap-fonts
   Load  "speedo"
   Load  "type1"
   Load  "freetype"
   Load  "record"
EndSection

Section "InputDevice"
   Identifier  "Keyboard0"
   Driver      "keyboard"
        Option      "CoreKeyboard"
   Option "XkbRules" "xfree86"
   Option "XkbModel" "pc105"
   Option "XkbLayout" "us"

EndSection

Section "InputDevice"
   Identifier  "Serial Mouse"
   Driver      "mouse"
   Option      "Protocol" "Microsoft"
   Option      "Device" "/dev/ttyS0"
   Option      "Emulate3Buttons" "true"
   Option      "Emulate3Timeout" "70"
   Option       "SendCoreEvents"  "true"
EndSection

Section "InputDevice"
   Identifier  "PS/2 Mouse"
   Driver      "mouse"
   Option      "Protocol" "auto"
Option          "ZAxisMapping"          "4 5"
   Option      "Device" "/dev/psaux"
   Option      "Emulate3Buttons" "true"
   Option      "Emulate3Timeout" "70"
   Option       "SendCoreEvents"  "true"
EndSection

Section "InputDevice"
        Identifier      "USB Mouse"
        Driver          "mouse"
        Option          "Device"                "/dev/input/mice"
   Option      "SendCoreEvents"   "true"
        Option          "Protocol"              "IMPS/2"
        Option          "ZAxisMapping"          "4 5"
        Option          "Buttons"               "5"
EndSection

# Auto-generated by KNOPPIX mkxf86config

Section "Monitor"
   Identifier   "Monitor0"
   Option   "DPMS"   "true"
   VendorName   "STC"
   ModelName   "STC02ce"
   HorizSync 30 - 72 # DDC-probed
   VertRefresh 50 - 85 # DDC-probed
   # These are the DDC-probed settings reported by your monitor.
   # 1024x768, 85.0Hz; hfreq=68.68, vfreq=85.00
   #ModeLine "1024x768"    94.50 1024 1072 1168 1376  768  769  772  808 +hsync +vsync
   # 1024x768, 75.0Hz; hfreq=60.02, vfreq=75.03
   #ModeLine "1024x768"    78.75 1024 1040 1136 1312  768  769  772  800 +hsync +vsync
   # 800x600, 85.0Hz; hfreq=53.67, vfreq=85.06
   #ModeLine "800x600"    56.25  800  832  896 1048  600  601  604  631 +hsync +vsync
   # 800x600, 75.0Hz; hfreq=46.88, vfreq=75.00
   #ModeLine "800x600"    49.50  800  816  896 1056  600  601  604  625 +hsync +vsync
   # 800x600, 60.0Hz; hfreq=37.88, vfreq=60.32
   ModeLine "800x600"    40.00  800  840  968 1056  600  601  605  628 +hsync +vsync
   # 640x480, 85.0Hz; hfreq=43.27, vfreq=85.01
   ModeLine "640x480"    36.00  640  696  752  832  480  481  484  509 -hsync -vsync
   # 640x480, 75.0Hz; hfreq=37.50, vfreq=75.00
   ModeLine "640x480"    31.50  640  656  720  840  480  481  484  500 -hsync -vsync
   # 640x480, 60.0Hz; hfreq=31.47, vfreq=59.94
   ModeLine "640x480"    25.17  640  648  744  784  480  482  484  509 -hsync -vsync
   
EndSection

Section "Device"
   ### Available Driver options are:-
# sw_cursor is needed for some ati and radeon cards
   #Option     "sw_cursor"
        #Option     "hw_cursor"
        #Option     "NoAccel"
        #Option     "ShowCache"
        #Option     "ShadowFB"
        #Option     "UseFBDev"
        #Option     "Rotate"
   Identifier  "Card0"
# The following line is auto-generated by KNOPPIX mkxf86config
   Driver      "nvidia"
   VendorName  "All"
   BoardName   "All"
#   BusID       "PCI:1:0:0"
EndSection

Section "Screen"
   Identifier "Screen0"
   Device     "Card0"
   Monitor    "Monitor0"
   DefaultColorDepth 24
   SubSection "Display"
      Depth     1
      Modes "800x600" "640x480"
   EndSubSection
   SubSection "Display"
      Depth     4
      Modes "800x600" "640x480"
   EndSubSection
   SubSection "Display"
      Depth     8
      Modes "800x600" "640x480"
   EndSubSection
   SubSection "Display"
      Depth     15
      Modes "800x600" "640x480"
   EndSubSection
   SubSection "Display"
      Depth     16
      Modes "800x600" "640x480"
   EndSubSection
   SubSection "Display"
      Depth     24
      Modes "800x600" "640x480"
   EndSubSection
   SubSection "Display"
      Depth     32
      Modes "800x600" "640x480"
   EndSubSection
EndSection

Section "DRI"
   Mode 0666
EndSection

_________________
-rich

KnoppMyth HDPVR WIP
(A 64 3200+ venice, asus a8n-vm csm NF430/GF6150, 1GB RAM, 560 GB/3 HD's, DVD +-RW, DCT 6200/firewire/Aver TVHD MCE A180/WinTV BT878 tuners, small black micro atx cube, big sound, 33" SVGA presentation monitor)


Top
 Profile  
 

Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 5 posts ] 


All times are UTC - 6 hours




Who is online

Users browsing this forum: No registered users and 21 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Jump to:  
cron
Powered by phpBB® Forum Software © phpBB Group

Theme Created By ceyhansuyu