Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Freevo Wiki" for change 
notification.

The following page has been changed by 82.83.131.61:
http://freevo.sourceforge.net/cgi-bin/moin.cgi/NvidiaPage

The comment on the change is:
added configuration to use both CRT and TVOut at once

------------------------------------------------------------------------------
@@ -105,3 +105,120 @@
 Since there is no frame buffer support, all commands will be either using X11 video 
or SDL. 
 
 In case of trouble with getting the TVout to work, see the 
[http://sourceforge.net/projects/nv-tv-out/ NVTV] project and set of tools.
+
+== Using CRT and TV-Out simultaneously ==
+
+It is possible to use both CRT and TV-Out at the same time as different X-Displays, 
so it is possible that Freevo is running on your TV while you can continue using your 
PC.
+
+The following configutation sets up to DISPLAYs: :0.0 is the CRT and :0.1 is TV-Out.
+
+
+=== Monitor configuration ===
+{{{
+# PC monitor
+Section "Monitor"
+    Identifier  "EizoT68"
+    HorizSync   30-96
+    VertRefresh 50-100
+    Option      "DPMS"
+EndSection
+    
+# TV out
+Section "Monitor"
+    Identifier  "PalTV"
+    HorizSync   30-50
+    VertRefresh 60
+    Option      "DPMS"
+EndSection
+}}}
+
+=== Device configuration ===
+
+{{{
+Section "Device"
+    Identifier "Dual1"
+    Driver "nvidia"
+    BusID "PCI:1:0:0"
+    Screen 1
+    Option "ConnectedMonitor"  "CRT"
+EndSection
+    
+Section "Device"
+    Identifier "Dual2"
+    Driver "nvidia"
+    BusID "PCI:1:0:0"
+    Screen 0
+    Option "ConnectedMonitor"  "TV"
+EndSection
+}}}
+
+=== Screen Configuration ===
+
+
+{{{
+Section "Screen"
+    Identifier "MonitorScreen"
+    Device "Dual1"
+    Monitor "EizoT68"
+    DefaultDepth 24
+    Subsection "Display"
+        Depth 24
+       Modes "1280x1024"
+    EndSubsection
+EndSection
+}}}
+
+Ok, this was easy....
+But now for the tricky part:
+
+{{{
+Section "Screen"
+    Identifier "TVScreen"
+    Device "Dual2"
+    Monitor "PalTV"
+    Option "SecondMonitorHorizSync"   "30-50"
+    Option "SecondMonitorVertRefresh" "50"
+    Option "MetaModes"                "800x600,800x600"
+    Option "TVOutFormat"             "COMPOSITE"
+    Option "TVStandard"               "PAL-B"
+    Option "TVOverScan"                      "1.0"
+    DefaultDepth 24
+    Subsection "Display"
+        Depth 24
+        Modes "800x600"
+    EndSubsection  
+EndSection
+}}}
+
+
+=== Server Layout ===
+
+Putting it all together:
+
+{{{
+Section "ServerLayout"
+    Identifier  "Dual"
+    Screen 0 "MonitorScreen"
+    Screen 1 "TVScreen"
+    InputDevice "Mouse1" "CorePointer"
+    InputDevice "Keyboard1" "CoreKeyboard"
+EndSection
+}}}
+
+=== Start freevo ===
+So, now you can start freevo on your TV-Out by typing
+
+{{{
+# DISPLAY=:0.1 freevo
+}}}
+
+
+==== Fullscreen issues ====
+Freevo grabs your pointer when switching to fullscreen so you cannot use it on your 
normal screen (your CRT). Thats bad, so you cannot use the fullscreen mode. Therefore, 
configure freevo to use a resolution of 800x600 and your window manager to draw no 
borders around your freevo window.
+
+==== Input Devices ====
+Freevo has the focus at start so it is possible to use the keyboard. But once freevo 
loose the focus it is not able to get it back. So you need an alternative input device 
for freevo, e.g. a lirc remote control or a bluetooth device.
+
+
+=== Example XF86Config ===
+You can find a working example of an XF86Config-4 on 
[http://www.hubbertz.de/examples/XF86COnfig-4]


-------------------------------------------------------
SF.Net email is sponsored by Shop4tech.com-Lowest price on Blank Media
100pk Sonic DVD-R 4x for only $29 -100pk Sonic DVD+R for only $33
Save 50% off Retail on Ink & Toner - Free Shipping and Free Gift.
http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285
_______________________________________________
Freevo-wikilog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-wikilog

Reply via email to