IMediaEncodingProperties
IMediaEncodingProperties
IMediaEncodingProperties
IMediaEncodingProperties
Interface
Definition
Describes the format of a media stream or media container.
public : interface IMediaEncodingPropertiespublic interface IMediaEncodingPropertiesPublic Interface IMediaEncodingProperties// You can use this interface in JavaScript.
- Attributes
Windows 10 requirements
| Device family |
Windows 10 (introduced v10.0.10240.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
Properties
Properties Properties Properties Properties
Gets additional format properties.
public : MediaPropertySet Properties { get; }public MediaPropertySet Properties { get; }Public ReadOnly Property Properties As MediaPropertySet// You can use this property in JavaScript.
A property set that contains format properties.
Subtype Subtype Subtype Subtype
Gets or sets the subtype of the format.
public : PlatForm::String Subtype { get; set; }public string Subtype { get; set; }Public ReadWrite Property Subtype As string// You can use this property in JavaScript.
- Value
- PlatForm::String string string string
The subtype.
Remarks
The subtype gives a more specific description of the format than the Type property. Possible values depend on the class that implements the method. For more information, see the following topics:
Type Type Type Type
Gets the format type.
public : PlatForm::String Type { get; }public string Type { get; }Public ReadOnly Property Type As string// You can use this property in JavaScript.
- Value
- PlatForm::String string string string
The format type. 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 |
|---|---|
| "Audio" | Audio stream. To get details of the audio format, use AudioEncodingProperties. |
| "Container" | Media container. |
| "Image" | Still image data. To get details of the image format, use ImageEncodingProperties. |
| "Video" | Video stream. To get details of the video format, use VideoEncodingProperties. |