My Webcam likes Cheese but...[SOLVED]

Questions about hardware, drivers and peripherals
Forum rules
Before you post read how to get help. Topics in this forum are automatically closed 6 months after creation.
User avatar
riki
Level 4
Level 4
Posts: 475
Joined: Thu Jun 03, 2010 4:57 pm
Location: UK
Contact:

My Webcam likes Cheese but...[SOLVED]

Post by riki »

I have just installed Cheese and it works with my Creative Live! CAM Vista IM VF0260. However, Skype still won't have it. I am running LMDE. Any thoughts? Thanks.
Last edited by LockBot on Wed Dec 28, 2022 7:16 am, edited 2 times in total.
Reason: Topic automatically closed 6 months after creation. New replies are no longer allowed.
lauren

Re: My Webcam likes Cheese but...

Post by lauren »

Hi!
First I would run

Code: Select all

lsub
to find out details about the web cam; my part of output:

Code: Select all

Bus 001 Device 003: ID 0c45:63f1 Microdia Integrated Webcam
afterwards search e.g. with Google. Then

Code: Select all

dmesg
and search an entry with web cam; in my case (cam works with Skype) I found:

Code: Select all

[   18.227264] input: Integrated_Webcam_2M as /devices/pci0000:00/0000:00:1a.7/usb1/1-6/1-6:1.0/input/input7
[   18.227351] usbcore: registered new interface driver uvcvideo
[   18.227353] USB Video Class driver (v0.1.0)
lauren
User avatar
riki
Level 4
Level 4
Posts: 475
Joined: Thu Jun 03, 2010 4:57 pm
Location: UK
Contact:

Re: My Webcam likes Cheese but...

Post by riki »

lauren wrote:Hi!
First I would run

Code: Select all

lsub
to find out details about the web cam; my part of output:

Code: Select all

Bus 001 Device 003: ID 0c45:63f1 Microdia Integrated Webcam
afterwards search e.g. with Google. Then

Code: Select all

dmesg
and search an entry with web cam; in my case (cam works with Skype) I found:

Code: Select all

[   18.227264] input: Integrated_Webcam_2M as /devices/pci0000:00/0000:00:1a.7/usb1/1-6/1-6:1.0/input/input7
[   18.227351] usbcore: registered new interface driver uvcvideo
[   18.227353] USB Video Class driver (v0.1.0)
lauren
Thanks lauren but I have just received a message from Creative saying that they do not have a driver for Linux.

Edit. Also, your command not found.
lauren

Re: My Webcam likes Cheese but...

Post by lauren »

Hi!
Okay.

Code: Select all

dmesg
runs with Gnome and KDE; strange that you had no success with LMDE, because it's a very useful command.
lauren
User avatar
riki
Level 4
Level 4
Posts: 475
Joined: Thu Jun 03, 2010 4:57 pm
Location: UK
Contact:

Re: My Webcam likes Cheese but...

Post by riki »

lauren wrote:Hi!
Okay.

Code: Select all

dmesg
runs with Gnome and KDE; strange that you had no success with LMDE, because it's a very useful command.
lauren
It's your first command that doesn't work: lsub
lauren

Re: My Webcam likes Cheese but...

Post by lauren »

Hi!
Sorry, I made a mistake, of course, it's

Code: Select all

lsusb
lauren
User avatar
riki
Level 4
Level 4
Posts: 475
Joined: Thu Jun 03, 2010 4:57 pm
Location: UK
Contact:

Re: My Webcam likes Cheese but...

Post by riki »

lauren wrote:Hi!
Sorry, I made a mistake, of course, it's

Code: Select all

lsusb
lauren
Right...this is what I get:

Bus 002 Device 005: ID 041e:4052 Creative Technology, Ltd Live! Cam Vista IM
Bus 002 Device 003: ID 062a:0000 Creative Labs Optical mouse
Bus 002 Device 002: ID 049f:000e Compaq Computer Corp. Internet Keyboard
Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 001 Device 004: ID 1307:0330 Transcend Information, Inc.
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
lauren

Re: My Webcam likes Cheese but...

Post by lauren »

Hi!
1. See http://wiki.debian.org/HowToIdentifyADevice/PCI
2. I would search (hex numbers from "lsusb"):
041e:4052
lauren
User avatar
riki
Level 4
Level 4
Posts: 475
Joined: Thu Jun 03, 2010 4:57 pm
Location: UK
Contact:

Re: My Webcam likes Cheese but...

Post by riki »

lauren wrote:Hi!
1. See http://wiki.debian.org/HowToIdentifyADevice/PCI
2. I would search (hex numbers from "lsusb"):
041e:4052
lauren
Sorry lauren but I am beginning to get confused, stuck at this point. :oops:
lauren

Re: My Webcam likes Cheese but...

Post by lauren »

Hi!
What I wanted to say: search with Google, entering
041e:4052
I found:
https://wiki.ubuntu.com/SkypeWebCams
I know, it's Ubuntu, but sometimes hints from Ubuntu work in Mint.
lauren
User avatar
riki
Level 4
Level 4
Posts: 475
Joined: Thu Jun 03, 2010 4:57 pm
Location: UK
Contact:

Re: My Webcam likes Cheese but...

Post by riki »

lauren wrote:Hi!
What I wanted to say: search with Google, entering
041e:4052
I found:
https://wiki.ubuntu.com/SkypeWebCams
I know, it's Ubuntu, but sometimes hints from Ubuntu work in Mint.
lauren
Many thanks for your time lauren. I am abandoning this task (again!) because I don't really want to bork my system as I've done in the past. I must confess that CLI is not my forte, I'm a GUI guy and the less I tinkle with commands, the least trouble I get into. :)
lauren

Re: My Webcam likes Cheese but...

Post by lauren »

Okay, I understand.
There are too many possibilities why something does not work. Remote diagnosis is complicated.
lauren
defcon

Re: My Webcam likes Cheese but...

Post by defcon »

Open a terminal and type:

Code: Select all

LD_PRELOAD=/usr/lib/libv4l/v4l1compat.so skype
When it works, you can create a script.

Code: Select all

#!/bin/sh
LD_PRELOAD=/usr/lib/libv4l/v4l1compat.so skype
Save it as skype-webcam-fix.sh in /usr/bin
Make it executable:
chmod a+x /usr/bin/skype-webcam-fix.sh

Then edit /usr/share/applications/skype.desktop

Code: Select all

Exec=/usr/bin/skype-webcam-fix.sh
User avatar
riki
Level 4
Level 4
Posts: 475
Joined: Thu Jun 03, 2010 4:57 pm
Location: UK
Contact:

Re: My Webcam likes Cheese but...

Post by riki »

defcon wrote:Open a terminal and type:

Code: Select all

LD_PRELOAD=/usr/lib/libv4l/v4l1compat.so skype
When it works, you can create a script.

Code: Select all

#!/bin/sh
LD_PRELOAD=/usr/lib/libv4l/v4l1compat.so skype
Save it as skype-webcam-fix.sh in /usr/bin
Make it executable:
chmod a+x /usr/bin/skype-webcam-fix.sh

Then edit /usr/share/applications/skype.desktop

Code: Select all

Exec=/usr/bin/skype-webcam-fix.sh
WOW!!!!!!!!!!!!!! It works! :lol: How did you work that one out? I've been trying for years to find a drive to make it work. Thanks a million Jens.
defcon

Re: My Webcam likes Cheese but...[SOLVED]

Post by defcon »

I'm pleased that i could help you. ;-)
User avatar
riki
Level 4
Level 4
Posts: 475
Joined: Thu Jun 03, 2010 4:57 pm
Location: UK
Contact:

Re: My Webcam likes Cheese but...[SOLVED]

Post by riki »

defcon wrote:I'm pleased that i could help you. ;-)
And I am very grateful to you Jens.
User avatar
riki
Level 4
Level 4
Posts: 475
Joined: Thu Jun 03, 2010 4:57 pm
Location: UK
Contact:

Re: My Webcam likes Cheese but...[SOLVED]

Post by riki »

Jens, I am curious to know why my Creative webcam, for which there is no driver available for Linux, now functions without it. I've always understood that a driver was necessary. Please enlighten me.
defcon

Re: My Webcam likes Cheese but...[SOLVED]

Post by defcon »

Well, i think the problem is that the hardware-support in the debian-based LMDE not so good as in an actual Ubuntu or Mint10.
On my notebook with Mint10 the integrated webcam works fine with skype, i only have (had) troubles in LMDE.

But it is only a guess.
Pierrelebonc
Level 1
Level 1
Posts: 2
Joined: Tue Nov 30, 2010 1:20 pm

Re: My Webcam likes Cheese but...[SOLVED]

Post by Pierrelebonc »

Just want to say a BIG thank you to Jens for his solution to this problem. Pure genius for a newby like me!
qbicdesign

Re: My Webcam likes Cheese but...[SOLVED]

Post by qbicdesign »

Great! worked for me with my obscure Speedlink Brace webcam!
v happy!
Locked

Return to “Hardware Support”