mplayer tvout

F

flammenflitzer

Routinier
Hallo
Ich habe zwei separate config für tvinview und tvout. (/etc/X11/tvinview.conf und /etc/X11/tvout.conf). In meiner .xinitrc steht nur /usr/bin/icewm. D.h., wenn ich
startx -- :1 -xf86config /etc/X11/tvinview.conf
startx -- :1 -xf86config /etc/X11/tvout.conf
aufrufe, wird icewm gestartet. Allerdings würde ich gern tvout.conf nur für mplayer nutzten. d.h. das bei Aufruf kein Desktop getsartet wird, sondern nur mplayer. Kann mir da jemand helfen?
Code:
 cat /etc/X11/tvout.conf
Section "ServerLayout"
        Identifier     "X.org Configured"
        Screen      1  "Screen1" 0 0
        InputDevice    "Mouse1" "CorePointer"
        InputDevice    "Keyboard1" "CoreKeyboard"
EndSection

Section "Files"
        RgbPath        "/usr/lib64/X11/rgb"
        ModulePath     "/usr/lib64/modules"
        FontPath       "/usr/share/fonts/msfonts-style/
        FontPath       "/usr/share/fonts/sgi-fonts/
        FontPath        "/usr/share/fonts/sharefonts/
        FontPath        "/usr/share/fonts/vc/"
        FontPath        "/usr/share/fonts/misc"
        FontPath        "/usr/share/fonts/TTF"
        FontPath        "/usr/share/fonts/Type1"
        FontPath        "/usr/share/fonts/75dpi"
        FontPath        "/usr/share/fonts/100dpi"
        FontPath        "/usr/share/fonts/afms"
        FontPath        "/usr/share/fonts/artwiz"
        FontPath        "/usr/share/fonts/corefonts"
        FontPath        "/usr/share/fonts/default"
        FontPath        "/usr/share/fonts/encodings"
        FontPath        "/usr/share/fonts/freefont"
EndSection


Section "InputDevice"
        Identifier  "Keyboard1"
        Driver      "kbd"
        Option      "CoreKeyboard"
        Option      "XkbModel" "pc105"
        Option      "XkbLayout" "de"
        Option      "XkbVariant" "nodeadkeys"

EndSection

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

Section "Monitor"
  Identifier   "TV"
  ModelName    "PAL TV"
  VendorName   "SONY"
  HorizSync    30-50
  VertRefresh  57-60
#  UseModes     "Modes[2]"
EndSection

Section "Device"
        Identifier      "NV2"
        Driver          "nvidia"
        BusID           "PCI:1:0:0" #adjust using 'lspci' or cat /proc/pci
        Option          "TVStandard" "PAL-G"
        Option          "TVOutFormat" "Composite" #or S-VIDEO etc
#        Option "IgnoreEDID"                 "off"
        Option "ConnectedMonitor" "TV"
        Option          "NoLogo"
        Screen 0
EndSection

Section "Screen"
    Identifier "Screen1"
    Device "NV2"
    Monitor "TV"
    DefaultDepth 16
        Subsection "Display"
        Depth 16
        Modes "800x600"
#        ViewPort    0 0
   EndSubsection
EndSection

Section "ServerLayout"
    Identifier  "tv_out"
    Screen "Screen1" # RightOf "Screen[0]"
    InputDevice "Mouse1" "CorePointer"
    InputDevice "Keyboard1" "CoreKeyboard"
EndSection
 
Mit einer ~/.xinitrc wird nur das gestartet, was dort drin steht, d.h., wenn sie leer ist, siehst Du nur einen grauen Hintergrund. Wenn Du also Deinen mplayer-Befehl dort reinschreibst, sollte Dein Ziel erreicht sein.
 

Ähnliche Themen

X11 Monitor Position

X startet nichtmehr

2Monitore und 20-nvidia.conf

Samba 4 Gast Zugang unter Ubuntu funktioniert nicht

Windows clients können nicht mehr auf lange laufendes System zugreifen

Zurück
Oben