Enum DashIsoGroupAudioChannelConfigSchemeIdUri
- java.lang.Object
-
- java.lang.Enum<DashIsoGroupAudioChannelConfigSchemeIdUri>
-
- software.amazon.awssdk.services.mediaconvert.model.DashIsoGroupAudioChannelConfigSchemeIdUri
-
- All Implemented Interfaces:
Serializable,Comparable<DashIsoGroupAudioChannelConfigSchemeIdUri>
@Generated("software.amazon.awssdk:codegen") public enum DashIsoGroupAudioChannelConfigSchemeIdUri extends Enum<DashIsoGroupAudioChannelConfigSchemeIdUri>
Use this setting only when your audio codec is a Dolby one (AC3, EAC3, or Atmos) and your downstream workflow requires that your DASH manifest use the Dolby channel configuration tag, rather than the MPEG one. For example, you might need to use this to make dynamic ad insertion work. Specify which audio channel configuration scheme ID URI MediaConvert writes in your DASH manifest. Keep the default value, MPEG channel configuration, to have MediaConvert write this: urn:mpeg:mpegB:cicp:ChannelConfiguration. Choose Dolby channel configuration to have MediaConvert write this instead: tag:dolby.com,2014:dash:audio_channel_configuration:2011.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DOLBY_CHANNEL_CONFIGURATIONMPEG_CHANNEL_CONFIGURATIONUNKNOWN_TO_SDK_VERSION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DashIsoGroupAudioChannelConfigSchemeIdUrifromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<DashIsoGroupAudioChannelConfigSchemeIdUri>knownValues()StringtoString()static DashIsoGroupAudioChannelConfigSchemeIdUrivalueOf(String name)Returns the enum constant of this type with the specified name.static DashIsoGroupAudioChannelConfigSchemeIdUri[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MPEG_CHANNEL_CONFIGURATION
public static final DashIsoGroupAudioChannelConfigSchemeIdUri MPEG_CHANNEL_CONFIGURATION
-
DOLBY_CHANNEL_CONFIGURATION
public static final DashIsoGroupAudioChannelConfigSchemeIdUri DOLBY_CHANNEL_CONFIGURATION
-
UNKNOWN_TO_SDK_VERSION
public static final DashIsoGroupAudioChannelConfigSchemeIdUri UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static DashIsoGroupAudioChannelConfigSchemeIdUri[] 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 (DashIsoGroupAudioChannelConfigSchemeIdUri c : DashIsoGroupAudioChannelConfigSchemeIdUri.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DashIsoGroupAudioChannelConfigSchemeIdUri 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<DashIsoGroupAudioChannelConfigSchemeIdUri>
-
fromValue
public static DashIsoGroupAudioChannelConfigSchemeIdUri 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:
- DashIsoGroupAudioChannelConfigSchemeIdUri corresponding to the value
-
knownValues
public static Set<DashIsoGroupAudioChannelConfigSchemeIdUri> 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 knownDashIsoGroupAudioChannelConfigSchemeIdUris
-
-