Martin Paul Eve bio photo

Martin Paul Eve

Professor of Literature, Technology and Publishing at Birkbeck, University of London

Email Books Twitter Github Stackoverflow MLA CORE Institutional Repo Hypothes.is ORCID ID  ORCID iD Wikipedia Pictures for Re-Use

I've just been playing around with my webcam, which I haven't hooked up in ages, and was unable to get it working under my 64bit Fedora installation. Having done a bit of reading, and having found that some applications can use the camera, I worked out the solution.

32bit applications need to have the 32bit library put into their LD_PRELOAD environment variable.

This will work only if your camera is being correctly detected, but doesn't seem to work in certain apps. To check, run dmesg and look for the following output:

[    2.878055] usb 2-4: New USB device found, idVendor=046d, idProduct=0928
[    2.878261] usb 2-4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.878458] usb 2-4: Product: Camera
[    2.878649] usb 2-4: Manufacturer:         

I tried doing this via .bashrc originally, but the problem was that 64bit applications then continually churned out garbage. The eventual solution was as follows:

For each application that uses a 32bit component for which you want webcam access (Firefox/Flash, Skype) create a file called program-cam-fix in /usr/bin/.

Here's my firefox-cam-fix file:

#! /bin/sh
LD_PRELOAD=/usr/lib/libv4l/v4l1compat.so firefox $1

My skype-cam-fix file doesn't have the $1 at the end as the launcher doesn't pass any arguments.

Next, modify the files /usr/share/applications/mozilla-firefox.desktop and /usr/share/applications/skype.desktop so that the exec lines point to your new scripts (/usr/bin/skype-cam-fix or /usr/bin/firefox-cam-fix). You'll need to use sudo.

Now, when you start skype, or firefox, you should be able to use the webcam.