VideoEncodingProperties.Subtype プロパティ

定義

形式のサブタイプを取得または設定します。

public:
 property Platform::String ^ Subtype { Platform::String ^ get(); void set(Platform::String ^ value); };
winrt::hstring Subtype();

void Subtype(winrt::hstring value);
public string Subtype { get; set; }
var string = videoEncodingProperties.subtype;
videoEncodingProperties.subtype = string;
Public Property Subtype As String

プロパティ値

String

Platform::String

winrt::hstring

サブタイプ。

実装

注釈

値には、正規形式の GUID の文字列表現、または次の表に示す定義済みの値のいずれかを指定できます。

説明
"ARGB32"RGB、アルファ チャネルを含む 32 bpp。
"BGRA8"BGRA、32 bpp とアルファ チャネル。
"D16"16 ビット z バッファー深度
"H263"H.263 ビデオ
"H264"H.264 ビデオ
"H264ES"H.264 基本ストリーム
"HEVC"HEVC ビデオ
"HEVCES"HEVT 基本ストリーム
"IYUV"YUV 8 bpp 4:2:0
"L8"8 ビットの輝度のみ。
"L16"16 ビットの輝度のみ。
"MJPG"Motion jpeg
"NV12"YUV 8 bpp 4:2:0
"MPEG1"MPEG-1 ビデオ
"MPEG2"MPEG-2 ビデオ
"RGB24"RGB、24 bpp
"RGB32"RGB、32 bpp
"WMV3"Windows Media Video 9 コーデック
"WVC1"SMPTE 421M ("VC-1") コーデック
"VP9"VP9 ビデオ
"YUY2"YUV 8 bpp 4:2:2
"YV12"YUV 8 bpp 4:2:0

警告

MediaEncodingSubtypes プロパティによって返される文字列値では、AudioEncodingProperties.Subtype、VideoEncodingProperties.SubtypeContainerEncodingProperties.SubtypeImageEncodingProperties.Subtype と同じ文字の大文字と小文字を使用することはできません。 このため、値を比較する場合は、大文字と小文字を区別しない比較を使用するか、エンコード プロパティによって返される大文字と小文字の区別に一致するハードコーディングされた文字列を使用する必要があります。

適用対象