QuickCam Messanger & Skype - How to get it work

ZyTaro
  13 years ago
  5

The packages libv4l-0 and lib32v4l-0 are needed - if necessary they must be still installed.

In order to be able to use the camera with Skype, I proceeded as follows:

1. Open a Terminal:

sudo gedit /usr/local/bin/skype

add for 32bit the following lines:

#!/bin/sh
LD_PRELOAD=/usr/lib/libv4l/v4l1compat.so /usr/bin/skype "$@"

add for 64bit the following lines:

#!/bin/sh
LD_PRELOAD=/usr/lib32/libv4l/v4l1compat.so /usr/bin/skype "$@"

Save the file.

To use it - execute the chmod command:

sudo chmod a+x /usr/local/bin/skype

2. Skype-applet adaptation in Main menu:

Main menu > Internet > Skype - program properties

Exchange the command "skype" against the following entry:


bash -c "export XLIB_SKIP_ARGB_VISUALS=1 && skype"

Save & enjoy it

---

Die Pakete libv4l-0 und lib32v4l-0 werden benötigt - ggf. sind sie noch zu installieren.

Um die Cam mit Skype für die Videoübertragung nutzen zu können, bin ich folgendermaßen vorgegangen


1. Ein Terminal öffnen:

sudo gedit /usr/local/bin/skype

Für 32bit-Systeme fügt man die nachstehenden Zeilen ein:

#!/bin/sh
LD_PRELOAD=/usr/lib/libv4l/v4l1compat.so /usr/bin/skype "$@"

Für 64bit-Systeme fügt man die nachstehenden Zeilen ein:

#!/bin/sh
LD_PRELOAD=/usr/lib32/libv4l/v4l1compat.so /usr/bin/skype "$@"

Die Datei speichern.

Im Terminal folgendes Kommando ausführen:

sudo chmod a+x /usr/local/bin/skype

2. Den Skype-Starter im Hauptmenü anpassen:

Hauptmenü > Internet > Skype - Eigenschaften

Den Befehl "skype" gegen den folgenden Eintrag austauschen:


bash -c "export XLIB_SKIP_ARGB_VISUALS=1 && skype"

Speichern & skypen!

Comments
prosiedem 12 years ago

Excellent tutorial. Works just fine.