Video inputs
Video inputs A video capture device may expose several video inputs.
By example, a video capture device may expose 3 inputs: "Tuner", "Composite" and "SVideo", whereas another device may expose 2 inputs: "Composite 0" and "Composite 1".
The input is selected by assigning the VideoInput index in the VideoInputs list.
Sample code: ... VideoGrabber.VideoDevice = VideoGrabber.VideoDeviceIndex ("Logitech c922 Pro Stream Webcam") VideoGrabber.VideoInput = VideoGrabber.VideoInputIndex ("Composite") VideoGrabber.StartPreview
(VideoInput is device-dependent and must be set only after selecting the current video capture device (by assigning the VideoDevice index in the VideoDevices list) Note: any listbox that shows the inputs of the current video capture device should be refreshed with VideoInputs (VideoInput is the current index in this list) when the OnVideoDeviceSelected event occurs.
Look at the MainDemo project for sample code.