Enum AdvancedInputFilter
- java.lang.Object
-
- java.lang.Enum<AdvancedInputFilter>
-
- software.amazon.awssdk.services.mediaconvert.model.AdvancedInputFilter
-
- All Implemented Interfaces:
Serializable,Comparable<AdvancedInputFilter>
@Generated("software.amazon.awssdk:codegen") public enum AdvancedInputFilter extends Enum<AdvancedInputFilter>
Use to remove noise, blocking, blurriness, or ringing from your input as a pre-filter step before encoding. The Advanced input filter removes more types of compression artifacts and is an improvement when compared to basic Deblock and Denoise filters. To remove video compression artifacts from your input and improve the video quality: Choose Enabled. Additionally, this filter can help increase the video quality of your output relative to its bitrate, since noisy inputs are more complex and require more bits to encode. To help restore loss of detail after applying the filter, you can optionally add texture or sharpening as an additional step. Jobs that use this feature incur pro-tier pricing. To not apply advanced input filtering: Choose Disabled. Note that you can still apply basic filtering with Deblock and Denoise.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DISABLEDENABLEDUNKNOWN_TO_SDK_VERSION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AdvancedInputFilterfromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<AdvancedInputFilter>knownValues()StringtoString()static AdvancedInputFiltervalueOf(String name)Returns the enum constant of this type with the specified name.static AdvancedInputFilter[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ENABLED
public static final AdvancedInputFilter ENABLED
-
DISABLED
public static final AdvancedInputFilter DISABLED
-
UNKNOWN_TO_SDK_VERSION
public static final AdvancedInputFilter UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static AdvancedInputFilter[] 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 (AdvancedInputFilter c : AdvancedInputFilter.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AdvancedInputFilter 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<AdvancedInputFilter>
-
fromValue
public static AdvancedInputFilter 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:
- AdvancedInputFilter corresponding to the value
-
knownValues
public static Set<AdvancedInputFilter> 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 knownAdvancedInputFilters
-
-