Platform SDK: Broadcast Architecture |
The Output property sets or returns the device to which the Video control sends output. Sending output is not supported in the current version of Broadcast Architecture. Visual Basic syntax is shown.
object.Output[ = oDevice]
When your application sets Output to a valid output device, the media stream coming from the Input property is:
To suppress this output, your application can set Output to the value Nothing or to the BPCDeviceBase object named Null in the BPCDevices collection.
Windows NT/2000: Unsupported.
Windows 95/98: Requires Windows 98.
Header: Declared in vidsvr.odl.
Import Library: Included as a resource in vid.ocx.
BPCVid, BPCVid.Input, BPCDeviceBase
The following searches the BPCDevices collection for an output device and sets it as the output device for an instance of the Video control, vid
.
For Each Device In vid.Devices If Device.IsOutput Then vid.Output = Device Exit For End If Next