Class: Aws::MediaLive::Types::Fmp4HlsSettings

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

{
  audio_rendition_sets: "__string",
  nielsen_id_3_behavior: "NO_PASSTHROUGH", # accepts NO_PASSTHROUGH, PASSTHROUGH
  timed_metadata_behavior: "NO_PASSTHROUGH", # accepts NO_PASSTHROUGH, PASSTHROUGH
}

Fmp4 Hls Settings

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#audio_rendition_setsString

List all the audio groups that are used with the video output stream. Input all the audio GROUP-IDs that are associated to the video, separate by ‘,’.

Returns:

  • (String)


7606
7607
7608
7609
7610
7611
7612
# File 'lib/aws-sdk-medialive/types.rb', line 7606

class Fmp4HlsSettings < Struct.new(
  :audio_rendition_sets,
  :nielsen_id_3_behavior,
  :timed_metadata_behavior)
  SENSITIVE = []
  include Aws::Structure
end

#nielsen_id_3_behaviorString

If set to passthrough, Nielsen inaudible tones for media tracking will be detected in the input audio and an equivalent ID3 tag will be inserted in the output.

Returns:

  • (String)


7606
7607
7608
7609
7610
7611
7612
# File 'lib/aws-sdk-medialive/types.rb', line 7606

class Fmp4HlsSettings < Struct.new(
  :audio_rendition_sets,
  :nielsen_id_3_behavior,
  :timed_metadata_behavior)
  SENSITIVE = []
  include Aws::Structure
end

#timed_metadata_behaviorString

When set to passthrough, timed metadata is passed through from input to output.

Returns:

  • (String)


7606
7607
7608
7609
7610
7611
7612
# File 'lib/aws-sdk-medialive/types.rb', line 7606

class Fmp4HlsSettings < Struct.new(
  :audio_rendition_sets,
  :nielsen_id_3_behavior,
  :timed_metadata_behavior)
  SENSITIVE = []
  include Aws::Structure
end