AudioEncodingProperties.Subtype Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the subtype of the format.
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 = audioEncodingProperties.subtype;
audioEncodingProperties.subtype = string;
Public Property Subtype As String
Property Value
The subtype.
Implements
Remarks
The value can be the string representation of a GUID in canonical form, or one of the predefined values listed in the following table.
Value | Description |
---|---|
"AAC" | Advanced Audio Coding (AAC). The stream can contain either raw AAC data or AAC data in an Audio Data Transport Stream (ADTS) stream. |
"AC3" | Dolby Digital audio (AC-3). |
"AACADTS" | Advanced Audio Coding (AAC) audio in Audio Data Transport Stream (ADTS) format. |
"AACHDCP" | AAC in High-Bandwidth Digital Content Protection (HDCP) format. |
"AC3" | Dolby AC3 |
"AC3SPDIF" | Dolby AC-3 audio over Sony/Philips Digital Interface (S/PDIF). |
"AC3HDCP" | Dolby AC-3 in High-Bandwidth Digital Content Protection (HDCP) format. |
"ADTS" | Audio Data Transport Stream |
"ALAC" | Apple Lossless Audio Codec |
"AMRNB" | Adaptive Multi-Rate audio codec (AMR-NB) |
"AWRWB" | Adaptive Multi-Rate Wideband audio codec (AMR-WB) |
"DTS" | Digital Theater Systems (DTS) |
"EAC3" | Dolby Digital Plus audio (E-AC-3). |
"FLAC" | Free Lossless Audio Codec |
"Float" | Uncompressed 32-bit float PCM audio. |
"MP3" | MPEG Audio Layer-3 (MP3). |
"MPEG" | MPEG-1 audio payload. |
"OPUS" | Opus |
"PCM" | Uncompressed 16-bit PCM audio. |
"WMA8" | Windows Media Audio 8 codec, Windows Media Audio 9 codec, or Windows Media Audio 9.1 codec. |
"WMA9" | Windows Media Audio 9 Professional codec or Windows Media Audio 9.1 Professional codec. |
"Vorbis" | Vorbis codec |
Warning
The string values returned by the MediaEncodingSubtypes properties may not use the same letter casing as AudioEncodingProperties.Subtype, VideoEncodingProperties.Subtype, ContainerEncodingProperties.Subtype, and ImageEncodingProperties.Subtype. For this reason, if you compare the values, you should use a case-insensitive comparison or use hardcoded strings that match the casing returned by the encoding properties.