<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[QuickCam Team Forums - All Forums]]></title>
		<link>http://forums.quickcamteam.net/</link>
		<description><![CDATA[QuickCam Team Forums - http://forums.quickcamteam.net]]></description>
		<pubDate>Mon, 06 Oct 2008 17:45:59 -0700</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[Interfacing with a QuickCam Pro 9000 from Software]]></title>
			<link>http://forums.quickcamteam.net/showthread.php?tid=501</link>
			<pubDate>Mon, 06 Oct 2008 17:44:09 -0700</pubDate>
			<guid isPermaLink="false">http://forums.quickcamteam.net/showthread.php?tid=501</guid>
			<description><![CDATA[Hello,<br />
<br />
First, it is great to find a site like this one. Finding answers to detailed technical questions of this nature is rare, and much appreciated.<br />
<br />
I am considering building a small project which would require being able to control the Logitech QuickCam Pro 9000 from software. In an ideal world I would be able to set the aperture/shutter speed, choose a resolution, perhaps set the type of compression and color correction in the camera,  and then trigger an image capture. FThis image would be transferred via USB to my software so I can then manipulate it at will.<br />
<br />
I have not made a choice of software yet - I would be open to anything although VB.NET would be easiest on my end.<br />
<br />
Is this possible, and if so would you be able to give me a couple of pointers on how to achieve this?<br />
<br />
Best regards,<br />
<br />
Tom.]]></description>
			<content:encoded><![CDATA[Hello,<br />
<br />
First, it is great to find a site like this one. Finding answers to detailed technical questions of this nature is rare, and much appreciated.<br />
<br />
I am considering building a small project which would require being able to control the Logitech QuickCam Pro 9000 from software. In an ideal world I would be able to set the aperture/shutter speed, choose a resolution, perhaps set the type of compression and color correction in the camera,  and then trigger an image capture. FThis image would be transferred via USB to my software so I can then manipulate it at will.<br />
<br />
I have not made a choice of software yet - I would be open to anything although VB.NET would be easiest on my end.<br />
<br />
Is this possible, and if so would you be able to give me a couple of pointers on how to achieve this?<br />
<br />
Best regards,<br />
<br />
Tom.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Access HD resolutions for 9000pro in anything other than QuickChat?]]></title>
			<link>http://forums.quickcamteam.net/showthread.php?tid=500</link>
			<pubDate>Mon, 06 Oct 2008 09:45:32 -0700</pubDate>
			<guid isPermaLink="false">http://forums.quickcamteam.net/showthread.php?tid=500</guid>
			<description><![CDATA[I'm trying to setup som HD streaming with Flash Media Encoder 2.5. I just recently upgraded from the Quickcam Fusion to the Pro 9000 because it boasts 960x720 resolution.<br />
 <br />
Under the resolution the highest resolution tab I see is only 640x480???? The quickcam fusion supported up to 720x576 and its almost 3 years old?<br />
 <br />
]]></description>
			<content:encoded><![CDATA[I'm trying to setup som HD streaming with Flash Media Encoder 2.5. I just recently upgraded from the Quickcam Fusion to the Pro 9000 because it boasts 960x720 resolution.<br />
 <br />
Under the resolution the highest resolution tab I see is only 640x480???? The quickcam fusion supported up to 720x576 and its almost 3 years old?<br />
 <br />
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Quickcam 046d:08d8 gspca_core.c driver how to turn on illumination LED?]]></title>
			<link>http://forums.quickcamteam.net/showthread.php?tid=499</link>
			<pubDate>Fri, 03 Oct 2008 20:52:54 -0700</pubDate>
			<guid isPermaLink="false">http://forums.quickcamteam.net/showthread.php?tid=499</guid>
			<description><![CDATA[The question I have is: <br />
<br />
How can I turn the illumination LED on and off on this Quickcam Deluxe for Notebooks web cam. The usb id is 046d:08d8. <br />
<br />
I am looking at the source code for the Ubuntu Linux device driver and I don't see any variable for turning on the webcam illumination LED.<br />
<br />
Is there any other driver code or web documentation that shows controlling the LED as an example?<br />
<br />
(The driver code says this is the same camera as the 046d:08a9 Logitech Notebook Deluxe.)<br />
<br />
Let me echo how I got this far other readers:<br />
<br />
I have had good success getting a Quickcam Deluxe for Notebooks (usb id 046d:08d8 ) working on two different Ubuntu systems.<br />
<br />
I manually installed the driver with the following commands:<br />
<br />
sudo apt-get install v4l  <br />
<br />
The web contains older pages that instruct the user to download and compile a driver. As of September 2008 Ubuntu has the compiled driver in a package.  <br />
<br />
It took a system restart with the webcam plugged in for the driver and other programs to all load and work.<br />
<br />
I think gspca driver is in a driver package that is required by v4l as a dependency. That means, when you install v4l, a package of drivers are installed. One of those drivers works with this webcam.<br />
<br />
The drivers that are being loaded, as shown in tail /var/log/messages are:<br />
<br />
 ubuntu/media/gspcav1/gspca_core.c: USB SPCA5XX camera found.(ZC3XX) <br />
 usbcore: registered new interface driver gspca<br />
 ubuntu/media/gspcav1/gspca_core.c: gspca driver 01.00.12 registered<br />
 usbcore: registered new interface driver snd-usb-audio<br />
<br />
The gspca driver is available in source code as:<br />
sudo apt-get install gspca-source<br />
<br />
The source code file has to be unxipped::<br />
sudo bunzip2 gspca-source.tar.bz2<br />
sudo tar -xf gspca-source.tar<br />
<br />
Then the main c code for the webcam drivers are in:<br />
/usr/src/modules/gspca/gspca_core.c<br />
<br />
This file is C language source code. This code has lots of comments that explain what is going on.]]></description>
			<content:encoded><![CDATA[The question I have is: <br />
<br />
How can I turn the illumination LED on and off on this Quickcam Deluxe for Notebooks web cam. The usb id is 046d:08d8. <br />
<br />
I am looking at the source code for the Ubuntu Linux device driver and I don't see any variable for turning on the webcam illumination LED.<br />
<br />
Is there any other driver code or web documentation that shows controlling the LED as an example?<br />
<br />
(The driver code says this is the same camera as the 046d:08a9 Logitech Notebook Deluxe.)<br />
<br />
Let me echo how I got this far other readers:<br />
<br />
I have had good success getting a Quickcam Deluxe for Notebooks (usb id 046d:08d8 ) working on two different Ubuntu systems.<br />
<br />
I manually installed the driver with the following commands:<br />
<br />
sudo apt-get install v4l  <br />
<br />
The web contains older pages that instruct the user to download and compile a driver. As of September 2008 Ubuntu has the compiled driver in a package.  <br />
<br />
It took a system restart with the webcam plugged in for the driver and other programs to all load and work.<br />
<br />
I think gspca driver is in a driver package that is required by v4l as a dependency. That means, when you install v4l, a package of drivers are installed. One of those drivers works with this webcam.<br />
<br />
The drivers that are being loaded, as shown in tail /var/log/messages are:<br />
<br />
 ubuntu/media/gspcav1/gspca_core.c: USB SPCA5XX camera found.(ZC3XX) <br />
 usbcore: registered new interface driver gspca<br />
 ubuntu/media/gspcav1/gspca_core.c: gspca driver 01.00.12 registered<br />
 usbcore: registered new interface driver snd-usb-audio<br />
<br />
The gspca driver is available in source code as:<br />
sudo apt-get install gspca-source<br />
<br />
The source code file has to be unxipped::<br />
sudo bunzip2 gspca-source.tar.bz2<br />
sudo tar -xf gspca-source.tar<br />
<br />
Then the main c code for the webcam drivers are in:<br />
/usr/src/modules/gspca/gspca_core.c<br />
<br />
This file is C language source code. This code has lots of comments that explain what is going on.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Configure Logitech Quickcam Ultra Vision on Ubuntu 6.06]]></title>
			<link>http://forums.quickcamteam.net/showthread.php?tid=498</link>
			<pubDate>Fri, 03 Oct 2008 05:46:11 -0700</pubDate>
			<guid isPermaLink="false">http://forums.quickcamteam.net/showthread.php?tid=498</guid>
			<description><![CDATA[Hi all,<br />
<br />
Can anyone help me in configuring Logitech Quickcam Ultra Vision on Ubuntu 6.06?<br />
<br />
Right now the camera light is OFF and it just gets detected on the USB port (using lsusb) :<br />
<br />
Code:<br />
Bus 004 Device 002: ID 046d:08c9 Logitech, Inc.<br />
Bus 004 Device 001: ID 0000:0000<br />
Bus 002 Device 001: ID 0000:0000<br />
Bus 003 Device 001: ID 0000:0000<br />
Bus 001 Device 001: ID 0000:0000<br />
<br />
<br />
I have installed luvc and when i run luvcview, it shows:<br />
<br />
Code:<br />
luvcview version 0.2.1<br />
Video driver: x11<br />
A window manager is available<br />
video /dev/video0<br />
ERROR opening V4L interface<br />
: No such file or directory<br />
<br />
<br />
If somebody can walk me through installing and configuring this webcam, i would really appreciate! I have already spent a fortune on this device.<br />
<br />
Please help!<br />
[/code]]]></description>
			<content:encoded><![CDATA[Hi all,<br />
<br />
Can anyone help me in configuring Logitech Quickcam Ultra Vision on Ubuntu 6.06?<br />
<br />
Right now the camera light is OFF and it just gets detected on the USB port (using lsusb) :<br />
<br />
Code:<br />
Bus 004 Device 002: ID 046d:08c9 Logitech, Inc.<br />
Bus 004 Device 001: ID 0000:0000<br />
Bus 002 Device 001: ID 0000:0000<br />
Bus 003 Device 001: ID 0000:0000<br />
Bus 001 Device 001: ID 0000:0000<br />
<br />
<br />
I have installed luvc and when i run luvcview, it shows:<br />
<br />
Code:<br />
luvcview version 0.2.1<br />
Video driver: x11<br />
A window manager is available<br />
video /dev/video0<br />
ERROR opening V4L interface<br />
: No such file or directory<br />
<br />
<br />
If somebody can walk me through installing and configuring this webcam, i would really appreciate! I have already spent a fortune on this device.<br />
<br />
Please help!<br />
[/code]]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[how to check led status for webcam]]></title>
			<link>http://forums.quickcamteam.net/showthread.php?tid=495</link>
			<pubDate>Thu, 02 Oct 2008 10:38:27 -0700</pubDate>
			<guid isPermaLink="false">http://forums.quickcamteam.net/showthread.php?tid=495</guid>
			<description><![CDATA[Hi<br />
 <br />
I have logitech quickcam communicate delux (046d:0992) and it is working nicely in red hat linux. I just wanted to know that after taking a picture from the webcam how do i check the status of its leds so that i know how many leds were on and how many were off?? A step by step code will be appreciated<br />
 <br />
Thanks<br />
Unnati]]></description>
			<content:encoded><![CDATA[Hi<br />
 <br />
I have logitech quickcam communicate delux (046d:0992) and it is working nicely in red hat linux. I just wanted to know that after taking a picture from the webcam how do i check the status of its leds so that i know how many leds were on and how many were off?? A step by step code will be appreciated<br />
 <br />
Thanks<br />
Unnati]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[SDK or API for Orbital AF]]></title>
			<link>http://forums.quickcamteam.net/showthread.php?tid=494</link>
			<pubDate>Wed, 01 Oct 2008 12:39:25 -0700</pubDate>
			<guid isPermaLink="false">http://forums.quickcamteam.net/showthread.php?tid=494</guid>
			<description><![CDATA[Hey folks,<br />
<br />
KatchiWachi sent me here in this thread...<br />
<br />
[url=http://forums.logitech.com/logitech/board/message?board.id=quickcam_software&thread.id=49636][/url]<br />
<br />
<br />
I just got one of these in for testing and really love it.  However we need to use these in an information kiosk at trade shows and use our own propriety software created with VB6 to communicate with the camera.  In the past we used a Quick Pro 3000 and were able to do it.  Would this be possible with the Orbital AF?  Does this make sense?  I wasn't around when they did this last time and have little to no experiencs with this but it was shoved on my desk   Would appreciate any help our guidance.<br />
<br />
 <br />
Thanks!<br />
<br />
 <br />
MJ]]></description>
			<content:encoded><![CDATA[Hey folks,<br />
<br />
KatchiWachi sent me here in this thread...<br />
<br />
[url=http://forums.logitech.com/logitech/board/message?board.id=quickcam_software&thread.id=49636][/url]<br />
<br />
<br />
I just got one of these in for testing and really love it.  However we need to use these in an information kiosk at trade shows and use our own propriety software created with VB6 to communicate with the camera.  In the past we used a Quick Pro 3000 and were able to do it.  Would this be possible with the Orbital AF?  Does this make sense?  I wasn't around when they did this last time and have little to no experiencs with this but it was shoved on my desk   Would appreciate any help our guidance.<br />
<br />
 <br />
Thanks!<br />
<br />
 <br />
MJ]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Is there a possibility to implement a &quot;save this settings as default&quot;?]]></title>
			<link>http://forums.quickcamteam.net/showthread.php?tid=492</link>
			<pubDate>Wed, 01 Oct 2008 05:00:47 -0700</pubDate>
			<guid isPermaLink="false">http://forums.quickcamteam.net/showthread.php?tid=492</guid>
			<description><![CDATA[Is there a possibility to implement a "save as default" option in the QuickCam application software? We use version 11.5.0.1169 at this moment. We use the cam in a professional environment ( hospital ). Every morning they start up de software and change settings zoom and facetracking. It would be nice to be able to manage these settings "remotely". Is it a suggestion to the setting 'facetracking on/off' in a registry key?]]></description>
			<content:encoded><![CDATA[Is there a possibility to implement a "save as default" option in the QuickCam application software? We use version 11.5.0.1169 at this moment. We use the cam in a professional environment ( hospital ). Every morning they start up de software and change settings zoom and facetracking. It would be nice to be able to manage these settings "remotely". Is it a suggestion to the setting 'facetracking on/off' in a registry key?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Quickcam Chat images often too yellow]]></title>
			<link>http://forums.quickcamteam.net/showthread.php?tid=490</link>
			<pubDate>Tue, 30 Sep 2008 13:08:42 -0700</pubDate>
			<guid isPermaLink="false">http://forums.quickcamteam.net/showthread.php?tid=490</guid>
			<description><![CDATA[I have gotten my Quickcam Chat working (see http://p-s.co.nz/wordpress/?p=68) but the image is overly yellow in Skype and Cheese (except when taking a picture in the latter).  In Ekiga the image is fine.  Any settings I can tweak to get a more natural colour across all applications?<br />
<br />
The following comment could indicate a way forward but I don't know enough to follow it up:<br />
<br />
<br />
Quote:Image has blue taint with default gain levels. Has anybody got better colors using GRed,GBlue and GGreen parameters? https://wiki.ubuntu.com/HardwareSupportC...asLogitech<br />
<br />
<br />
It is possible the problem is not with the camera itself but with the overlay display of Ubuntu (Compiz involved?).  If this turns out to be the case, maybe all that can be hoped for is a warning or a disclaimer.<br />
<br />
Support info for claim about overlay:  a screenshot of Ekiga showed the image whereas a screenshot of Skype showed a black screen where the (yellowish) image was displaying.]]></description>
			<content:encoded><![CDATA[I have gotten my Quickcam Chat working (see http://p-s.co.nz/wordpress/?p=68) but the image is overly yellow in Skype and Cheese (except when taking a picture in the latter).  In Ekiga the image is fine.  Any settings I can tweak to get a more natural colour across all applications?<br />
<br />
The following comment could indicate a way forward but I don't know enough to follow it up:<br />
<br />
<br />
Quote:Image has blue taint with default gain levels. Has anybody got better colors using GRed,GBlue and GGreen parameters? https://wiki.ubuntu.com/HardwareSupportC...asLogitech<br />
<br />
<br />
It is possible the problem is not with the camera itself but with the overlay display of Ubuntu (Compiz involved?).  If this turns out to be the case, maybe all that can be hoped for is a warning or a disclaimer.<br />
<br />
Support info for claim about overlay:  a screenshot of Ekiga showed the image whereas a screenshot of Skype showed a black screen where the (yellowish) image was displaying.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[horrible picture with communicate deluxe (0992)]]></title>
			<link>http://forums.quickcamteam.net/showthread.php?tid=489</link>
			<pubDate>Mon, 29 Sep 2008 08:18:34 -0700</pubDate>
			<guid isPermaLink="false">http://forums.quickcamteam.net/showthread.php?tid=489</guid>
			<description><![CDATA[I connected a Logitech Quickcam Communicate Deluxe (046d:0992) to my Debian linux system which I just upgraded to the latest testing (lenny), with kernel 2.6.26.  <br />
<br />
The camera is recognized, and the uvc driver is loaded for it.  And I can get a picture in luvcview.  But the picture looks terrible.  I hunted down a windows system to try the camera on and it works fine there---looks great.    So it's definitely a software/driver problem and not a hardware problem.  <br />
<br />
Here is a typical example image taken under normal indoor illumination.  (The camera does much better than this with the lights off and shades drawn under windows, so lighting is not the issue.)<br />
<br />
[attachment=102]<br />
<br />
I have looked around for settings that might be relevant, but haven't found anything.  <br />
<br />
Any advice?]]></description>
			<content:encoded><![CDATA[I connected a Logitech Quickcam Communicate Deluxe (046d:0992) to my Debian linux system which I just upgraded to the latest testing (lenny), with kernel 2.6.26.  <br />
<br />
The camera is recognized, and the uvc driver is loaded for it.  And I can get a picture in luvcview.  But the picture looks terrible.  I hunted down a windows system to try the camera on and it works fine there---looks great.    So it's definitely a software/driver problem and not a hardware problem.  <br />
<br />
Here is a typical example image taken under normal indoor illumination.  (The camera does much better than this with the lights off and shades drawn under windows, so lighting is not the issue.)<br />
<br />
[attachment=102]<br />
<br />
I have looked around for settings that might be relevant, but haven't found anything.  <br />
<br />
Any advice?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Shutter type different cams?]]></title>
			<link>http://forums.quickcamteam.net/showthread.php?tid=487</link>
			<pubDate>Sun, 28 Sep 2008 06:20:10 -0700</pubDate>
			<guid isPermaLink="false">http://forums.quickcamteam.net/showthread.php?tid=487</guid>
			<description><![CDATA[Hello,<br />
<br />
This is a request for Martin. Would it be possible to add information on shutter type for each camera on the list of UVC cameras or have that information elsewhere. Especially which camers have global shutter. It seems that many people on this forum use Logitech cams for machine vision applications and this information would be useful. I saw it somewhere that 4000 Pro model has global shutter. Any others?<br />
<br />
Thanks.]]></description>
			<content:encoded><![CDATA[Hello,<br />
<br />
This is a request for Martin. Would it be possible to add information on shutter type for each camera on the list of UVC cameras or have that information elsewhere. Especially which camers have global shutter. It seems that many people on this forum use Logitech cams for machine vision applications and this information would be useful. I saw it somewhere that 4000 Pro model has global shutter. Any others?<br />
<br />
Thanks.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Source filter for QuickCam Communicate STX in GraphEdit]]></title>
			<link>http://forums.quickcamteam.net/showthread.php?tid=485</link>
			<pubDate>Thu, 25 Sep 2008 23:35:51 -0700</pubDate>
			<guid isPermaLink="false">http://forums.quickcamteam.net/showthread.php?tid=485</guid>
			<description><![CDATA[Hello,<br />
<br />
is there a source filter that gives access to a QuickCam Communicate STX webcam in applications like GraphEdit, i.e. interactively rather than in a programmatic way (i.e. the DirectShow API)?<br />
<br />
Cheers,<br />
Frank]]></description>
			<content:encoded><![CDATA[Hello,<br />
<br />
is there a source filter that gives access to a QuickCam Communicate STX webcam in applications like GraphEdit, i.e. interactively rather than in a programmatic way (i.e. the DirectShow API)?<br />
<br />
Cheers,<br />
Frank]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[CLI to dump mjpeg stream.]]></title>
			<link>http://forums.quickcamteam.net/showthread.php?tid=484</link>
			<pubDate>Thu, 25 Sep 2008 18:59:10 -0700</pubDate>
			<guid isPermaLink="false">http://forums.quickcamteam.net/showthread.php?tid=484</guid>
			<description><![CDATA[I've got  an Orbit AF on a USB 1.1 bus and I'm looking for a CLI tool to simply dump the MJPEG stream to disk.  ffmpeg wants to switch away from mjpeg mode, increasing the bandwidth requirement and reducing the resolution and gstreamer with v4l2 support is not readily available for my platform (Gumstix OE).  I really like the tool uvccapture and I'm looking for something similar for video capture.]]></description>
			<content:encoded><![CDATA[I've got  an Orbit AF on a USB 1.1 bus and I'm looking for a CLI tool to simply dump the MJPEG stream to disk.  ffmpeg wants to switch away from mjpeg mode, increasing the bandwidth requirement and reducing the resolution and gstreamer with v4l2 support is not readily available for my platform (Gumstix OE).  I really like the tool uvccapture and I'm looking for something similar for video capture.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[logitech quickcam pro 3000]]></title>
			<link>http://forums.quickcamteam.net/showthread.php?tid=483</link>
			<pubDate>Thu, 25 Sep 2008 13:53:06 -0700</pubDate>
			<guid isPermaLink="false">http://forums.quickcamteam.net/showthread.php?tid=483</guid>
			<description><![CDATA[Greetings, a friend just told me that there is something like a patch to make my webcam work, i'm trying by months now, and i'm really tired, i hope to find the answer here...<br />
i'm using ubuntu, maybe i will switch to slackware, i dont know if there is difference<br />
(i apologize for my english,i know it's not good)]]></description>
			<content:encoded><![CDATA[Greetings, a friend just told me that there is something like a patch to make my webcam work, i'm trying by months now, and i'm really tired, i hope to find the answer here...<br />
i'm using ubuntu, maybe i will switch to slackware, i dont know if there is difference<br />
(i apologize for my english,i know it's not good)]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Framerate (who decides?)]]></title>
			<link>http://forums.quickcamteam.net/showthread.php?tid=482</link>
			<pubDate>Thu, 25 Sep 2008 10:43:31 -0700</pubDate>
			<guid isPermaLink="false">http://forums.quickcamteam.net/showthread.php?tid=482</guid>
			<description><![CDATA[Hello,<br />
<br />
I´m trying to understand how my Logitech Pro 9000 works.<br />
When I put the resolution in Amcap at default 1600*1200, amcap set the framerate automatically as 5/s. But why and which component choose this value? What happen if we be able too choose a higher framerate (maybe be by reducing the exposure time too and supposing a high light environment )? Is it the same for the raw mode? (I can´t test it myself because the raw mode still doesn´t work with my webcam)<br />
Of course I get a jerked video rendering.<br />
<br />
What´s about the "set frame rate" function in AmCap? The frame rate still remain 25. Is it just a "call frame" function, which takes what it got?<br />
If so there should be no effect if I set in the video capture filter at 320x240 with 30 frame/s and then set in capture->set frame rate as 50/s.<br />
As expect the video renderer is jerked when I put the frame rate as 5/s.<br />
But why doesn´t it work with 2/s? Some fixed default value in the driver?<br />
<br />
Flo]]></description>
			<content:encoded><![CDATA[Hello,<br />
<br />
I´m trying to understand how my Logitech Pro 9000 works.<br />
When I put the resolution in Amcap at default 1600*1200, amcap set the framerate automatically as 5/s. But why and which component choose this value? What happen if we be able too choose a higher framerate (maybe be by reducing the exposure time too and supposing a high light environment )? Is it the same for the raw mode? (I can´t test it myself because the raw mode still doesn´t work with my webcam)<br />
Of course I get a jerked video rendering.<br />
<br />
What´s about the "set frame rate" function in AmCap? The frame rate still remain 25. Is it just a "call frame" function, which takes what it got?<br />
If so there should be no effect if I set in the video capture filter at 320x240 with 30 frame/s and then set in capture->set frame rate as 50/s.<br />
As expect the video renderer is jerked when I put the frame rate as 5/s.<br />
But why doesn´t it work with 2/s? Some fixed default value in the driver?<br />
<br />
Flo]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Quickcam Pro 9000 - Slow using snapshot at 1.3mp]]></title>
			<link>http://forums.quickcamteam.net/showthread.php?tid=481</link>
			<pubDate>Thu, 25 Sep 2008 08:02:14 -0700</pubDate>
			<guid isPermaLink="false">http://forums.quickcamteam.net/showthread.php?tid=481</guid>
			<description><![CDATA[When using the snapshot feature on the quickcam pro 9000 at 1.3 megapixals the PC just seems to sit there and do nothing. Every now and then it will take a snapshot.  <br />
<br />
Now if I lower the resolution it takes a snapshot instantly and displays it on screen.<br />
<br />
Any ideas what I can try to get round this as it seems fine on another PC.<br />
<br />
cheers<br />
Paul]]></description>
			<content:encoded><![CDATA[When using the snapshot feature on the quickcam pro 9000 at 1.3 megapixals the PC just seems to sit there and do nothing. Every now and then it will take a snapshot.  <br />
<br />
Now if I lower the resolution it takes a snapshot instantly and displays it on screen.<br />
<br />
Any ideas what I can try to get round this as it seems fine on another PC.<br />
<br />
cheers<br />
Paul]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Exploiting the advantage of CMOS Sensor]]></title>
			<link>http://forums.quickcamteam.net/showthread.php?tid=480</link>
			<pubDate>Thu, 25 Sep 2008 02:38:19 -0700</pubDate>
			<guid isPermaLink="false">http://forums.quickcamteam.net/showthread.php?tid=480</guid>
			<description><![CDATA[Hello,<br />
<br />
I´m using a Logitech Webcam Pro 9000. I´m working at an application (in c++ with Directshow), which shows me a window with the video renderer an another window as an histogram. The histogram gives me the intensity value of a pixel in function of his horizontal position. The user should be able to choose a horizontal pixelline from the video renderer and get instantly the histogram from that line.<br />
I don´t know exactly how I will implement it.<br />
<br />
But as I remembered the advantage of cmos sensor, one is, that one can choose a partial zone on the sensor to work with. This is not possible on the ccd sensor like on the Quickcam Pro 3000 to 5000. By ccd you have to take the full sensor information and filter out what you don´t need with data work.<br />
So, is it a way to get from my cmos webcam only the pixelline which I choose, whithout filter out the pixels which I don´t need? I think this way I would economize a lot of ressource because I don´t have to handle the full amount of sensor data.<br />
<br />
Tell me there is a way! Please ;D<br />
<br />
Flo]]></description>
			<content:encoded><![CDATA[Hello,<br />
<br />
I´m using a Logitech Webcam Pro 9000. I´m working at an application (in c++ with Directshow), which shows me a window with the video renderer an another window as an histogram. The histogram gives me the intensity value of a pixel in function of his horizontal position. The user should be able to choose a horizontal pixelline from the video renderer and get instantly the histogram from that line.<br />
I don´t know exactly how I will implement it.<br />
<br />
But as I remembered the advantage of cmos sensor, one is, that one can choose a partial zone on the sensor to work with. This is not possible on the ccd sensor like on the Quickcam Pro 3000 to 5000. By ccd you have to take the full sensor information and filter out what you don´t need with data work.<br />
So, is it a way to get from my cmos webcam only the pixelline which I choose, whithout filter out the pixels which I don´t need? I think this way I would economize a lot of ressource because I don´t have to handle the full amount of sensor data.<br />
<br />
Tell me there is a way! Please ;D<br />
<br />
Flo]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[PTZ w/o libwebcam]]></title>
			<link>http://forums.quickcamteam.net/showthread.php?tid=479</link>
			<pubDate>Thu, 25 Sep 2008 01:24:59 -0700</pubDate>
			<guid isPermaLink="false">http://forums.quickcamteam.net/showthread.php?tid=479</guid>
			<description><![CDATA[Hi,<br />
I'm currently writing an application and now I would like to control my webcam with it.<br />
But this is a stand alone application, so I would not have libwebcam installed.<br />
<br />
How can I control PT(Z) directely from my application ?]]></description>
			<content:encoded><![CDATA[Hi,<br />
I'm currently writing an application and now I would like to control my webcam with it.<br />
But this is a stand alone application, so I would not have libwebcam installed.<br />
<br />
How can I control PT(Z) directely from my application ?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Strange FPS behaviour - luvcview]]></title>
			<link>http://forums.quickcamteam.net/showthread.php?tid=478</link>
			<pubDate>Thu, 25 Sep 2008 00:18:47 -0700</pubDate>
			<guid isPermaLink="false">http://forums.quickcamteam.net/showthread.php?tid=478</guid>
			<description><![CDATA[Hi all,<br />
<br />
I have small question about FPS performance I get with my camera.<br />
<br />
My camera is build-in USB laptop camera from Chicony electronics:<br />
> Bus 001 Device 002: ID 04f2:b018 Chicony Electronics Co., Ltd<br />
<br />
Uvcvideo (same as specification) claims it should support 25fps.<br />
Here is what I get after loading uvcvideo with trace=15 parameter:<br />
uvcvideo: Found format YUV 4:2:2 (YUYV).<br />
uvcvideo: - 640x480 (25.0 fps)<br />
uvcvideo: - 352x288 (25.0 fps)<br />
uvcvideo: - 320x240 (25.0 fps)<br />
uvcvideo: - 176x144 (25.0 fps)<br />
uvcvideo: - 160x120 (25.0 fps)<br />
uvcvideo: - 800x600 (20.0 fps)<br />
uvcvideo: - 1280x960 (6.6 fps)<br />
uvcvideo: - 1600x1200 (5.0 fps)<br />
All log can be found here: http://pastebin.com/f1aeb0d4f<br />
<br />
<br />
What is strange sometimes with luvcview im getting 6 FPS, sometimes 12 FPS.<br />
Could anyone please help me with that problem ? I would like to obtain as much FPS as possible.<br />
<br />
Ah I would forgot.<br />
Im using luvcview from SVN, version 0.2.1<br />
<br />
Thank you in advance,<br />
Pablo]]></description>
			<content:encoded><![CDATA[Hi all,<br />
<br />
I have small question about FPS performance I get with my camera.<br />
<br />
My camera is build-in USB laptop camera from Chicony electronics:<br />
> Bus 001 Device 002: ID 04f2:b018 Chicony Electronics Co., Ltd<br />
<br />
Uvcvideo (same as specification) claims it should support 25fps.<br />
Here is what I get after loading uvcvideo with trace=15 parameter:<br />
uvcvideo: Found format YUV 4:2:2 (YUYV).<br />
uvcvideo: - 640x480 (25.0 fps)<br />
uvcvideo: - 352x288 (25.0 fps)<br />
uvcvideo: - 320x240 (25.0 fps)<br />
uvcvideo: - 176x144 (25.0 fps)<br />
uvcvideo: - 160x120 (25.0 fps)<br />
uvcvideo: - 800x600 (20.0 fps)<br />
uvcvideo: - 1280x960 (6.6 fps)<br />
uvcvideo: - 1600x1200 (5.0 fps)<br />
All log can be found here: http://pastebin.com/f1aeb0d4f<br />
<br />
<br />
What is strange sometimes with luvcview im getting 6 FPS, sometimes 12 FPS.<br />
Could anyone please help me with that problem ? I would like to obtain as much FPS as possible.<br />
<br />
Ah I would forgot.<br />
Im using luvcview from SVN, version 0.2.1<br />
<br />
Thank you in advance,<br />
Pablo]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[ffmpeg resolution resetting]]></title>
			<link>http://forums.quickcamteam.net/showthread.php?tid=477</link>
			<pubDate>Wed, 24 Sep 2008 09:52:05 -0700</pubDate>
			<guid isPermaLink="false">http://forums.quickcamteam.net/showthread.php?tid=477</guid>
			<description><![CDATA[I'm trying to capture raw mjpeg data and write it to disk (for later reprocessing) using ffmpeg.  My platform is ARM using USB 1.1, so I've got limited bandwidth and CPU power.  My strategy is to first get the camera data to disk without any processing and process it into lower bandwidth video later. <br />
<br />
The problem I'm having with ffmpeg is that it reduces my resolution to 176x144, regardless of what I specify.  I suspect that it's not using the camera's mjpeg mode.  Here is the command I issue:<br />
<br />
    ffmpeg -f video4linux2 -vcodec mjpeg -s 640x480 -r 15 -i /dev/video0 -vcodec copy out.mjpeg<br />
<br />
I'm able to capture images with uvccapture, so I think support is there at the v4l2 level.  Maybe I'm missing a command or maybe this isn't supported with ffmpeg.  That begs the question.  Is there a simpler way to dump the mjpeg stream from the camera?<br />
<br />
I've included the full ffmpeg input and output below for reference.  Thanks.<br />
<br />
-Randall<br />
<br />
<br />
<br />
root@gumstix-custom-verdex:~&#36; ffmpeg -f video4linux2 -vcodec mjpeg -s 640x480 -r 15 -i /dev/video0 -vcodec copy out.mjpeg<br />
FFmpeg version SVN-r15392, Copyright &copy; 2000-2008 Fabrice Bellard, et al.<br />
  configuration: --enable-cross-compile --cc=/home/randall/gumstix/gumstix-oe/tmp/cross/bin/arm-angstrom-linux-gnueabi-gcc --arch=arm --enable-nonfree --disable-stripping --disable-armvfp --disable-armv6<br />
  libavutil     49.10. 0 / 49.10. 0<br />
  libavcodec    52. 0. 0 / 52. 0. 0<br />
  libavformat   52.22. 1 / 52.22. 1<br />
  libavdevice   52. 1. 0 / 52. 1. 0<br />
  built on Sep 23 2008 13:05:31, gcc: 4.1.2<br />
[video4linux2 @ 0x7c3320][3]Capabilities: 4000001<br />
[video4linux2 @ 0x7c3320]The V4L2 driver changed the video from 640x480 to 176x144<br />
Input #0, video4linux2, from '/dev/video0':<br />
  Duration: N/A, start: 1222277483.530381, bitrate: 6082 kb/s<br />
    Stream #0.0: Video: mjpeg, yuyv422, 176x144, 6082 kb/s, 15.00 tb&reg;<br />
File 'out.mjpeg' already exists. Overwrite ? [y/N] y<br />
Output #0, mjpeg, to 'out.mjpeg':<br />
    Stream #0.0: Video: mjpeg, yuyv422, 176x144, q=2-31, 6082 kb/s, 15.00 tb&copy;<br />
Stream mapping:<br />
  Stream #0.0 -> #0.0<br />
Press [q] to stop encoding<br />
frame=   12 fps=  2 q=-1.0 Lsize=     594kB time=0.82 bitrate=5904.0kbits/s]]></description>
			<content:encoded><![CDATA[I'm trying to capture raw mjpeg data and write it to disk (for later reprocessing) using ffmpeg.  My platform is ARM using USB 1.1, so I've got limited bandwidth and CPU power.  My strategy is to first get the camera data to disk without any processing and process it into lower bandwidth video later. <br />
<br />
The problem I'm having with ffmpeg is that it reduces my resolution to 176x144, regardless of what I specify.  I suspect that it's not using the camera's mjpeg mode.  Here is the command I issue:<br />
<br />
    ffmpeg -f video4linux2 -vcodec mjpeg -s 640x480 -r 15 -i /dev/video0 -vcodec copy out.mjpeg<br />
<br />
I'm able to capture images with uvccapture, so I think support is there at the v4l2 level.  Maybe I'm missing a command or maybe this isn't supported with ffmpeg.  That begs the question.  Is there a simpler way to dump the mjpeg stream from the camera?<br />
<br />
I've included the full ffmpeg input and output below for reference.  Thanks.<br />
<br />
-Randall<br />
<br />
<br />
<br />
root@gumstix-custom-verdex:~&#36; ffmpeg -f video4linux2 -vcodec mjpeg -s 640x480 -r 15 -i /dev/video0 -vcodec copy out.mjpeg<br />
FFmpeg version SVN-r15392, Copyright &copy; 2000-2008 Fabrice Bellard, et al.<br />
  configuration: --enable-cross-compile --cc=/home/randall/gumstix/gumstix-oe/tmp/cross/bin/arm-angstrom-linux-gnueabi-gcc --arch=arm --enable-nonfree --disable-stripping --disable-armvfp --disable-armv6<br />
  libavutil     49.10. 0 / 49.10. 0<br />
  libavcodec    52. 0. 0 / 52. 0. 0<br />
  libavformat   52.22. 1 / 52.22. 1<br />
  libavdevice   52. 1. 0 / 52. 1. 0<br />
  built on Sep 23 2008 13:05:31, gcc: 4.1.2<br />
[video4linux2 @ 0x7c3320][3]Capabilities: 4000001<br />
[video4linux2 @ 0x7c3320]The V4L2 driver changed the video from 640x480 to 176x144<br />
Input #0, video4linux2, from '/dev/video0':<br />
  Duration: N/A, start: 1222277483.530381, bitrate: 6082 kb/s<br />
    Stream #0.0: Video: mjpeg, yuyv422, 176x144, 6082 kb/s, 15.00 tb&reg;<br />
File 'out.mjpeg' already exists. Overwrite ? [y/N] y<br />
Output #0, mjpeg, to 'out.mjpeg':<br />
    Stream #0.0: Video: mjpeg, yuyv422, 176x144, q=2-31, 6082 kb/s, 15.00 tb&copy;<br />
Stream mapping:<br />
  Stream #0.0 -> #0.0<br />
Press [q] to stop encoding<br />
frame=   12 fps=  2 q=-1.0 Lsize=     594kB time=0.82 bitrate=5904.0kbits/s]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[USB bandwidth]]></title>
			<link>http://forums.quickcamteam.net/showthread.php?tid=476</link>
			<pubDate>Wed, 24 Sep 2008 07:58:40 -0700</pubDate>
			<guid isPermaLink="false">http://forums.quickcamteam.net/showthread.php?tid=476</guid>
			<description><![CDATA[My Logitech QuickCam Express (VID_046D, PID_092F) USB 1.1 (12Mbit/s) runs well with the following settings:<br />
I420 (12bits) @ 355x288 @ 30fps = 35.1Mbit/s<br />
<br />
Using Advanced USB Port Monitor 2.3 it detects a constant 7Mbit/s irrespective of resolution or frame rate (double-checked and compared with other USB devices). Is the camera always sending its native resolution (355x288) which is then being downscaled (160x120) or upscaled (640x480) on the computer?<br />
<br />
How is it possible that 35.1Mbit/s can be sent via USB 1.1, yet alone through a constant 7Mbit/s?]]></description>
			<content:encoded><![CDATA[My Logitech QuickCam Express (VID_046D, PID_092F) USB 1.1 (12Mbit/s) runs well with the following settings:<br />
I420 (12bits) @ 355x288 @ 30fps = 35.1Mbit/s<br />
<br />
Using Advanced USB Port Monitor 2.3 it detects a constant 7Mbit/s irrespective of resolution or frame rate (double-checked and compared with other USB devices). Is the camera always sending its native resolution (355x288) which is then being downscaled (160x120) or upscaled (640x480) on the computer?<br />
<br />
How is it possible that 35.1Mbit/s can be sent via USB 1.1, yet alone through a constant 7Mbit/s?]]></content:encoded>
		</item>
	</channel>
</rss>