aws-cdk-lib.aws_medialive.CfnChannel.GlobalConfigurationProperty

interface GlobalConfigurationProperty

LanguageType name
.NETAmazon.CDK.AWS.MediaLive.CfnChannel.GlobalConfigurationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsmedialive#CfnChannel_GlobalConfigurationProperty
Javasoftware.amazon.awscdk.services.medialive.CfnChannel.GlobalConfigurationProperty
Pythonaws_cdk.aws_medialive.CfnChannel.GlobalConfigurationProperty
TypeScript aws-cdk-lib » aws_medialive » CfnChannel » GlobalConfigurationProperty

The configuration settings that apply to the entire channel.

The parent of this entity is EncoderSettings.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_medialive as medialive } from 'aws-cdk-lib';
const globalConfigurationProperty: medialive.CfnChannel.GlobalConfigurationProperty = {
  initialAudioGain: 123,
  inputEndAction: 'inputEndAction',
  inputLossBehavior: {
    blackFrameMsec: 123,
    inputLossImageColor: 'inputLossImageColor',
    inputLossImageSlate: {
      passwordParam: 'passwordParam',
      uri: 'uri',
      username: 'username',
    },
    inputLossImageType: 'inputLossImageType',
    repeatFrameMsec: 123,
  },
  outputLockingMode: 'outputLockingMode',
  outputTimingSource: 'outputTimingSource',
  supportLowFramerateInputs: 'supportLowFramerateInputs',
};

Properties

NameTypeDescription
initialAudioGain?numberThe value to set the initial audio gain for the channel.
inputEndAction?stringIndicates the action to take when the current input completes (for example, end-of-file).
inputLossBehavior?IResolvable | InputLossBehaviorPropertyThe settings for system actions when the input is lost.
outputLockingMode?stringIndicates how MediaLive pipelines are synchronized.
outputTimingSource?stringIndicates whether the rate of frames emitted by the Live encoder should be paced by its system clock (which optionally might be locked to another source through NTP) or should be locked to the clock of the source that is providing the input stream.
supportLowFramerateInputs?stringAdjusts the video input buffer for streams with very low video frame rates.

initialAudioGain?

Type: number (optional)

The value to set the initial audio gain for the channel.


inputEndAction?

Type: string (optional)

Indicates the action to take when the current input completes (for example, end-of-file).

When switchAndLoopInputs is configured, MediaLive restarts at the beginning of the first input. When "none" is configured, MediaLive transcodes 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).


inputLossBehavior?

Type: IResolvable | InputLossBehaviorProperty (optional)

The settings for system actions when the input is lost.


outputLockingMode?

Type: string (optional)

Indicates how MediaLive pipelines are synchronized.

PIPELINELOCKING - MediaLive attempts to synchronize the output of each pipeline to the other. EPOCHLOCKING - MediaLive attempts to synchronize the output of each pipeline to the Unix epoch.


outputTimingSource?

Type: string (optional)

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


supportLowFramerateInputs?

Type: string (optional)

Adjusts the video input buffer for streams with very low video frame rates.

This is commonly set to enabled for music channels with less than one video frame per second.