Description
Stops video capture to an AVI file or series of images.
Syntax
[VB]
objActiveDcam.StopCapture
[C/C++]
HRESULT StopCapture();
Parameters
Return Values
Example
This VB example demonstrates how to capture the video to an AVI file with 0.5 sec time lapse between the frames.
Private Sub StartButton_Click()
ActiveDcam1.StartCapture "c:\mycapture.avi", 0.5
End Sub
Private Sub StopButton_Click()
ActiveDcam1.StopCapture
End Sub
Remarks
Use this method to end the video capture initiated by StartCapture.
When the video capture is complete, the CaptureCompleted event is fired.