Class: Aws::MediaLive::Types::StandardHlsSettings

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

{
  audio_rendition_sets: "__string",
  m3u_8_settings: { # required
    audio_frames_per_pes: 1,
    audio_pids: "__string",
    ecm_pid: "__string",
    nielsen_id_3_behavior: "NO_PASSTHROUGH", # accepts NO_PASSTHROUGH, PASSTHROUGH
    pat_interval: 1,
    pcr_control: "CONFIGURED_PCR_PERIOD", # accepts CONFIGURED_PCR_PERIOD, PCR_EVERY_PES_PACKET
    pcr_period: 1,
    pcr_pid: "__string",
    pmt_interval: 1,
    pmt_pid: "__string",
    program_num: 1,
    scte_35_behavior: "NO_PASSTHROUGH", # accepts NO_PASSTHROUGH, PASSTHROUGH
    scte_35_pid: "__string",
    timed_metadata_behavior: "NO_PASSTHROUGH", # accepts NO_PASSTHROUGH, PASSTHROUGH
    timed_metadata_pid: "__string",
    transport_stream_id: 1,
    video_pid: "__string",
  },
}

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


16574
16575
16576
16577
16578
16579
# File 'lib/aws-sdk-medialive/types.rb', line 16574

class StandardHlsSettings < Struct.new(
  :audio_rendition_sets,
  :m3u_8_settings)
  SENSITIVE = []
  include Aws::Structure
end

#m3u_8_settingsTypes::M3u8Settings

Settings information for the .m3u8 container

Returns:



16574
16575
16576
16577
16578
16579
# File 'lib/aws-sdk-medialive/types.rb', line 16574

class StandardHlsSettings < Struct.new(
  :audio_rendition_sets,
  :m3u_8_settings)
  SENSITIVE = []
  include Aws::Structure
end