Class: Aws::MediaLive::Types::TemporalFilterSettings

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-medialive/types.rb

Overview

Note:

When making an API call, you may pass TemporalFilterSettings data as a hash:

{
  post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
  strength: "AUTO", # accepts AUTO, STRENGTH_1, STRENGTH_2, STRENGTH_3, STRENGTH_4, STRENGTH_5, STRENGTH_6, STRENGTH_7, STRENGTH_8, STRENGTH_9, STRENGTH_10, STRENGTH_11, STRENGTH_12, STRENGTH_13, STRENGTH_14, STRENGTH_15, STRENGTH_16
}

Temporal Filter Settings

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#post_filter_sharpeningString

If you enable this filter, the results are the following: - If the source content is noisy (it contains excessive digital artifacts), the filter cleans up the source. - If the source content is already clean, the filter tends to decrease the bitrate, especially when the rate control mode is QVBR.

Returns:

  • (String)


16927
16928
16929
16930
16931
16932
# File 'lib/aws-sdk-medialive/types.rb', line 16927

class TemporalFilterSettings < Struct.new(
  :post_filter_sharpening,
  :strength)
  SENSITIVE = []
  include Aws::Structure
end

#strengthString

Choose a filter strength. We recommend a strength of 1 or 2. A higher strength might take out good information, resulting in an image that is overly soft.

Returns:

  • (String)


16927
16928
16929
16930
16931
16932
# File 'lib/aws-sdk-medialive/types.rb', line 16927

class TemporalFilterSettings < Struct.new(
  :post_filter_sharpening,
  :strength)
  SENSITIVE = []
  include Aws::Structure
end