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

Class: Aws::MediaLive::Types::GlobalConfiguration

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

Overview

Note:

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

{
  initial_audio_gain: 1,
  input_end_action: "NONE", # accepts NONE, SWITCH_AND_LOOP_INPUTS
  input_loss_behavior: {
    black_frame_msec: 1,
    input_loss_image_color: "__stringMin6Max6",
    input_loss_image_slate: {
      password_param: "__string",
      uri: "__string", # required
      username: "__string",
    },
    input_loss_image_type: "COLOR", # accepts COLOR, SLATE
    repeat_frame_msec: 1,
  },
  output_locking_mode: "EPOCH_LOCKING", # accepts EPOCH_LOCKING, PIPELINE_LOCKING
  output_timing_source: "INPUT_CLOCK", # accepts INPUT_CLOCK, SYSTEM_CLOCK
  support_low_framerate_inputs: "DISABLED", # accepts DISABLED, ENABLED
}

Global Configuration

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#initial_audio_gainInteger

Value to set the initial audio gain for the Live Event.

Returns:

  • (Integer)

    Value to set the initial audio gain for the Live Event.

#input_end_actionString

Indicates the action to take when the current input completes (e.g. end-of-file). When switchAndLoopInputs is configured the encoder will restart at the beginning of the first input. When \"none\" is configured the encoder will transcode either black, a solid color, or a user specified slate images per the \"Input Loss Behavior\" configuration until the next input switch occurs (which is controlled through the Channel Schedule API).

Possible values:

  • NONE
  • SWITCH_AND_LOOP_INPUTS

Returns:

  • (String)

    Indicates the action to take when the current input completes (e.g. end-of-file).

#input_loss_behaviorTypes::InputLossBehavior

Settings for system actions when input is lost.

Returns:

#output_locking_modeString

Indicates how MediaLive pipelines are synchronized. PIPELINE_LOCKING - MediaLive will attempt to synchronize the output of each pipeline to the other. EPOCH_LOCKING - MediaLive will attempt to synchronize the output of each pipeline to the Unix epoch.

Possible values:

  • EPOCH_LOCKING
  • PIPELINE_LOCKING

Returns:

  • (String)

    Indicates how MediaLive pipelines are synchronized.

#output_timing_sourceString

Indicates whether the rate of frames emitted by the Live encoder should be paced by its system clock (which optionally may be locked to another source via NTP) or should be locked to the clock of the source that is providing the input stream.

Possible values:

  • INPUT_CLOCK
  • SYSTEM_CLOCK

Returns:

  • (String)

    Indicates whether the rate of frames emitted by the Live encoder should be paced by its system clock (which optionally may be locked to another source via NTP) or should be locked to the clock of the source that is providing the input stream.

#support_low_framerate_inputsString

Adjusts video input buffer for streams with very low video framerates. This is commonly set to enabled for music channels with less than one video frame per second.

Possible values:

  • DISABLED
  • ENABLED

Returns:

  • (String)

    Adjusts video input buffer for streams with very low video framerates.