New to Telerik UI for WinFormsStart a free 30-day trial

Media Information

Updated over 6 months ago

The RadWebCam's API allows you to get information about the connected devices (cameras) and change the control's device and video format based on this.

MediaFoundationDeviceInfo

The MediaFoundationDeviceInfo object provides information about the connected device. This object is used by the control to read video.

MediaFoundationVideoFormatInfo

The MediaFoundationVideoFormatInfo object provides information about the video format used by the connected camera.

Get Video Capture Devices

To get the available video capture devices (cameras), use the RadWebCam.GetVideoCaptureDevices static method.

Getting the available cameras

C#

            ReadOnlyCollection<MediaFoundationDeviceInfo> videoDevices = RadWebCam.GetVideoCaptureDevices(); 

Get Video Formats

To get the available video file formats for the connected device, you can use the RadWebCam.GetVideoFormats static method.

C#

            ReadOnlyCollection<MediaFoundationDeviceInfo> myVideoDevices = RadWebCam.GetVideoCaptureDevices();
            ReadOnlyCollection<MediaFoundationVideoFormatInfo> videoFormats = RadWebCam.GetVideoFormats(videoDevices[0]); 

See Also