VideoTrackSupportInfo VideoTrackSupportInfo VideoTrackSupportInfo VideoTrackSupportInfo Class

Definition

Provides support information for a VideoTrack. This information includes the status of the video decoder and the status of the MediaSource with which the video track is associated.

public : sealed class VideoTrackSupportInfo : IVideoTrackSupportInfopublic sealed class VideoTrackSupportInfo : IVideoTrackSupportInfoPublic NotInheritable Class VideoTrackSupportInfo Implements IVideoTrackSupportInfo// You can use this class in JavaScript.
Attributes
Windows 10 requirements
Device family
Windows 10 Anniversary Edition (introduced v10.0.14393.0)
API contract
Windows.Foundation.UniversalApiContract (introduced v3)

Remarks

If a failure occurs when a VideoTrack is opened, you can get detailed status and failure information by handling the OpenFailed event and checking the SupportInfo property of the VideoTrack passed into the event as the sender.

Properties

DecoderStatus DecoderStatus DecoderStatus DecoderStatus

Gets the status of the video decoder that is decoding the VideoTrack, including whether the encoding for the video track is fully or partially supported.

public : MediaDecoderStatus DecoderStatus { get; }public MediaDecoderStatus DecoderStatus { get; }Public ReadOnly Property DecoderStatus As MediaDecoderStatus// You can use this property in JavaScript.
Value
MediaDecoderStatus MediaDecoderStatus MediaDecoderStatus MediaDecoderStatus

The status of the audio decoder that is decoding the VideoTrack.

MediaSourceStatus MediaSourceStatus MediaSourceStatus MediaSourceStatus

Gets the status of the MediaSource with which the VideoTrack is associated.

public : MediaSourceStatus MediaSourceStatus { get; }public MediaSourceStatus MediaSourceStatus { get; }Public ReadOnly Property MediaSourceStatus As MediaSourceStatus// You can use this property in JavaScript.
Value
MediaSourceStatus MediaSourceStatus MediaSourceStatus MediaSourceStatus

The status of the MediaSource with which the VideoTrack is associated.