Enum H265WriteMp4PackagingType
- java.lang.Object
-
- java.lang.Enum<H265WriteMp4PackagingType>
-
- software.amazon.awssdk.services.mediaconvert.model.H265WriteMp4PackagingType
-
- All Implemented Interfaces:
Serializable,Comparable<H265WriteMp4PackagingType>
@Generated("software.amazon.awssdk:codegen") public enum H265WriteMp4PackagingType extends Enum<H265WriteMp4PackagingType>
If the location of parameter set NAL units doesn't matter in your workflow, ignore this setting. Use this setting only with CMAF or DASH outputs, or with standalone file outputs in an MPEG-4 container (MP4 outputs). Choose HVC1 to mark your output as HVC1. This makes your output compliant with the following specification: ISO IECJTC1 SC29 N13798 Text ISO/IEC FDIS 14496-15 3rd Edition. For these outputs, the service stores parameter set NAL units in the sample headers but not in the samples directly. For MP4 outputs, when you choose HVC1, your output video might not work properly with some downstream systems and video players. The service defaults to marking your output as HEV1. For these outputs, the service writes parameter set NAL units directly into the samples.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description HEV1HVC1UNKNOWN_TO_SDK_VERSION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static H265WriteMp4PackagingTypefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<H265WriteMp4PackagingType>knownValues()StringtoString()static H265WriteMp4PackagingTypevalueOf(String name)Returns the enum constant of this type with the specified name.static H265WriteMp4PackagingType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HVC1
public static final H265WriteMp4PackagingType HVC1
-
HEV1
public static final H265WriteMp4PackagingType HEV1
-
UNKNOWN_TO_SDK_VERSION
public static final H265WriteMp4PackagingType UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static H265WriteMp4PackagingType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (H265WriteMp4PackagingType c : H265WriteMp4PackagingType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static H265WriteMp4PackagingType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
toString
public String toString()
- Overrides:
toStringin classEnum<H265WriteMp4PackagingType>
-
fromValue
public static H265WriteMp4PackagingType fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.- Parameters:
value- real value- Returns:
- H265WriteMp4PackagingType corresponding to the value
-
knownValues
public static Set<H265WriteMp4PackagingType> knownValues()
Use this in place ofvalues()to return aSetof all values known to the SDK. This will return all known enum values exceptUNKNOWN_TO_SDK_VERSION.- Returns:
- a
Setof knownH265WriteMp4PackagingTypes
-
-