Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
1k views

Getting a snapshot from a webcam with Delphi

I need to get a regular snapshot from a webcam in Delphi. Speed is not a problem (once a second is fine). I have tried demo code from based on stuff from http://delphi.pjh2.de but I can't get it to ...
2
votes
4answers
1k views

Where to find documentation for vfw.h?

I'm a Linux programmer adventuring on Microsoft territories, and I'm completely lost on where to find documentation for Windows APIs like VFW (Video for Windows). I'm trying to get a video stream ...
1
vote
2answers
292 views

ISampleGrabber deprecated?

I have an old computer vision experiment that uses Video for Windows to grab frames from a camera connected to the PC. It's a hack, it uses VfW to create a preview window, then it does a GetDIBits ...
1
vote
1answer
203 views

Video for Windows error 80044066

I'm using Video for Windows to record screen grabs to AVI files. Usually it works fine, but some users report the error: AVI error (80044066): Bad format Any explanations of what this error means ...
0
votes
0answers
146 views

Video for Windows - Adding Audio Stream to AVI

I have really simple program add the add an audio stream into an avi file with a pre-existing video stream. The issue is that the resulting file contains a video stream but there does not appear to be ...
0
votes
1answer
85 views

How can i migrate Video For Windows code to something better?

I have an IP camera streaming video into blackbox buffer code that a company provided me. They also provided me example code of how i can take the buffer and convert it to an unsigned char* array. ...
0
votes
0answers
229 views

vfw capDriverConnect fails

I am working on a piece of code to capture snapshots from my webcam. I work with the vfw methods. I have code that lists the available video devices (I only have one on my machine) and lets me choose ...
0
votes
1answer
143 views

capDlgVideoSource problems with multiple webcams

I have two different webcams connected to my PC, but I have problems choosing them when running the following code. I included all the initialization routine and the last line with capDlgVideoSource ...
0
votes
1answer
84 views

Where can I find Video for Windows (VFW)

I am working on a project that uses VFW. I have done Google searches for it, but not exactly sure what I am looking for. I have a few questions about it. Is it a dll? If so, where could I find it? Is ...
0
votes
1answer
59 views

My 32-bit Video For Windows based app doesn't work under Win7/64 or Vista/64?

I wrote a program that relies on Video For Windows. It worked fine under XP & Vista 32-bit OSes, but now I am trying to run it on the newer 64-bit OSes it isn't able to open any AVI files. The ...
0
votes
1answer
131 views

Am i incorrectly setting up avi info for saving a file in C++ vfw?

I am using a specialized network streaming camera and I am trying to save the video stream off in a file. at the moment the code saves the video but in an ackward RGB format which screws up the color ...
0
votes
2answers
247 views

AviSaveOptions() dialog window is distorted!

I'm using windows XP , hebrew version. I am trying to save an AVI file using the Video For Windows API in C++, when I run the AviSaveOptions() function, the dialog opens as a thin unclickable strip at ...
0
votes
3answers
2k views

CODEC C# question

I'm converting working Borland C++ Builder code to C# - interesting, but not always easy... void listCodecs(int Width, int Height) { int iSelected = 0; ICINFO ci; ...
0
votes
3answers
649 views

Edit the frame rate of an avi file

Is it possible to change the frame rate of an avi file using the Video for windows library? I tried the following steps but did not succeed. 1) AviFileInit 2) AviFileOpen(OF_READWRITE) 3) pavi1 = ...
0
votes
1answer
386 views

Does the VFW (Video For Windows) API support Alpha Channel Transparency?

Does the VFW (Video For Windows) API support Alpha Channel Transparency? I want to be able to export video with Alpha channel information. How can I do this in VC6?