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

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 GlobalConfiguration data as a 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

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#initial_audio_gainInteger

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

Returns:

  • (Integer)


7714
7715
7716
7717
7718
7719
7720
7721
7722
7723
# File 'lib/aws-sdk-medialive/types.rb', line 7714

class GlobalConfiguration < Struct.new(
  :initial_audio_gain,
  :input_end_action,
  :input_loss_behavior,
  :output_locking_mode,
  :output_timing_source,
  :support_low_framerate_inputs)
  SENSITIVE = []
  include Aws::Structure
end

#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).

Returns:

  • (String)


7714
7715
7716
7717
7718
7719
7720
7721
7722
7723
# File 'lib/aws-sdk-medialive/types.rb', line 7714

class GlobalConfiguration < Struct.new(
  :initial_audio_gain,
  :input_end_action,
  :input_loss_behavior,
  :output_locking_mode,
  :output_timing_source,
  :support_low_framerate_inputs)
  SENSITIVE = []
  include Aws::Structure
end

#input_loss_behaviorTypes::InputLossBehavior

Settings for system actions when input is lost.



7714
7715
7716
7717
7718
7719
7720
7721
7722
7723
# File 'lib/aws-sdk-medialive/types.rb', line 7714

class GlobalConfiguration < Struct.new(
  :initial_audio_gain,
  :input_end_action,
  :input_loss_behavior,
  :output_locking_mode,
  :output_timing_source,
  :support_low_framerate_inputs)
  SENSITIVE = []
  include Aws::Structure
end

#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.

Returns:

  • (String)


7714
7715
7716
7717
7718
7719
7720
7721
7722
7723
# File 'lib/aws-sdk-medialive/types.rb', line 7714

class GlobalConfiguration < Struct.new(
  :initial_audio_gain,
  :input_end_action,
  :input_loss_behavior,
  :output_locking_mode,
  :output_timing_source,
  :support_low_framerate_inputs)
  SENSITIVE = []
  include Aws::Structure
end

#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.

Returns:

  • (String)


7714
7715
7716
7717
7718
7719
7720
7721
7722
7723
# File 'lib/aws-sdk-medialive/types.rb', line 7714

class GlobalConfiguration < Struct.new(
  :initial_audio_gain,
  :input_end_action,
  :input_loss_behavior,
  :output_locking_mode,
  :output_timing_source,
  :support_low_framerate_inputs)
  SENSITIVE = []
  include Aws::Structure
end

#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.

Returns:

  • (String)


7714
7715
7716
7717
7718
7719
7720
7721
7722
7723
# File 'lib/aws-sdk-medialive/types.rb', line 7714

class GlobalConfiguration < Struct.new(
  :initial_audio_gain,
  :input_end_action,
  :input_loss_behavior,
  :output_locking_mode,
  :output_timing_source,
  :support_low_framerate_inputs)
  SENSITIVE = []
  include Aws::Structure
end