Enum H264GopSizeUnits
- java.lang.Object
-
- java.lang.Enum<H264GopSizeUnits>
-
- software.amazon.awssdk.services.mediaconvert.model.H264GopSizeUnits
-
- All Implemented Interfaces:
Serializable,Comparable<H264GopSizeUnits>
@Generated("software.amazon.awssdk:codegen") public enum H264GopSizeUnits extends Enum<H264GopSizeUnits>
Specify how the transcoder determines GOP size for this output. We recommend that you have the transcoder automatically choose this value for you based on characteristics of your input video. To enable this automatic behavior, choose Auto and and leave GOP size blank. By default, if you don't specify GOP mode control, MediaConvert will use automatic behavior. If your output group specifies HLS, DASH, or CMAF, set GOP mode control to Auto and leave GOP size blank in each output in your output group. To explicitly specify the GOP length, choose Specified, frames or Specified, seconds and then provide the GOP length in the related setting GOP size.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUTOFRAMESSECONDSUNKNOWN_TO_SDK_VERSION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static H264GopSizeUnitsfromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<H264GopSizeUnits>knownValues()StringtoString()static H264GopSizeUnitsvalueOf(String name)Returns the enum constant of this type with the specified name.static H264GopSizeUnits[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FRAMES
public static final H264GopSizeUnits FRAMES
-
SECONDS
public static final H264GopSizeUnits SECONDS
-
AUTO
public static final H264GopSizeUnits AUTO
-
UNKNOWN_TO_SDK_VERSION
public static final H264GopSizeUnits UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static H264GopSizeUnits[] 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 (H264GopSizeUnits c : H264GopSizeUnits.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static H264GopSizeUnits 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<H264GopSizeUnits>
-
fromValue
public static H264GopSizeUnits 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:
- H264GopSizeUnits corresponding to the value
-
knownValues
public static Set<H264GopSizeUnits> 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 knownH264GopSizeUnitss
-
-