I recently Purchased a Logitech 9000 Pro Webcam. It worked out of the box for Ekiga and Skype. But I could not get it to work with any programs that would allow me to capture the video and sound.
After several days of googling, and total frustration I finally found out what the problem is, and a solution.
It seems that in the 64 bit HH install, v4linux2 is used, instead of v4linux. Most of the programs don't recognize v4linux2. Those that do, don't have sound, or don't offer a capture feature.
Then I found Guvcview.
http://developer.berlios.de/projects/guvcview/
They have a .deb file, but it works only on i386 and not 64 bit. But the source file works on 64 bit.
Download the source file and then:
# sudo apt-get install build-essential autotools-dev libsdl1.2-dev libgtk2.0-dev portaudio19-dev libpng12-dev
# tar -xvf guvcview-src-0.9.2.tar.gz
# cd guvcview-src-0.9.2
# ./configure --prefix=/usr
# make
# sudo make install
This program should work with all Webcams using the uvcview driver.
After several days of googling, and total frustration I finally found out what the problem is, and a solution.
It seems that in the 64 bit HH install, v4linux2 is used, instead of v4linux. Most of the programs don't recognize v4linux2. Those that do, don't have sound, or don't offer a capture feature.
Then I found Guvcview.
http://developer.berlios.de/projects/guvcview/
They have a .deb file, but it works only on i386 and not 64 bit. But the source file works on 64 bit.
Download the source file and then:
# sudo apt-get install build-essential autotools-dev libsdl1.2-dev libgtk2.0-dev portaudio19-dev libpng12-dev
# tar -xvf guvcview-src-0.9.2.tar.gz
# cd guvcview-src-0.9.2
# ./configure --prefix=/usr
# make
# sudo make install
This program should work with all Webcams using the uvcview driver.
Comment