• Willkommen im Linux Club - dem deutschsprachigen Supportforum für GNU/Linux. Registriere dich kostenlos, um alle Inhalte zu sehen und Fragen zu stellen.

tvtime und beryl

hallo!
Ich habe beryl nach folgender Anleitung installiert:
http://en.opensuse.org/index.php?title=Howto/ATI_Driver#ATI_.2B_Beryl_.2B_XGL_.2B_openSUSE_10.2

Es läuft. Nur leider meckert tvtime nun rum:

michael@michael:~> tvtime
Starte tvtime 1.0.2.
Lese Konfiguration aus /etc/tvtime/tvtime.xml
Lese Konfiguration aus /home/michael/.tvtime/tvtime.xml
xvoutput: Received X error: BadAccess (attempt to access private resource denied)
xvoutput: Received X error: BadAccess (attempt to access private resource denied)
Danke, daß Sie tvtime gewählt haben.

Gibt es dafür eine Lösung?
 
ja entweder diese Anwendung mit xnest starten

Code:
#! /bin/bash

# launch Xnest and export the $DISPLAY
Xnest -ac :1 & export DISPLAY=:1

# Put the name of your problematic app here
# end line with "&" (task gets launched in the background)

$1 &

oder falls es eine java-Anwendung ist:
AWT_TOOLKIT=MToolkit
export AWT_TOOLKIT

ansonsten java-1.6 installieren
 
oh mann, was hast du denn eingegeben?

mit solchen Fehlerbeschreibungen wie du sie lieferst kann keiner was anfangen!
 
Schon gut. Ich ahbe alle möglichen Varianten durchprobiert: z.B.

# Put the name of your problematic app here
# end line with "&" (task gets launched in the background)
tvtime
$1 &

oder
tvtime &
$1 &

oder
$tvtime &
$1 &

oder
tvtime
$1 &

usw.
die richtige Variante war bestimmt dabei ...[/quote]
 
newbie1976 schrieb:
die richtige Variante war bestimmt dabei ...

nein, war sie nicht :)

du solltest das script oben abspeichern als z.Bsp myStarte.sh
dann machst du es ausführbar mit chmod myStarter.sh
dann rufst du es auf mit myStarter tvtime

(bzw mit dem entsprechenden Start-Befehl für tvtime)

$1 = 1. Parameter für das script
$1 & = der Befehl wird im Hintergrund abgearbeitet, sonst würde die Konsole blockiert sein bis Programmende ...
 
aha,
läuft aber trotzdem nicht. gemein

xcommon: No window properties found for EWMH.
xvoutput: No XVIDEO port found which supports YUY2 images.

*** tvtime requires hardware YUY2 overlay support from your video card
*** driver. If you are using an older NVIDIA card (TNT2), then
*** this capability is only available with their binary drivers.
*** For some ATI cards, this feature may be found in the experimental
*** GATOS drivers: http://gatos.souceforge.net/
*** If unsure, please check with your distribution to see if your
*** X driver supports hardware overlay surfaces.
Code:
 
Ich habe die Lösung gefunden:

YAST-/etc/sysconfig-Editor->Desktop->Display Manager -> DISPLAYMANAGER_XGL_OPTS

-accel glx:pbuffer -accel xv -xorgAc

und tvtime starten mit

DISPLAY=:93 tvtime

und TV gucken!
 
quelle:
http://www.linuxforen.de/forums/showthread.php?t=214073&page=2

-accel glx:pbuffer -accel xv:pbuffer
ist der Standardwert und der muss ersetzt werden durch

-accel glx:pbuffer -accel xv -xorgAc
 
Oben