#How to start capture without stopping the preview?

Video Capture SDK .Net

You can start and stop video capture without stopping the preview. You can use it for video capture, screen capture, and other capture modes.

Add new output with default settings. We'll use MP4 output in this example.

File name will be ignored because we'll start capture later.

VideoCapture1.Outputs_Add(new MP4Output("output.mp4"), false); // false - don't start capture immediately.

Start video preview (video capture not started at this moment).

await VideoCapture1.StartAsync();

Start actual video capture to file or other output, for example, RTMP output.

await VideoCapture1.StartCaptureAsync(0, "output.mp4"); // 0 - index of the output.

Stop actual video capture if needed

await VideoCapture1.StopCaptureAsync(0); // 0 - index of the output.

Visit our GitHub page to get more code samples.