You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::MediaConvert::Types::Deinterlacer

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing Deinterlacer as input to an Aws::Client method, you can use a vanilla Hash:

{
  algorithm: "INTERPOLATE", # accepts INTERPOLATE, INTERPOLATE_TICKER, BLEND, BLEND_TICKER
  control: "FORCE_ALL_FRAMES", # accepts FORCE_ALL_FRAMES, NORMAL
  mode: "DEINTERLACE", # accepts DEINTERLACE, INVERSE_TELECINE, ADAPTIVE
}

Settings for deinterlacer

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#algorithmString

Only applies when you set Deinterlacer (DeinterlaceMode) to Deinterlace (DEINTERLACE) or Adaptive (ADAPTIVE). Motion adaptive interpolate (INTERPOLATE) produces sharper pictures, while blend (BLEND) produces smoother motion. Use (INTERPOLATE_TICKER) OR (BLEND_TICKER) if your source file includes a ticker, such as a scrolling headline at the bottom of the frame.

Possible values:

  • INTERPOLATE
  • INTERPOLATE_TICKER
  • BLEND
  • BLEND_TICKER

Returns:

  • (String)

    Only applies when you set Deinterlacer (DeinterlaceMode) to Deinterlace (DEINTERLACE) or Adaptive (ADAPTIVE).

#controlString

  • When set to NORMAL (default), the deinterlacer does not convert frames that are tagged in metadata as progressive. It will only convert those that are tagged as some other type. - When set to FORCE_ALL_FRAMES, the deinterlacer converts every frame to progressive - even those that are already tagged as progressive. Turn Force mode on only if there is a good chance that the metadata has tagged frames as progressive when they are not progressive. Do not turn on otherwise; processing frames that are already progressive into progressive will probably result in lower quality video.

    Possible values:

    • FORCE_ALL_FRAMES
    • NORMAL

Returns:

  • (String)
    • When set to NORMAL (default), the deinterlacer does not convert frames that are tagged in metadata as progressive.

#modeString

Use Deinterlacer (DeinterlaceMode) to choose how the service will do deinterlacing. Default is Deinterlace. - Deinterlace converts interlaced to progressive. - Inverse telecine converts Hard Telecine 29.97i to progressive 23.976p. - Adaptive auto-detects and converts to progressive.

Possible values:

  • DEINTERLACE
  • INVERSE_TELECINE
  • ADAPTIVE

Returns:

  • (String)

    Use Deinterlacer (DeinterlaceMode) to choose how the service will do deinterlacing.