You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::MediaLive::Types::HlsOutputSettings

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing HlsOutputSettings as input to an Aws::Client method, you can use a vanilla Hash:

{
  h265_packaging_type: "HEV1", # accepts HEV1, HVC1
  hls_settings: { # required
    audio_only_hls_settings: {
      audio_group_id: "__string",
      audio_only_image: {
        password_param: "__string",
        uri: "__string", # required
        username: "__string",
      },
      audio_track_type: "ALTERNATE_AUDIO_AUTO_SELECT", # accepts ALTERNATE_AUDIO_AUTO_SELECT, ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT, ALTERNATE_AUDIO_NOT_AUTO_SELECT, AUDIO_ONLY_VARIANT_STREAM
      segment_type: "AAC", # accepts AAC, FMP4
    },
    fmp_4_hls_settings: {
      audio_rendition_sets: "__string",
      nielsen_id_3_behavior: "NO_PASSTHROUGH", # accepts NO_PASSTHROUGH, PASSTHROUGH
      timed_metadata_behavior: "NO_PASSTHROUGH", # accepts NO_PASSTHROUGH, PASSTHROUGH
    },
    standard_hls_settings: {
      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",
      },
    },
  },
  name_modifier: "__stringMin1",
  segment_modifier: "__string",
}

Hls Output Settings

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#h265_packaging_typeString

Only applicable when this output is referencing an H.265 video description. Specifies whether MP4 segments should be packaged as HEV1 or HVC1.

Possible values:

  • HEV1
  • HVC1

Returns:

  • (String)

    Only applicable when this output is referencing an H.265 video description.

#hls_settingsTypes::HlsSettings

Settings regarding the underlying stream. These settings are different for audio-only outputs.

Returns:

#name_modifierString

String concatenated to the end of the destination filename. Accepts \\"Format Identifiers\\":#formatIdentifierParameters.

Returns:

  • (String)

    String concatenated to the end of the destination filename.

#segment_modifierString

String concatenated to end of segment filenames.

Returns:

  • (String)

    String concatenated to end of segment filenames.