Class: Aws::MediaLive::Types::Scte27SourceSettings

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

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

Scte27 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)


15833
15834
15835
15836
15837
15838
# File 'lib/aws-sdk-medialive/types.rb', line 15833

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

#pidInteger

The pid field is used in conjunction with the caption selector languageCode field as follows: - Specify PID and Language: Extracts captions from that PID; the language is “informational”. - Specify PID and omit Language: Extracts the specified PID. - Omit PID and specify Language: Extracts the specified language, whichever PID that happens to be. - Omit PID and omit Language: Valid only if source is DVB-Sub that is being passed through; all languages will be passed through.

Returns:

  • (Integer)


15833
15834
15835
15836
15837
15838
# File 'lib/aws-sdk-medialive/types.rb', line 15833

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