This is a quick tip on making video from the Logitech Quickcam work on skype. I haven’t thoroughly tested this but its working for me. You may potentially need to install some more packages. I tested this on my webcam with usb info 046d:08da Logitech, Inc. QuickCam Messanger.
- Install the v4l library:
1sudo apt-get install libv4l-0
- The workaround is to call skype with the proper compatibility library preloaded.
1LD_PRELOAD=/usr/lib/libv4l/v4l1compat.so skype
- Instead of calling skype as in step 2 all the time, we write a wrapper script. First we move /usr/bin/skype to /usr/bin/skype.real the put the following script in /usr/bin/skype
1
2#!/bin/bash
LD_PRELOAD=/usr/lib/libv4l/v4l1compat.so /usr/bin/skype.realMake sure you enable execution for the script we just wrote
1sudo chmod +x /usr/bin/skype
It‘s quite in here! Why not leave a response?