up vote 1 down vote favorite
1
share [g+] share [fb]

I've noticed that raw data from my webcam comes in the from of YUY2. Actually, this "raw data" is the input for an AVICAP callback, and I suppose that this is the actual data from the webcam.

Anyway, do all the webcams use YUY2 format, or should I expect different formats as well?

link|improve this question
feedback

1 Answer

YUY2/YUYV are probably most common. I've also seen web cams that used MJPEG, but are less common. Covering both of those will deal with a majority of non-network (Java or otherwise) style web cams.

link|improve this answer
Thanks. Would you happen to know the value of bmiHeader.biCompression for YUYV (too lazy to google it)? * "non-network (Java or otherwise) style web cams." what do you mean by that? – Ee Zz Apr 21 '09 at 17:15
Some cams use proprietary interfaces with Java or IP based stuff. These are typically network web cams, rather than local USB cams. Not sure on the first. It would be a constant I would set and forget. :) – Joe Apr 21 '09 at 17:22
feedback

Your Answer

 
or
required, but never shown