Class: Aws::MediaLive::Types::EmbeddedSourceSettings

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

{
  convert_608_to_708: "DISABLED", # accepts DISABLED, UPCONVERT
  scte_20_detection: "AUTO", # accepts AUTO, OFF
  source_608_channel_number: 1,
  source_608_track_number: 1,
}

Embedded Source Settings

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#convert_608_to_708String

If upconvert, 608 data is both passed through via the “608 compatibility bytes” fields of the 708 wrapper as well as translated into 708. 708 data present in the source content will be discarded.

Returns:

  • (String)


6538
6539
6540
6541
6542
6543
6544
6545
# File 'lib/aws-sdk-medialive/types.rb', line 6538

class EmbeddedSourceSettings < Struct.new(
  :convert_608_to_708,
  :scte_20_detection,
  :source_608_channel_number,
  :source_608_track_number)
  SENSITIVE = []
  include Aws::Structure
end

#scte_20_detectionString

Set to “auto” to handle streams with intermittent and/or non-aligned SCTE-20 and Embedded captions.

Returns:

  • (String)


6538
6539
6540
6541
6542
6543
6544
6545
# File 'lib/aws-sdk-medialive/types.rb', line 6538

class EmbeddedSourceSettings < Struct.new(
  :convert_608_to_708,
  :scte_20_detection,
  :source_608_channel_number,
  :source_608_track_number)
  SENSITIVE = []
  include Aws::Structure
end

#source_608_channel_numberInteger

Specifies the 608/708 channel number within the video track from which to extract captions. Unused for passthrough.

Returns:

  • (Integer)


6538
6539
6540
6541
6542
6543
6544
6545
# File 'lib/aws-sdk-medialive/types.rb', line 6538

class EmbeddedSourceSettings < Struct.new(
  :convert_608_to_708,
  :scte_20_detection,
  :source_608_channel_number,
  :source_608_track_number)
  SENSITIVE = []
  include Aws::Structure
end

#source_608_track_numberInteger

This field is unused and deprecated.

Returns:

  • (Integer)


6538
6539
6540
6541
6542
6543
6544
6545
# File 'lib/aws-sdk-medialive/types.rb', line 6538

class EmbeddedSourceSettings < Struct.new(
  :convert_608_to_708,
  :scte_20_detection,
  :source_608_channel_number,
  :source_608_track_number)
  SENSITIVE = []
  include Aws::Structure
end