How do I get a vm to detect integrated camera?

3

I have an IBM ThinkPad T500 running Windows 7, and a Windows 7 VM running through VMWare Player. Nevermind the why. How do I get the integrated camera to be detected by the VM?

antony.trupe

Posted 2010-09-21T13:01:15.910

Reputation: 357

2This may belong on superuser, but that place scares me, so I'm starting here. – antony.trupe – 2010-09-21T13:01:23.753

Did you connect the USB device to the VM via the USB menu in VMWare? – Nate Pinchot – 2010-09-21T13:05:14.607

@Nate I tried that right after I posted. It's 'almost' working now. The app sees the camera, but it's not picking up any video. – antony.trupe – 2010-09-21T13:06:37.837

Why does it scare you? – Paused until further notice. – 2010-09-21T13:56:42.753

Answers

6

Integrated cameras typically show up as USB devices. VMware will allow you to connect the USB device to the virtual machine. Of course, the integrated camera driver will need to be installed to the VM guest operating system in order for this to work.

Miles Erickson

Posted 2010-09-21T13:01:15.910

Reputation: 1 079

0

I tried all the options but failed to get it to work with my HP TrueVision Webcam. I had trouble installing its driver as it showed that "Webcam not found, please plug it in and press install again". My laptop was HP 15-d103tx with VMware 12 pro. The cam was working on Youcam and Chrome and Skype on Windows 7 64bit.

VMware would show error that "the connection for chicony hp truevision was unsuccessful"

My options:

1) get a new USB webcam and try again. or maybe try to utilise my mobile cam.

2) My BIOS won't let me Moving the device from a USB 3.0 port to a USB 2.0 port as it showed only Auto(USB 2.0 pre-boot) and Enable for USB 3.0

My solution was to use my mobile cam through Droidcam

You get a client for Windows and Ubuntu.

  • You can get a client for Windows over here
  • You can get it for ubuntu over here
  • You can install the app from here

Bonus: code for installing client for ubuntu

cd /tmp/
sudo apt-get install linux-headers-`uname -r`
bits=`getconf LONG_BIT`
wget https://www.dev47apps.com/files/600/droidcam-${bits}bit.tar.bz2
tar xjf droidcam-${bits}bit.tar.bz2
cd droidcam-${bits}bit/
sudo ./install

Now to use your mobile cam, type droidcam in terminal and open app on mobile and type the IP and port number as shown on mobile and both laptop and mobile should be connected to same Wifi.

To test: use cheese if you don't have it already, sudo apt-get install cheese and you can see that mobile webcam is indeed working. You can also connect it though USB(adb) instead of wifi.

abe312

Posted 2010-09-21T13:01:15.910

Reputation: 527