Method: Aws::MediaConvert::Types::Mpeg2Settings#softness

Defined in:
lib/aws-sdk-mediaconvert/types.rb

#softnessInteger

Ignore this setting unless you need to comply with a specification that requires a specific value. If you don’t have a specification requirement, we recommend that you adjust the softness of your output by using a lower value for the setting Sharpness or by enabling a noise reducer filter. The Softness setting specifies the quantization matrices that the encoder uses. Keep the default value, 0, to use the AWS Elemental default matrices. Choose a value from 17 to 128 to use planar interpolation. Increasing values from 17 to 128 result in increasing reduction of high-frequency data. The value 128 results in the softest video.

Returns:

  • (Integer)


11426
11427
11428
11429
11430
11431
11432
11433
11434
11435
11436
11437
11438
11439
11440
11441
11442
11443
11444
11445
11446
11447
11448
11449
11450
11451
11452
11453
11454
11455
11456
11457
11458
11459
11460
11461
11462
11463
# File 'lib/aws-sdk-mediaconvert/types.rb', line 11426

class Mpeg2Settings < Struct.new(
  :adaptive_quantization,
  :bitrate,
  :codec_level,
  :codec_profile,
  :dynamic_sub_gop,
  :framerate_control,
  :framerate_conversion_algorithm,
  :framerate_denominator,
  :framerate_numerator,
  :gop_closed_cadence,
  :gop_size,
  :gop_size_units,
  :hrd_buffer_final_fill_percentage,
  :hrd_buffer_initial_fill_percentage,
  :hrd_buffer_size,
  :interlace_mode,
  :intra_dc_precision,
  :max_bitrate,
  :min_i_interval,
  :number_b_frames_between_reference_frames,
  :par_control,
  :par_denominator,
  :par_numerator,
  :per_frame_metrics,
  :quality_tuning_level,
  :rate_control_mode,
  :scan_type_conversion_mode,
  :scene_change_detect,
  :slow_pal,
  :softness,
  :spatial_adaptive_quantization,
  :syntax,
  :telecine,
  :temporal_adaptive_quantization)
  SENSITIVE = []
  include Aws::Structure
end