Maybe little off the topic, but since XBMC build on ubuntu ...

  Thread Rating:
  • 1 Votes - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
Noodle Offline
Senior Member
Posts: 160
Joined: Jan 2005
Reputation: 0
Post: #11
Finally, I almost get everything work.

I'm using HDMI to connect to Vizio GV47L, onboard SPDIF to connect to receiver (not though HDMI), Microsoft remote control. I have QX9650 CPU, so CPU power isn't an issue.

So far, XBMC play most of my 1080P movie without problem. Just "Bounce Ultimate" 1080p, somehow no video, only sound. And after I stop it, XBMC stop response me.

SMB crash as somebody already report (either browse or try to input server name). but I can use NFS without problem (paired with my DNS-323 NAS)

When I play Planet of Earth 1080P, the CPU usage pretty high, in some section, two of three cores reach 60% (report by XBMC), total CPU reach 270%. I will use top to check if this report is reliable next time.
find quote
Noodle Offline
Senior Member
Posts: 160
Joined: Jan 2005
Reputation: 0
Post: #12
Sorry for typo, and some more information.

I set
Option "monitor-TMDS-1" "GV47L"
Option "monitor-VGA" "GV47L"

And it's "PreferredMode", not "PerferredMode". So it's:
Option "PreferredMode" "1920x1080"

Noodle Wrote:Finally, I got it work!

The trick is: output to monitor

Checked X11 log, it connect to VGA first, and then disconnect VGA and connect to TMDS-1. Since I'm using Intel graphic card, TMDS-1 is first DVI port, it may different to nVidia. I saw somewhere mentioned graphic output name for different port for both Intel and nVidia.

Anyway, what I did is:

in "Device" section for graphic card add:
Option "monitor-TMDS-1" "GV47L"
if you want, you can add another line like:
Option "monitor-VGA" "VGA"
First parameter (monitor-TMDS-1) is output of graphic card, second parameter is monitor.

when in monitor "GV47L" section, define Modeline
ModeLine "1920x1080" 148.35 1920 2008 2052 2200 1080 1085 1090 1125 +HSync +VSync
Option "PerferredMode" "1920x1080"

And in "Display" subsection under "screen" section add:
Depth 24
Mode "1920x1080"
Virtual 2048 2048

After this, it's give me 1080p output on my GV47L

I will post my xorg.conf later.

Thanks

Noodle
find quote
BLKMGK Offline
Member+
Posts: 1,634
Joined: Jul 2006
Reputation: 3
Location: USA Virginia
Post: #13
Lemme' guess - Planet Earth disc 1 during the Bird Scene? It's funny, there's a clip of that that I think most of us agree is a bit nutz on the encoding and not typical. However.... I encoded that DVD myself and damned if it's the ONE piece of video I've done yet that drops frames! Both cores on my machine are hitting 100% and it's clocked at 3Ghz. That is one NASTY scene :-O

Ubuntu 10.10, MCE USB receiver, ASROCK 330 (ION), DVDs fed from unRAID cataloged by DVD Profiler. HD-DVD encoding Added DiNovo Mini KBRD w/track
find quote
vpuzzella Offline
Junior Member
Posts: 1
Joined: Apr 2008
Reputation: 0
Post: #14
Noodle Wrote:Finally, I almost get everything work.

I'm using HDMI to connect to Vizio GV47L, onboard SPDIF to connect to receiver (not though HDMI), Microsoft remote control. I have QX9650 CPU, so CPU power isn't an issue.

Hi,

I have the same rig as you.
Can you post a copy of you xorg config file?
Have you compiled/updated your intel vga drivers?
What distro are you running?

Thanks in advance!
find quote
Noodle Offline
Senior Member
Posts: 160
Joined: Jan 2005
Reputation: 0
Post: #15
Here is my xorg.conf. From XBMC system info, it shows it 1920x1080@77-80Hz, probably I still need to tune it.

# xorg.conf (xorg X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
# sudo dpkg-reconfigure -phigh xserver-xorg

Section "Files"
EndSection

Section "InputDevice"
Identifier "Generic Keyboard"
Driver "kbd"
Option "CoreKeyboard"
Option "XkbRules" "xorg"
Option "XkbModel" "pc105"
Option "XkbLayout" "us"
EndSection

Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "ImPS/2"
Option "ZAxisMapping" "4 5"
Option "Emulate3Buttons" "true"
EndSection

Section "InputDevice"
Driver "wacom"
Identifier "stylus"
Option "Device" "/dev/input/wacom"
Option "Type" "stylus"
Option "ForceDevice" "ISDV4" # Tablet PC ONLY
EndSection

Section "InputDevice"
Driver "wacom"
Identifier "eraser"
Option "Device" "/dev/input/wacom"
Option "Type" "eraser"
Option "ForceDevice" "ISDV4" # Tablet PC ONLY
EndSection

Section "InputDevice"
Driver "wacom"
Identifier "cursor"
Option "Device" "/dev/input/wacom"
Option "Type" "cursor"
Option "ForceDevice" "ISDV4" # Tablet PC ONLY
EndSection

Section "Device"
Identifier "Intel Corporation 965 G1 Integrated Graphics Controller"
Driver "intel"
BusID "PCI:0:2:0"
Option "monitor-TMDS-1" "VIZIO GV47L"
Option "monitor-VGA" "VIZIO GV47L"
EndSection

Section "Monitor"
Identifier "VIZIO GV47L"
Option "DPMS"
HorizSync 31-70
VertRefresh 50-85
ModeLine "1920x1080" 148.35 1920 2008 2052 2200 1080 1085 1090 1125 +HSync +VSync
# ModeLine "1920x1080" 172.80 1920 2040 2248 2576 1080 1081 1084 1118 -HSync +VSync
Option "PreferredMode" "1920x1080"
EndSection

Section "Screen"
Identifier "Default Screen"
Device "Intel Corporation 965 G1 Integrated Graphics Controller"
Monitor "VIZIO GV47L"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1920x1080" "1280x720" "640x480"
Virtual 2048 2048
EndSubSection
EndSection

Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"

# Uncomment if you have a wacom tablet
# InputDevice "stylus" "SendCoreEvents"
# InputDevice "cursor" "SendCoreEvents"
# InputDevice "eraser" "SendCoreEvents"
EndSection
find quote
BLKMGK Offline
Member+
Posts: 1,634
Joined: Jul 2006
Reputation: 3
Location: USA Virginia
Post: #16
Stupid question - is that getting you 1080P or 1080i? Do you still get some overscan? I have an NVIDIA card not Intel so not sure I can use too much from your file but now you've got me wanting to tweak again darn it! Your modeline and some other things might help me. At the desktop I have overscan - drives me nutz - but XBMC looks great.

Ubuntu 10.10, MCE USB receiver, ASROCK 330 (ION), DVDs fed from unRAID cataloged by DVD Profiler. HD-DVD encoding Added DiNovo Mini KBRD w/track
find quote
Noodle Offline
Senior Member
Posts: 160
Joined: Jan 2005
Reputation: 0
Post: #17
I'm getting 1080P, that's for sure (My TV said so). I don't have any overscan. I think HDMI is 1 to 1 pixel mapping, and Vizio did pretty good on HDMI input. I verified it with both Windows and Ubuntu.

I think you can use modeline from this configuration. The only different from nVidia to Intel is: output port name. Check your xorg log file. I set both VGA and HDMI to same monitor because X windows use VGA first and then switch to HDMI (That's what log file told me).

Thanks

Noodle
find quote
BLKMGK Offline
Member+
Posts: 1,634
Joined: Jul 2006
Reputation: 3
Location: USA Virginia
Post: #18
Will backup what I have and try it, probably tomorrow - watching a movie now Tongue Thank you!

Ubuntu 10.10, MCE USB receiver, ASROCK 330 (ION), DVDs fed from unRAID cataloged by DVD Profiler. HD-DVD encoding Added DiNovo Mini KBRD w/track
find quote
Post Reply