Class: Aws::MediaLive::Types::AudioSilenceFailoverSettings

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

{
  audio_selector_name: "__string", # required
  audio_silence_threshold_msec: 1,
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#audio_selector_nameString

The name of the audio selector in the input that MediaLive should monitor to detect silence. Select your most important rendition. If you didn’t create an audio selector in this input, leave blank.

Returns:

  • (String)


1066
1067
1068
1069
1070
1071
# File 'lib/aws-sdk-medialive/types.rb', line 1066

class AudioSilenceFailoverSettings < Struct.new(
  :audio_selector_name,
  :audio_silence_threshold_msec)
  SENSITIVE = []
  include Aws::Structure
end

#audio_silence_threshold_msecInteger

The amount of time (in milliseconds) that the active input must be silent before automatic input failover occurs. Silence is defined as audio loss or audio quieter than -50 dBFS.

Returns:

  • (Integer)


1066
1067
1068
1069
1070
1071
# File 'lib/aws-sdk-medialive/types.rb', line 1066

class AudioSilenceFailoverSettings < Struct.new(
  :audio_selector_name,
  :audio_silence_threshold_msec)
  SENSITIVE = []
  include Aws::Structure
end