Setting an Output Device

[This is preliminary documentation and subject to change.]

You can also use the Video control to send video streams to an output device. For example, your application can record a television broadcast by setting a tuner card as the input device and a VCR as the output device.

Note  Broadcast Architecture does not support functionality to enable infrared (IR) frequency transmission, such as might be used to emulate a remote control signal and control consumer electronics. Thus, although you can set a VCR or other output device to receive a video stream, the user still has to turn on the VCR and start recording manually.

Setting an output device is similar to setting an input device, but instead of using the BPCVid.Input property your application uses the BPCVid.Output property.

The following example searches the Devices collection for a device that supports output. When one is found, the example sets that device as the output device.

For Each Device In vid.Devices
  If Device.IsOutput Then
    vid.Output = Device
    Exit For
  End If
Next