Skip to main content

DV camcorder control

Products: Video Capture SDK .Net

To select a DV camcorder as a video source, check the video capture device usage guide.

Any DV/HDV camcorder can be controlled using the DV_SendCommandAsync method call of Video Capture SDK .Net control. Before camera control usage, you should configure the source and start video preview or capture

Sample code

Pause

await VideoCapture1.DV_SendCommandAsync(DVCommand.Pause);

Play

await VideoCapture1.DV_SendCommandAsync(DVCommand.Play);

Stop

await VideoCapture1.DV_SendCommandAsync(DVCommand.Stop);

Fast forward

await VideoCapture1.DV_SendCommandAsync(DVCommand.FastForward);

Rewind

await VideoCapture1.DV_SendCommandAsync(DVCommand.Rew);

Visit our GitHub page to get more code samples.