Class: Aws::MediaLive::Types::TeletextSourceSettings

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

{
  output_rectangle: {
    height: 1.0, # required
    left_offset: 1.0, # required
    top_offset: 1.0, # required
    width: 1.0, # required
  },
  page_number: "__string",
}

Teletext Source Settings

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#output_rectangleTypes::CaptionRectangle

Optionally defines a region where TTML style captions will be displayed



16894
16895
16896
16897
16898
16899
# File 'lib/aws-sdk-medialive/types.rb', line 16894

class TeletextSourceSettings < Struct.new(
  :output_rectangle,
  :page_number)
  SENSITIVE = []
  include Aws::Structure
end

#page_numberString

Specifies the teletext page number within the data stream from which to extract captions. Range of 0x100 (256) to 0x8FF (2303). Unused for passthrough. Should be specified as a hexadecimal string with no “0x” prefix.

Returns:

  • (String)


16894
16895
16896
16897
16898
16899
# File 'lib/aws-sdk-medialive/types.rb', line 16894

class TeletextSourceSettings < Struct.new(
  :output_rectangle,
  :page_number)
  SENSITIVE = []
  include Aws::Structure
end