public static interface CfnChannel.GlobalConfigurationProperty
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 software.amazon.awscdk.services.medialive.*; GlobalConfigurationProperty globalConfigurationProperty = GlobalConfigurationProperty.builder() .initialAudioGain(123) .inputEndAction("inputEndAction") .inputLossBehavior(InputLossBehaviorProperty.builder() .blackFrameMsec(123) .inputLossImageColor("inputLossImageColor") .inputLossImageSlate(InputLocationProperty.builder() .passwordParam("passwordParam") .uri("uri") .username("username") .build()) .inputLossImageType("inputLossImageType") .repeatFrameMsec(123) .build()) .outputLockingMode("outputLockingMode") .outputTimingSource("outputTimingSource") .supportLowFramerateInputs("supportLowFramerateInputs") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnChannel.GlobalConfigurationProperty.Builder
A builder for
CfnChannel.GlobalConfigurationProperty |
static class |
CfnChannel.GlobalConfigurationProperty.Jsii$Proxy
An implementation for
CfnChannel.GlobalConfigurationProperty |
Modifier and Type | Method and Description |
---|---|
static CfnChannel.GlobalConfigurationProperty.Builder |
builder() |
default java.lang.Number |
getInitialAudioGain()
The value to set the initial audio gain for the channel.
|
default java.lang.String |
getInputEndAction()
Indicates the action to take when the current input completes (for example, end-of-file).
|
default java.lang.Object |
getInputLossBehavior()
The settings for system actions when the input is lost.
|
default java.lang.String |
getOutputLockingMode()
Indicates how MediaLive pipelines are synchronized.
|
default java.lang.String |
getOutputTimingSource()
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.
|
default java.lang.String |
getSupportLowFramerateInputs()
Adjusts the video input buffer for streams with very low video frame rates.
|
default java.lang.Number getInitialAudioGain()
default java.lang.String getInputEndAction()
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).
default java.lang.Object getInputLossBehavior()
default java.lang.String getOutputLockingMode()
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.
default java.lang.String getOutputTimingSource()
default java.lang.String getSupportLowFramerateInputs()
This is commonly set to enabled for music channels with less than one video frame per second.
static CfnChannel.GlobalConfigurationProperty.Builder builder()