Video preview
To start the video preview, configure the video source, add VideoView, and set the Mode.
Configure video source
Set the mode
Set the Mode property to VideoPreview
, ScreenPreview
, IPPreview
, or DecklinkPreview
.
VideoCapture1.Mode = VideoCaptureMode.VideoPreview;
Start
Call the Start
or StartAsync
method.
await VideoCapture1.StartAsync();
Visit our GitHub page to get more code samples.