Class: Aws::MediaLive::Types::DvbSubSourceSettings

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 DvbSubSourceSettings data as a hash:

{
  ocr_language: "DEU", # accepts DEU, ENG, FRA, NLD, POR, SPA
  pid: 1,
}

Dvb Sub Source Settings

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#ocr_languageString

If you will configure a WebVTT caption description that references this caption selector, use this field to provide the language to consider when translating the image-based source to text.

Returns:

  • (String)


6092
6093
6094
6095
6096
6097
# File 'lib/aws-sdk-medialive/types.rb', line 6092

class DvbSubSourceSettings < Struct.new(
  :ocr_language,
  :pid)
  SENSITIVE = []
  include Aws::Structure
end

#pidInteger

When using DVB-Sub with Burn-In or SMPTE-TT, use this PID for the source content. Unused for DVB-Sub passthrough. All DVB-Sub content is passed through, regardless of selectors.

Returns:

  • (Integer)


6092
6093
6094
6095
6096
6097
# File 'lib/aws-sdk-medialive/types.rb', line 6092

class DvbSubSourceSettings < Struct.new(
  :ocr_language,
  :pid)
  SENSITIVE = []
  include Aws::Structure
end